Skip to content

Commit 1739da5

Browse files
Build version selector package
1 parent d586110 commit 1739da5

File tree

3 files changed

+47
-8
lines changed

3 files changed

+47
-8
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ jobs:
120120
- name: Pack Nuget Packages
121121
shell: bash
122122
run: |
123+
dotnet pack --property:VersionSuffix=$FlecsVersionSuffix -p:SkipNatives=true -p:BuildSelectorPackage=true
124+
123125
if [ '${{ github.event.inputs.nuget-registry }}' == 'NuGet' ]; then
124126
dotnet pack --property:VersionSuffix=$FlecsVersionSuffix -p:SkipNatives=true -c Debug
125127
dotnet pack --property:VersionSuffix=$FlecsVersionSuffix -p:SkipNatives=true -c Release

src/Flecs.NET/Flecs.NET.csproj

+31-8
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,44 @@
1313
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
1414
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
1515
<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>
1717
</PropertyGroup>
1818

1919
<PropertyGroup>
2020
<IsPackable>true</IsPackable>
2121
<IncludeContentInPack>true</IncludeContentInPack>
22-
23-
<PackageId Condition="'$(Configuration)' == 'Debug'">Flecs.NET.Debug</PackageId>
24-
<PackageId Condition="'$(Configuration)' == 'Release'">Flecs.NET.Release</PackageId>
2522
<Description>High-level C# wrapper for flecs</Description>
2623
</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>
2737

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>
3255

3356
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project>
2+
<!-- Go up 2 levels to get the NuGet package version. -->
3+
<PropertyGroup>
4+
<FlecsNugetVersion>$([MSBuild]::NormalizeDirectory('$(MSBuildThisFileDirectory)..'))</FlecsNugetVersion>
5+
<FlecsNugetVersion>$([System.IO.Path]::GetDirectoryName('$(FlecsNugetVersion)'))</FlecsNugetVersion>
6+
<FlecsNugetVersion>$([System.IO.Path]::GetFileName('$(FlecsNugetVersion)'))</FlecsNugetVersion>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageReference Include="Flecs.NET.Release" Version="$(FlecsNugetVersion)" Condition="'$(Optimize)' == 'True'"/>
11+
<PackageReference Include="Flecs.NET.Debug" Version="$(FlecsNugetVersion)" Condition="'$(Optimize)' != 'True'"/>
12+
</ItemGroup>
13+
14+
</Project>

0 commit comments

Comments
 (0)