|
20 | 20 | <AssemblyName>Genbox.$(MSBuildProjectName)</AssemblyName>
|
21 | 21 | <PackageProjectUrl>https://github.com/Genbox/$(MSBuildProjectName)</PackageProjectUrl>
|
22 | 22 | <PackageLicenseExpression>MIT</PackageLicenseExpression>
|
| 23 | + <Configurations>Debug;Release;CommercialDebug;CommercialRelease</Configurations> |
23 | 24 |
|
24 | 25 | <!--SourceLink stuff-->
|
25 | 26 | <PublishRepositoryUrl>true</PublishRepositoryUrl>
|
26 | 27 | <EmbedUntrackedSources>true</EmbedUntrackedSources>
|
27 | 28 | <IncludeSymbols>true</IncludeSymbols>
|
28 | 29 | <SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
29 |
| - <Configurations>Debug;Release;Commercial</Configurations> |
30 | 30 | </PropertyGroup>
|
31 | 31 |
|
32 | 32 | <ItemGroup>
|
|
39 | 39 | <PackageReference Include="ConfigureAwaitChecker.Analyzer" Version="4.0.0" PrivateAssets="all" />
|
40 | 40 | </ItemGroup>
|
41 | 41 |
|
42 |
| - <PropertyGroup Condition="'$(Configuration)' == 'Commercial'"> |
| 42 | + <PropertyGroup Condition="'$(Configuration)' == 'CommercialDebug'"> |
43 | 43 | <DefineConstants>$(DefineConstants);COMMERCIAL</DefineConstants>
|
| 44 | + <AssemblyName>Genbox.$(MSBuildProjectName).Commercial</AssemblyName> |
| 45 | + <GenerateDocumentationFile>false</GenerateDocumentationFile> |
| 46 | + <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow> |
| 47 | + <Optimize>false</Optimize> |
| 48 | + </PropertyGroup> |
| 49 | + |
| 50 | + <PropertyGroup Condition="'$(Configuration)' == 'CommercialRelease'"> |
| 51 | + <DefineConstants>$(DefineConstants);COMMERCIAL</DefineConstants> |
| 52 | + <AssemblyName>Genbox.$(MSBuildProjectName).Commercial</AssemblyName> |
| 53 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 54 | + <CheckForOverflowUnderflow>false</CheckForOverflowUnderflow> |
| 55 | + <Optimize>true</Optimize> |
44 | 56 | </PropertyGroup>
|
45 | 57 |
|
46 | 58 | <PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
0 commit comments