* Directory.Packages.props should mandate used versions * Add NuGet audit mode setting to show any problems during restore * System.Text.Json should be 8.0.4 which is patched against security vulnerabilities * Fix build GH Actions generation Co-authored-by: Sipke Schoorstra <sipkeschoorstra@outlook.com>
15 lines
374 B
XML
15 lines
374 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
<IsPackable>false</IsPackable>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Yarp.ReverseProxy"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|