Skip to content

Commit

Permalink
Update .Net to Version 8 (#137)
Browse files Browse the repository at this point in the history
* Update to .Net 8

* Update CL/CI compiler
  • Loading branch information
JamesVaughan committed Nov 20, 2023
1 parent 2c3f13b commit e55cf8f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Setup .NetCore
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100
dotnet-version: 8.0.100
- name: Build with dotnet
run: |
dotnet build -c Release
Expand Down
2 changes: 1 addition & 1 deletion src/XTMF2.Client/XTMF2.RunServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>XTMF2.RunServer</RootNamespace>
<ApplicationIcon />
<OutputTypeEx>exe</OutputTypeEx>
Expand Down
2 changes: 1 addition & 1 deletion src/XTMF2.Interfaces/XTMF2.Interfaces.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>XTMF2</RootNamespace>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/XTMF2.Run/XTMF2.Run.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/XTMF2/XTMF2.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl></PackageProjectUrl>
<RepositoryUrl>https://github.com/TravelModellingGroup/XTMF2.git</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion tests/XTMF2.UnitTests/XTMF2.UnitTests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>XTMF2.UnitTests</RootNamespace>
</PropertyGroup>

Expand Down

0 comments on commit e55cf8f

Please sign in to comment.