Skip to content

Commit

Permalink
Revert upgrade to Net9
Browse files Browse the repository at this point in the history
Libgit2sharp seems to be having issues
  • Loading branch information
Noggog committed Nov 21, 2024
1 parent 62b6c52 commit 04e8865
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 46 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>true</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Platforms>x64</Platforms>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class SwapToProperNetVersion : ISwapToProperNetVersion
{
private readonly ILogger _logger;
private readonly Version Net8Version = new Version(0, 45);
private readonly Version Net9Version = new Version(0, 49);
// private readonly Version Net9Version = new Version(0, 49);
private readonly CultureInfo Culture = new CultureInfo("en");

private readonly SortedList<Version, byte> _netMapping;
Expand All @@ -25,7 +25,7 @@ public SwapToProperNetVersion(ILogger logger)
_netMapping = new SortedList<Version, byte>()
{
{ Net8Version, 8 },
{ Net9Version, 9 }
// { Net9Version, 9 }
};
}

Expand Down
42 changes: 0 additions & 42 deletions Synthesis.Bethesda.GUI/Synthesis.Bethesda.GUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -79,46 +79,4 @@
<SplashScreen Include="Resources\Splashscreen.png" />
</ItemGroup>

<ItemGroup>
<Page Update="Views\Config\Solution\SolutionSourceConfigView.xaml">
<DefaultPackFolder>content</DefaultPackFolder>
<BuildAction>Page</BuildAction>
</Page>
<Page Update="Views\Config\Solution\SolutionStoreConfigView.xaml">
<DefaultPackFolder>content</DefaultPackFolder>
<BuildAction>Page</BuildAction>
</Page>
<Page Update="Views\Config\Solution\SolutionUserSettingsConfigView.xaml">
<DefaultPackFolder>content</DefaultPackFolder>
<BuildAction>Page</BuildAction>
</Page>
<Page Update="Views\Config\Solution\SolutionTargetGamesConfigView.xaml">
<DefaultPackFolder>content</DefaultPackFolder>
<BuildAction>Page</BuildAction>
</Page>
</ItemGroup>

<ItemGroup>
<Compile Update="Views\Config\Solution\SolutionSourceConfigView.xaml.cs">
<CodeLanguage>cs</CodeLanguage>
<DefaultPackFolder>content</DefaultPackFolder>
<BuildAction>Compile</BuildAction>
</Compile>
<Compile Update="Views\Config\Solution\SolutionStoreConfigView.xaml.cs">
<CodeLanguage>cs</CodeLanguage>
<DefaultPackFolder>content</DefaultPackFolder>
<BuildAction>Compile</BuildAction>
</Compile>
<Compile Update="Views\Config\Solution\SolutionUserSettingsConfigView.xaml.cs">
<CodeLanguage>cs</CodeLanguage>
<DefaultPackFolder>content</DefaultPackFolder>
<BuildAction>Compile</BuildAction>
</Compile>
<Compile Update="Views\Config\Solution\SolutionTargetGamesConfigView.xaml.cs">
<CodeLanguage>cs</CodeLanguage>
<DefaultPackFolder>content</DefaultPackFolder>
<BuildAction>Compile</BuildAction>
</Compile>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Mutagen.Bethesda" Version="0.49" />
Expand Down

0 comments on commit 04e8865

Please sign in to comment.