Skip to content

Commit 9543cca

Browse files
committed
[up] tester app to .NET 9
[add] package readme [up] Newtonsoft.Json to 13.0.4 [up] Simplify.Web to 5.1
1 parent c48b501 commit 9543cca

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "coreclr",
77
"request": "launch",
88
"preLaunchTask": "Build",
9-
"program": "${workspaceFolder}/src/TesterApp/bin/Debug/net8.0/TesterApp.dll",
9+
"program": "${workspaceFolder}/src/TesterApp/bin/Debug/net9.0/TesterApp.dll",
1010
"cwd": "${workspaceFolder}/src/TesterApp",
1111
"internalConsoleOptions": "openOnSessionStart",
1212
"env": {

.vscode/settings.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
22
"cSpell.words": [
3+
"ASPNETCORE",
34
"cref",
45
"deserialized",
6+
"Krylkov",
7+
"netstandard",
58
"Newtonsoft",
6-
"registrator"
9+
"registrator",
10+
"snupkg"
711
]
812
}

src/Simplify.Web.Json/Simplify.Web.Json.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,19 @@
2020
<PackageProjectUrl>https://github.com/SimplifyNet/Simplify.Web.Json</PackageProjectUrl>
2121
<PackageIcon>icon.png</PackageIcon>
2222
<PublishRepositoryUrl>true</PublishRepositoryUrl>
23+
<PackageReadmeFile>README.md</PackageReadmeFile>
2324
<PackageTags>Simplify.Web JSON</PackageTags>
2425

2526
<PackageReleaseNotes>See https://github.com/SimplifyNet/Simplify.Web.Json/tree/master/src/Simplify.Web.Json/CHANGELOG.md for details</PackageReleaseNotes>
2627
</PropertyGroup>
2728
<ItemGroup>
28-
<PackageReference Include="Simplify.Web" Version="5.0" />
29-
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
29+
<PackageReference Include="Simplify.Web" Version="5.1.0" />
30+
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
3031
</ItemGroup>
3132
<ItemGroup>
3233
<None Include="..\..\images\icon.png" Pack="true" Visible="false" PackagePath="" />
3334
<None Include="CHANGELOG.md" Pack="true" PackagePath="\" />
3435
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="\" />
36+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
3537
</ItemGroup>
3638
</Project>

src/TesterApp/TesterApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net9.0</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
66
<ProjectReference Include="..\Simplify.Web.Json\Simplify.Web.Json.csproj" />

0 commit comments

Comments
 (0)