Skip to content
This repository has been archived by the owner on Jun 25, 2020. It is now read-only.

[PR] The proj files have been updated to enable SourceLink #368

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/Pretzel.Logic/Pretzel.Logic.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,15 @@
<PackageReleaseNotes>https://github.com/Code52/pretzel/releases</PackageReleaseNotes>
<PackageTags>Pretzel, Jekyll, HTML, Markdown, Liquid, Razor, static</PackageTags>
<DebugType>Full</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<DefineConstants>NETSTANDARD</DefineConstants>
</PropertyGroup>
Expand Down
8 changes: 8 additions & 0 deletions src/Pretzel.ScriptCs/Pretzel.ScriptCs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@
<Copyright>Copyright © 2015</Copyright>
<OutputPath>bin\$(Configuration)\</OutputPath>
<DebugType>Full</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Autofac" Version="4.9.4" />
<PackageReference Include="Autofac.Mef" Version="4.0.0" />
Expand Down
8 changes: 8 additions & 0 deletions src/Pretzel/Pretzel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@
<LangVersion>latest</LangVersion>
<DebugType>Full</DebugType>
<ApplicationIcon>pretzel.ico</ApplicationIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>

<PropertyGroup Condition="'$(GlobalTool)' != true">
<TargetFrameworks>net462;netcoreapp2.2</TargetFrameworks>
</PropertyGroup>
Expand Down