Skip to content

Commit

Permalink
Disable copying of unnecessary satellite assemblies
Browse files Browse the repository at this point in the history
  • Loading branch information
asmichi committed Aug 31, 2021
1 parent b83b8f6 commit ef170a6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build/msbuild/CommonProps.csproj.props
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<PackageOutputPath>$(BinDir)\nupkg\</PackageOutputPath>
</PropertyGroup>

<!-- Compilation -->
<PropertyGroup>
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
Expand All @@ -37,13 +38,21 @@
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
</PropertyGroup>

<!-- Misc -->
<PropertyGroup>
<!-- https://github.com/dotnet/sdk/issues/774 -->
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>

<!-- Version Info -->
<PropertyGroup>
<AssemblyVersion>0.10.0.0</AssemblyVersion>
<FileVersion>0.10.0.0</FileVersion>
<InformationalVersion>0.10.0.0+unknown</InformationalVersion>
<Version>0.10.0-localbuild+unknown</Version>
</PropertyGroup>

<!-- Package Info -->
<PropertyGroup>
<Authors>asmichi</Authors>
<Company>asmichi</Company>
Expand All @@ -57,12 +66,14 @@
<RepositoryUrl>https://github.com/asmichi/ChildProcess</RepositoryUrl>
</PropertyGroup>

<!-- Package Generation -->
<PropertyGroup>
<IsPackable>false</IsPackable>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<!-- Strong Name -->
<PropertyGroup>
<AssemblyOriginatorKeyFile>$(WorkTreeRoot)build\StrongNameKeyPair.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
Expand Down

0 comments on commit ef170a6

Please sign in to comment.