Browse Source

Upgrade to .NET 7, add Core assembly

pull/55/head
Ionite 1 year ago
parent
commit
01d594e8e7
No known key found for this signature in database
  1. 4
      StabilityMatrix.Tests/StabilityMatrix.Tests.csproj
  2. 6
      StabilityMatrix.sln
  3. 10
      StabilityMatrix/StabilityMatrix.csproj
  4. 7
      global.json

4
StabilityMatrix.Tests/StabilityMatrix.Tests.csproj

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework> <TargetFramework>net7.0-windows10.0.17763.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
@ -29,4 +29,6 @@
<ProjectReference Include="..\StabilityMatrix\StabilityMatrix.csproj" /> <ProjectReference Include="..\StabilityMatrix\StabilityMatrix.csproj" />
</ItemGroup> </ItemGroup>
</Project> </Project>

6
StabilityMatrix.sln

@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StabilityMatrix", "Stabilit
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StabilityMatrix.Tests", "StabilityMatrix.Tests\StabilityMatrix.Tests.csproj", "{63EF4330-CCFF-4677-B14C-1A700CD81FDA}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StabilityMatrix.Tests", "StabilityMatrix.Tests\StabilityMatrix.Tests.csproj", "{63EF4330-CCFF-4677-B14C-1A700CD81FDA}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StabilityMatrix.Core", "..\StabilityMatrix.Core\StabilityMatrix.Core\StabilityMatrix.Core.csproj", "{1AFA665E-EC9E-4BC6-8981-2AE1013FCA20}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
@ -21,6 +23,10 @@ Global
{63EF4330-CCFF-4677-B14C-1A700CD81FDA}.Debug|Any CPU.Build.0 = Debug|Any CPU {63EF4330-CCFF-4677-B14C-1A700CD81FDA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{63EF4330-CCFF-4677-B14C-1A700CD81FDA}.Release|Any CPU.ActiveCfg = Release|Any CPU {63EF4330-CCFF-4677-B14C-1A700CD81FDA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{63EF4330-CCFF-4677-B14C-1A700CD81FDA}.Release|Any CPU.Build.0 = Release|Any CPU {63EF4330-CCFF-4677-B14C-1A700CD81FDA}.Release|Any CPU.Build.0 = Release|Any CPU
{1AFA665E-EC9E-4BC6-8981-2AE1013FCA20}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1AFA665E-EC9E-4BC6-8981-2AE1013FCA20}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1AFA665E-EC9E-4BC6-8981-2AE1013FCA20}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1AFA665E-EC9E-4BC6-8981-2AE1013FCA20}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE

10
StabilityMatrix/StabilityMatrix.csproj

@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework> <TargetFramework>net7.0-windows10.0.17763.0</TargetFramework>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<UseWPF>true</UseWPF> <UseWPF>true</UseWPF>
<SelfContained>true</SelfContained> <SelfContained>true</SelfContained>
@ -30,8 +30,8 @@
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" /> <PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1823.32" /> <PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1823.32" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.39" /> <PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.39" />
<PackageReference Include="NLog" Version="5.2.0" /> <PackageReference Include="NLog" Version="5.2.2" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.0" /> <PackageReference Include="NLog.Extensions.Logging" Version="5.3.2" />
<PackageReference Include="NSec.Cryptography" Version="22.4.0" /> <PackageReference Include="NSec.Cryptography" Version="22.4.0" />
<PackageReference Include="Octokit" Version="6.2.1" /> <PackageReference Include="Octokit" Version="6.2.1" />
<PackageReference Include="Ookii.Dialogs.Wpf" Version="5.0.1" /> <PackageReference Include="Ookii.Dialogs.Wpf" Version="5.0.1" />
@ -101,5 +101,9 @@
<SubType>Designer</SubType> <SubType>Designer</SubType>
</Page> </Page>
</ItemGroup> </ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\StabilityMatrix.Core\StabilityMatrix.Core\StabilityMatrix.Core.csproj" />
</ItemGroup>
</Project> </Project>

7
global.json

@ -0,0 +1,7 @@
{
"sdk": {
"version": "7.0.0",
"rollForward": "latestMajor",
"allowPrerelease": true
}
}
Loading…
Cancel
Save