Skip to content

Commit

Permalink
Update projects to .NET 8.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
blueskythlikesclouds committed Jan 26, 2024
1 parent e50ade2 commit 3202172
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CliTools/DatabaseConverter/DatabaseConverter.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Exe</OutputType>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\MikuMikuLibrary.snk</AssemblyOriginatorKeyFile>
Expand Down
2 changes: 1 addition & 1 deletion CliTools/FarcPack/FarcPack.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Exe</OutputType>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\MikuMikuLibrary.snk</AssemblyOriginatorKeyFile>
Expand Down
4 changes: 2 additions & 2 deletions MikuMikuLibrary.Native/MikuMikuLibrary.Native.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@
</ItemGroup>
<ItemGroup>
<Reference Include="System.Drawing.Common">
<HintPath>..\packages\System.Drawing.Common.7.0.0\lib\net7.0\System.Drawing.Common.dll</HintPath>
<HintPath>..\packages\System.Drawing.Common.8.0.1\lib\net8.0\System.Drawing.Common.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand All @@ -359,7 +359,7 @@
<RootNamespace>MikuMikuLibraryNative</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
<CLRSupport>NetCore</CLRSupport>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
Expand Down
2 changes: 1 addition & 1 deletion MikuMikuLibrary.Native/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="System.Drawing.Common" version="7.0.0" targetFramework="net7.0" />
<package id="System.Drawing.Common" version="8.0.1" targetFramework="net8.0" />
</packages>
4 changes: 2 additions & 2 deletions MikuMikuLibrary/MikuMikuLibrary.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\MikuMikuLibrary.snk</AssemblyOriginatorKeyFile>
Expand All @@ -11,7 +11,7 @@

<ItemGroup>
<PackageReference Include="AssimpNet" Version="5.0.0-beta1" />
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
<PackageReference Include="System.Drawing.Common" Version="8.0.1" />
</ItemGroup>

<Import Project="..\MikuMikuLibrary.Shared\MikuMikuLibrary.Shared.projitems" Label="Shared" />
Expand Down
6 changes: 3 additions & 3 deletions MikuMikuModel/MikuMikuModel.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
Expand All @@ -19,8 +19,8 @@

<ItemGroup>
<PackageReference Include="Ookii.Dialogs.WinForms" Version="4.0.0" />
<PackageReference Include="OpenTK" Version="4.7.7" />
<PackageReference Include="OpenTK.WinForms" Version="4.0.0-pre.6" />
<PackageReference Include="OpenTK" Version="4.8.2" />
<PackageReference Include="OpenTK.WinForms" Version="4.0.0-pre.7" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 3202172

Please sign in to comment.