Skip to content

Commit

Permalink
added windows slnf
Browse files Browse the repository at this point in the history
lowered .net 7

fixed pipeline
  • Loading branch information
joshika39 committed Nov 2, 2023
1 parent 21c2d4b commit 4b6cce9
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build
env:
BUILD_CONFIG: 'Debug'
SOLUTION: '_Solutions/GameFramework.sln'
SOLUTION: '_Solutions/GameFramework.Windows.slnf'
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
name: 'Build, Test & Deploy'
env:
BUILD_CONFIG: 'Release'
SOLUTION: '_Solutions/GameFramework.sln'
SOLUTION: '_Solutions/GameFramework.Windows.slnf'
runs-on: windows-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -98,5 +98,5 @@ jobs:

- name: Publish
run: |
'& .\dotnet-tools\PushPackages.ps1 -CustomProjectsFile .projects.conf -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}}'
'& .\dotnet-tools\PushPackages.ps1 -CustomProjectsFile .projects.conf -Source 'https://nuget.pkg.github.com/joshika39/index.json' -ApiKey ${{secrets.GIT_API_KEY}}'
'& .\dotnet-tools\PushPackages.ps1 -CustomProjectsFile .projects.conf -Source https://api.nuget.org/v3/index.json -ApiKey ${{secrets.NUGET_API_KEY}}'
'& .\dotnet-tools\PushPackages.ps1 -CustomProjectsFile .projects.conf -Source https://nuget.pkg.github.com/joshika39/index.json -ApiKey ${{secrets.GIT_API_KEY}}'
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build
env:
BUILD_CONFIG: 'Debug'
SOLUTION: '_Solutions/GameFramework.sln'
SOLUTION: '_Solutions/GameFramework.Windows.slnf'
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
Expand Down
13 changes: 13 additions & 0 deletions _Solutions/GameFramework.Windows.slnf
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"solution": {
"path": "GameFramework.sln",
"projects": [
"..\\_Tests\\GameFramework.ManualTests.Desktop.WPF\\GameFramework.ManualTests.Desktop.WPF.csproj",
"..\\_Tests\\GameFramework.Unit.Tests\\GameFramework.Unit.Tests.csproj",
"..\\_src\\GameFramework.Impl\\GameFramework.Impl.csproj",
"..\\_src\\GameFramework.UI.Avalonia\\GameFramework.UI.Avalonia\\GameFramework.UI.Avalonia.csproj",
"..\\_src\\GameFramework.UI.WPF\\GameFramework.UI.WPF.csproj",
"..\\_src\\GameFramework\\GameFramework.csproj"
]
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
Expand Down

0 comments on commit 4b6cce9

Please sign in to comment.