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 25, 2024
1 parent 9262091 commit 7d5391a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Bonsai/Bonsai.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<Description>A visual programming language for data stream processing built on top of Rx for .NET.</Description>
<PackageTags>Bonsai Rx Reactive Extensions</PackageTags>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<TargetFrameworks>net48;net6.0-windows</TargetFrameworks>
<TargetFrameworks Condition="'$(ContinuousIntegrationBuild)' != 'true'">net48;net6.0-windows</TargetFrameworks>
<TargetFramework Condition="'$(ContinuousIntegrationBuild)' == 'true'">net48</TargetFramework>
<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 7d5391a

Please sign in to comment.