Skip to content

Commit

Permalink
Remove netcore bootstrapper target from CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
glopesdev committed Jul 23, 2024
1 parent 9cb932b commit 21506ad
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Bonsai/Bonsai.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<PackageTags>Bonsai Rx Reactive Extensions</PackageTags>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<TargetFrameworks>net48;net6.0-windows</TargetFrameworks>
<TargetFrameworks Condition="'$(ContinuousIntegrationBuild)' == 'true'">net48</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<OutputType>Exe</OutputType>
<DisableWinExeOutputInference>true</DisableWinExeOutputInference>
Expand Down Expand Up @@ -110,14 +111,14 @@
</Target>

<Target Name="UseRepackOutputForPackage" Condition="'$(UseRepackForBootstrapperPackage)' == 'true'" AfterTargets="BuiltProjectOutputGroup" DependsOnTargets="ConfigureRepack">
<Error Condition="!Exists('$(RepackedOutputFilePath)')" Text="Project must be repacked before repacking. '$(RepackedOutputFilePath)' not found." />
<Error Condition="!Exists('$(RepackedOutputFilePath)')" Text="Project must be repacked before packing. '$(RepackedOutputFilePath)' not found." />
<ItemGroup>
<BuiltProjectOutputGroupOutput Remove="@(BuiltProjectOutputGroupOutput)" />
<BuiltProjectOutputGroupOutput Include="$(RepackedOutputFilePath)" />
</ItemGroup>
</Target>
<Target Name="UseRepackOutputForSymbolPackage" Condition="'$(UseRepackForBootstrapperPackage)' == 'true'" AfterTargets="DebugSymbolsProjectOutputGroup" DependsOnTargets="ConfigureRepack">
<Error Condition="!Exists('$(RepackedOutputSymbolFilePath)')" Text="Project must be repacked before repacking. '$(RepackedOutputFilePath)' not found." />
<Error Condition="!Exists('$(RepackedOutputSymbolFilePath)')" Text="Project must be repacked before packing. '$(RepackedOutputFilePath)' not found." />
<ItemGroup>
<DebugSymbolsProjectOutputGroupOutput Remove="@(DebugSymbolsProjectOutputGroupOutput)" />
<DebugSymbolsProjectOutputGroupOutput Include="$(RepackedOutputSymbolFilePath)" />
Expand Down

0 comments on commit 21506ad

Please sign in to comment.