Skip to content

Commit

Permalink
CI updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Dec 22, 2024
1 parent d6ded7d commit 05c6fd5
Show file tree
Hide file tree
Showing 18 changed files with 44 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
- name: Archive GUI
if: ${{ success() && !github.event.release.prerelease && github.event_name == 'release' }}
run: |
powershell Compress-Archive Spriggit.UI/bin/Release/net9.0-windows/win-x64/publish/* Spriggit.zip
powershell Compress-Archive Spriggit.UI/bin/Release/net9.0/win-x64/publish/* Spriggit.zip
- name: Archive Linux CLI
if: ${{ success() && !github.event.release.prerelease && github.event_name == 'release' }}
run: |
Expand Down
1 change: 0 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<GitVersion>false</GitVersion>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
4 changes: 4 additions & 0 deletions Spriggit.CLI.Lib/Spriggit.CLI.Lib.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Noggog.CSharpExt" />
<PackageReference Include="CommandLineParser" />
Expand Down
1 change: 1 addition & 0 deletions Spriggit.CLI/Spriggit.CLI.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 4 additions & 0 deletions Spriggit.Core/Spriggit.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="Noggog.CSharpExt" />
Expand Down
31 changes: 17 additions & 14 deletions Spriggit.Engine/Spriggit.Engine.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Spriggit.Core\Spriggit.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="McMaster.NETCore.Plugins" />
<PackageReference Include="Mutagen.Bethesda" />
<PackageReference Include="Noggog.GitRepository" />
<PackageReference Include="Noggog.SourceGenerators" />
<PackageReference Include="Noggog.Testing" />
<PackageReference Include="NuGet.Build.Tasks" />
<PackageReference Include="NuGet.PackageManagement" />
<PackageReference Include="NuGet.Protocol" />
<PackageReference Include="Serilog" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Spriggit.Core\Spriggit.Core.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="McMaster.NETCore.Plugins"/>
<PackageReference Include="Mutagen.Bethesda"/>
<PackageReference Include="Noggog.GitRepository"/>
<PackageReference Include="Noggog.SourceGenerators"/>
<PackageReference Include="Noggog.Testing"/>
<PackageReference Include="NuGet.Build.Tasks"/>
<PackageReference Include="NuGet.PackageManagement"/>
<PackageReference Include="NuGet.Protocol"/>
<PackageReference Include="Serilog"/>
</ItemGroup>
</Project>
1 change: 1 addition & 0 deletions Spriggit.Tests.Windows/Spriggit.Tests.Windows.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetPlatformIdentifier>Windows</TargetPlatformIdentifier>
</PropertyGroup>

Expand Down
4 changes: 3 additions & 1 deletion Spriggit.Tests/Spriggit.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk"/>
<PackageReference Include="Mutagen.Bethesda.Starfield"/>
Expand Down
1 change: 1 addition & 0 deletions Spriggit.UI/Spriggit.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetPlatformIdentifier>Windows</TargetPlatformIdentifier>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
Expand Down
4 changes: 4 additions & 0 deletions Spriggit/Spriggit.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Mutagen.Bethesda.Serialization" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<OutputType>exe</OutputType>
<PackAsTool>true</PackAsTool>
<TargetFramework>net9.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<DebugType>portable</DebugType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<OutputType>exe</OutputType>
<PackAsTool>true</PackAsTool>
<TargetFramework>net9.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<DebugType>portable</DebugType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<OutputType>exe</OutputType>
<PackAsTool>true</PackAsTool>
<TargetFramework>net9.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<DebugType>portable</DebugType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<OutputType>exe</OutputType>
<PackAsTool>true</PackAsTool>
<TargetFramework>net9.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<DebugType>portable</DebugType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<OutputType>exe</OutputType>
<PackAsTool>true</PackAsTool>
<TargetFramework>net9.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<DebugType>portable</DebugType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<OutputType>exe</OutputType>
<PackAsTool>true</PackAsTool>
<TargetFramework>net9.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<DebugType>portable</DebugType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<OutputType>exe</OutputType>
<PackAsTool>true</PackAsTool>
<TargetFramework>net9.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<DebugType>portable</DebugType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<OutputType>exe</OutputType>
<PackAsTool>true</PackAsTool>
<TargetFramework>net9.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<DebugType>portable</DebugType>
Expand Down

0 comments on commit 05c6fd5

Please sign in to comment.