Feat: attempt to use net6.0 for compilation

... because I *need* it! 😭
This commit is contained in:
Gwyneth Llewelyn
2022-04-12 20:31:56 +01:00
parent cf55a4392f
commit 5b5fe3ce1e
19 changed files with 36 additions and 36 deletions

View File

@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>PacketDump</AssemblyName>
<PackageId>PacketDump</PackageId>
<OutputType>Exe</OutputType>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<OutputPath>..\..\..\bin\</OutputPath>
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<Platforms>AnyCPU</Platforms>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>