Skip to content

Commit

Permalink
Update to dotnet 9 (#21)
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <prabhu@appthreat.com>
  • Loading branch information
prabhu authored Nov 16, 2024
1 parent 4e0033d commit c01cd33
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
id-token: write
strategy:
matrix:
dotnet: [ '8.0.x' ]
dotnet: [ '9.0.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -406,3 +406,4 @@ dosai-osx/
dosai-linux-arm64/
dosai-osx-arm64/
dosai-linux-musl-x64/
.vscode/
2 changes: 1 addition & 1 deletion Dosai.TestData/Dosai.TestData.CSharp.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

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

</Project>
2 changes: 1 addition & 1 deletion Dosai.TestData/Dosai.TestData.VB.vbproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

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

</Project>
18 changes: 9 additions & 9 deletions Dosai.Tests/Dosai.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
Expand All @@ -22,17 +22,17 @@
</ItemGroup>

<ItemGroup>
<None
Include="./../Dosai.TestData/FooBar.cs"
<None
Include="./../Dosai.TestData/FooBar.cs"
CopyToOutputDirectory="PreserveNewest" />
<None
Include="./../Dosai.TestData/HelloWorld.cs"
<None
Include="./../Dosai.TestData/HelloWorld.cs"
CopyToOutputDirectory="PreserveNewest" />
<None
Include="./../Dosai.TestData/FooBar.vb"
<None
Include="./../Dosai.TestData/FooBar.vb"
CopyToOutputDirectory="PreserveNewest" />
<None
Include="./../Dosai.TestData/HelloWorld.vb"
<None
Include="./../Dosai.TestData/HelloWorld.vb"
CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>

Expand Down
8 changes: 4 additions & 4 deletions Dosai/Dosai.csproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platform>x64</Platform>
<OutputType>Exe</OutputType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<Version>0.1.4</Version>
<Version>1.0.0</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="4.11.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0-3.final" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="4.12.0-3.final" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<None Include="..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
Expand Down

0 comments on commit c01cd33

Please sign in to comment.