Skip to content

Commit 690322b

Browse files
Add .NET 6 target
1 parent 9020b89 commit 690322b

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

Zeroconf/Zeroconf.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project Sdk="MSBuild.Sdk.Extras">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard2.0;net48;xamarinios10</TargetFrameworks>
3+
<TargetFrameworks>net6.0;netstandard2.0;net48;xamarinios10</TargetFrameworks>
44
<Authors>Claire Novotny</Authors>
55
<PackageLicenseExpression>MIT</PackageLicenseExpression>
66
<PackageProjectUrl>https://github.com/novotnyllc/Zeroconf</PackageProjectUrl>
7-
<Description>Bonjour support for .NET Standard 2.0, .NET Core, .NET Framework, Xamarin, and UWP</Description>
8-
<Copyright>© Claire Novotny 2016-2021</Copyright>
7+
<Description>Bonjour support for .NET 6, .NET Standard 2.0, .NET Framework, Xamarin, and UWP</Description>
8+
<Copyright>© Claire Novotny 2016-2022</Copyright>
99
<PackageTags>zeroconf;bonjour;mdns;service;discovery;xamarin;netstandard;universal</PackageTags>
1010
<Product>Zeroconf</Product>
1111
<GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net6.0-windows</TargetFramework>
55
<OutputType>WinExe</OutputType>
66
<UseWpf>true</UseWpf>
77
</PropertyGroup>
88

99
<ItemGroup>
1010
<ProjectReference Include="..\Zeroconf\Zeroconf.csproj" />
1111
</ItemGroup>
12-
13-
<ItemGroup>
14-
<Folder Include="Properties\" />
15-
</ItemGroup>
1612

1713
</Project>

0 commit comments

Comments
 (0)