Skip to content

Commit

Permalink
[PR] The proj files have been updated to enable SourceLink (#494)
Browse files Browse the repository at this point in the history
[release]
* [COMMIT] The proj files have been updated to enable SourceLink [BundlerMinifier.TagHelpers.csproj]

* [COMMIT] The proj files have been updated to enable SourceLink [BundlerMinifier.Core.csproj]

* [COMMIT] The proj files have been updated to enable SourceLink [BundlerMinifier.csproj]
  • Loading branch information
JTOne123 committed Jun 25, 2020
1 parent 23d1046 commit d8c2ca6
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/BundlerMinifier.Core/BundlerMinifier.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,16 @@
<OutputType>Exe</OutputType>
<PackageId>BundlerMinifier.Core</PackageId>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

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


<ItemGroup>
<!--
This file instructs dotnet.exe to use whichever version of .NET Core is installed,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,15 @@
<PackageTags>concat;bundle;minify;minification;css;js;html;aspnet;netcore</PackageTags>
<!-- forces SDK to copy dependencies into build output to make packing easier -->
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

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

<ItemGroup Condition="'$(TargetFramework)' != 'netstandard2.0'">
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
Expand Down
8 changes: 8 additions & 0 deletions src/BundlerMinifier/BundlerMinifier.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,16 @@
<PackageLicenseUrl>https://github.com/madskristensen/BundlerMinifier/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/madskristensen/BundlerMinifier</RepositoryUrl>
<PackageTags>concat;bundle;minify;minification;css;js;html</PackageTags>
<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="Microsoft.Build.Framework" Version="15.1.0-*" PrivateAssets="All" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.1.0-*" PrivateAssets="All" />
Expand Down

0 comments on commit d8c2ca6

Please sign in to comment.