Skip to content

Commit a7f2295

Browse files
committed
Update to .NET 9
1 parent be34f77 commit a7f2295

File tree

5 files changed

+14
-18
lines changed

5 files changed

+14
-18
lines changed
Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
5-
<TargetFramework>netstandard2.0</TargetFramework>
6-
<TargetFramework>netstandard1.1</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
75
<AssemblyName>SporeCommunity.ModBrowser</AssemblyName>
86
<RootNamespace>SporeCommunity.ModBrowser</RootNamespace>
97
<PackageProjectUrl>https://github.com/Spore-Community/ModBrowser</PackageProjectUrl>
108
<RepositoryUrl>https://github.com/Spore-Community/ModBrowser</RepositoryUrl>
11-
<LangVersion>latest</LangVersion>
129
<Nullable>enable</Nullable>
1310
</PropertyGroup>
1411

1512
<ItemGroup>
16-
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
17-
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
13+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
14+
<PackageReference Include="System.ValueTuple" Version="4.6.1" />
1815
</ItemGroup>
1916

2017
</Project>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Mod-Browser
22
A tool for browsing and downloading Spore mods from GitHub.
33

4-
Visit https://spore-community.github.io/ModBrowser/ to try it out! You can search for mods, and download them easily. Instructions for installation are provided. See the Developer Guide to learn how to get your own mods to appear in the mod browser.
4+
Visit https://mods.sporecommunity.com to try it out! You can search for mods, and download them easily. Instructions for installation are provided. See the Developer Guide to learn how to get your own mods to appear in the mod browser.

SporeCommunity.ModBrowser.Blazor/Pages/About.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22

33
<h1>About Spore Mod Browser</h1>
44

5-
<p>This website was created by Kade (aka SporeMaster Kyle from the Sporum) to help promote Spore modding, and make it easy to discover and install mods for Spore.</p>
5+
<p>This website was created by Kade to help promote Spore modding, and make it easy to discover and install mods for Spore.</p>
66
<p>Special thanks to the <a target="_blank" rel="noopener noreferrer" href="https://discord.gg/YUcJWtb">Spore Modding Community (SMC) Discord</a> for their ideas and support, and Splitwirez (aka rob55rod, developer of Spore Mod Manager) for helping influence the design and systems used to gather data about mods.</p>
77
<p><strong>This website is not associated with or endorsed by Electronic Arts or Maxis.</strong> This is entirely a community-run effort.</p>
88

99
<h2>Contact</h2>
1010
<p>Please use any of the following methods to send questions, suggestions, or comments!</p>
1111
<a href="mailto:kade@sporecommunity.com"><button>Email</button></a>
12-
<a target="_blank" rel="noopener noreferrer" href="https://discord.gg/66jVk3X"><button>Spore Discord (run by @@Kade#1805)</button></a>
12+
<a target="_blank" rel="noopener noreferrer" href="https://discord.gg/66jVk3X"><button>Spore Community Hub Discord (run by Kade)</button></a>
1313
<a target="_blank" rel="noopener noreferrer" href="https://discord.gg/YUcJWtb"><button>Spore Modding Community Discord</button></a>
1414
<a target="_blank" rel="noopener noreferrer" href="https://github.com/Spore-Community/ModBrowser/issues"><button>GitHub Issues</button></a>
1515

1616
<h2>Source Code</h2>
1717
<p>Spore Mod Browser is open source! The code is licensed under the MIT license. Feel free to browse the source code or modify it for your needs.</p>
1818
<a target="_blank" rel="noopener noreferrer" href="https://github.com/Spore-Community/ModBrowser"><button>GitHub</button></a>
19-
<p>Built using <a target="_blank" rel="noopener noreferrer" href="https://dotnet.microsoft.com/">.NET 5</a>, <a target="_blank" rel="noopener noreferrer" href="https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor">Blazor WebAssembly</a>, and the <a target="_blank" rel="noopener noreferrer" href="https://docs.github.com/en/rest">GitHub API</a>.</p>
19+
<p>Built using <a target="_blank" rel="noopener noreferrer" href="https://dotnet.microsoft.com/">.NET 9</a>, <a target="_blank" rel="noopener noreferrer" href="https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor">Blazor WebAssembly</a>, and the <a target="_blank" rel="noopener noreferrer" href="https://docs.github.com/en/rest">GitHub API</a>.</p>
2020

2121
<SupportInformation />

SporeCommunity.ModBrowser.Blazor/SporeCommunity.ModBrowser.Blazor.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
1+
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<Nullable>enable</Nullable>
66

77
<BlazorEnableTimeZoneSupport>false</BlazorEnableTimeZoneSupport>
@@ -10,10 +10,10 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Blazored.LocalStorage" Version="3.0.0" />
14-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="5.0.1" />
15-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="5.0.1" PrivateAssets="all" />
16-
<PackageReference Include="System.Net.Http.Json" Version="5.0.0" />
13+
<PackageReference Include="Blazored.LocalStorage" Version="4.5.0" />
14+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.6" />
15+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.6" PrivateAssets="all" />
16+
<PackageReference Include="System.Net.Http.Json" Version="9.0.6" />
1717
</ItemGroup>
1818

1919
<ItemGroup>

SporeCommunity.ModBrowser.Console/SporeCommunity.ModBrowser.ConsoleApp.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<AssemblyName>SporeCommunity.ModBrowser.ConsoleApp</AssemblyName>
77
<RootNamespace>SporeCommunity.ModBrowser.ConsoleApp</RootNamespace>
88
<PackageProjectUrl>https://github.com/Spore-Community/ModBrowser</PackageProjectUrl>
99
<RepositoryUrl>https://github.com/Spore-Community/ModBrowser</RepositoryUrl>
10-
<LangVersion>latest</LangVersion>
1110
<Nullable>enable</Nullable>
1211
</PropertyGroup>
1312

0 commit comments

Comments
 (0)