Skip to content

Commit

Permalink
[Bot -> All] Update to .NET 9 with C# 13.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogFeelings committed Nov 14, 2024
1 parent 5b4eaaa commit c938730
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .idea/.idea.SammBot/.idea/projectSettingsUpdater.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions SammBot.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ VisualStudioVersion = 17.0.31717.71
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SammBot", "Source\SammBot.Bot\SammBot.Bot.csproj", "{5C9C0C3D-EE4A-4699-BC0D-5B1256EFC97C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B1207163-EF40-4433-A4DF-CD359382C557}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SammBot.Library", "Source\SammBot.Library\SammBot.Library.csproj", "{E93C6BE7-371F-4030-AE5C-CB4941B49759}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SammBot.Tests", "Source\SammBot.Tests\SammBot.Tests.csproj", "{4635433A-53F5-4866-8D9A-7FDEBC7FC069}"
Expand Down
4 changes: 2 additions & 2 deletions Source/SammBot.Bot/SammBot.Bot.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<Company>Analog Feelings</Company>
<Product>Samm-Bot</Product>
<AssemblyVersion>9.0</AssemblyVersion>
<FileVersion>9.0</FileVersion>
<LangVersion>12</LangVersion>
<LangVersion>13</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down
3 changes: 2 additions & 1 deletion Source/SammBot.Library/SammBot.Library.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>13</LangVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion Source/SammBot.Tests/SammBot.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<LangVersion>13</LangVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.0",
"version": "9.0.0",
"rollForward": "latestMinor",
"allowPrerelease": false
}
Expand Down

0 comments on commit c938730

Please sign in to comment.