|
13 | 13 | <EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
14 | 14 | <RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
|
15 | 15 | <RunAnalyzersDuringLiveAnalysis>true</RunAnalyzersDuringLiveAnalysis>
|
16 |
| - <NoWarn>$(NoWarn);CA1000;CA1024,CA1034;CA1051;CA1062;CA1720;CA2207;CA2225;CS9087;CS9084;CS8500</NoWarn> |
| 16 | + <NoWarn>$(NoWarn);CA1000;CA1024,CA1034;CA1051;CA1062;CA1720;CA2207;CA2225;CS9087;CS9084;CS8500;NU5128</NoWarn> |
17 | 17 | </PropertyGroup>
|
18 | 18 |
|
19 | 19 | <PropertyGroup>
|
20 | 20 | <IsPackable>true</IsPackable>
|
21 | 21 | <IncludeContentInPack>true</IncludeContentInPack>
|
22 |
| - |
23 |
| - <PackageId Condition="'$(Configuration)' == 'Debug'">Flecs.NET.Debug</PackageId> |
24 |
| - <PackageId Condition="'$(Configuration)' == 'Release'">Flecs.NET.Release</PackageId> |
25 | 22 | <Description>High-level C# wrapper for flecs</Description>
|
26 | 23 | </PropertyGroup>
|
| 24 | + |
| 25 | + <Choose> |
| 26 | + <!-- |
| 27 | + Build the Flecs.NET package. It contains a single msbuild .targets file that automatically references the |
| 28 | + debug or release builds based on the consuming project's $(Optimize) property. |
| 29 | + --> |
| 30 | + <When Condition="'$(BuildSelectorPackage)' == 'True'"> |
| 31 | + <PropertyGroup> |
| 32 | + <PackageId>Flecs.NET</PackageId> |
| 33 | + <IncludeSymbols>false</IncludeSymbols> |
| 34 | + <IncludeBuildOutput>false</IncludeBuildOutput> |
| 35 | + <NoBuild>true</NoBuild> |
| 36 | + </PropertyGroup> |
27 | 37 |
|
28 |
| - <ItemGroup> |
29 |
| - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/> |
30 |
| - <ProjectReference Include="..\Flecs.NET.Bindings\Flecs.NET.Bindings.csproj"/> |
31 |
| - </ItemGroup> |
| 38 | + <ItemGroup> |
| 39 | + <None Pack="true" Include="buildTransitive/Flecs.NET.targets" PackagePath="buildTransitive/Flecs.NET.targets" /> |
| 40 | + </ItemGroup> |
| 41 | + </When> |
| 42 | + <!-- Build the Flecs.NET.Debug or Flecs.NET.Release package. This package contains the actual compiled dll. --> |
| 43 | + <Otherwise> |
| 44 | + <PropertyGroup> |
| 45 | + <PackageId Condition="'$(Configuration)' == 'Debug'">Flecs.NET.Debug</PackageId> |
| 46 | + <PackageId Condition="'$(Configuration)' == 'Release'">Flecs.NET.Release</PackageId> |
| 47 | + </PropertyGroup> |
| 48 | + |
| 49 | + <ItemGroup> |
| 50 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/> |
| 51 | + <ProjectReference Include="..\Flecs.NET.Bindings\Flecs.NET.Bindings.csproj"/> |
| 52 | + </ItemGroup> |
| 53 | + </Otherwise> |
| 54 | + </Choose> |
32 | 55 |
|
33 | 56 | </Project>
|
0 commit comments