Skip to content

Commit ab45758

Browse files
committed
Target .NET 6 instead of .NET 7
.NET 6 is Long Term Support (LTS) and this project doesn't use any new API introduced in .NET 7 anyway. Also cleanup migrations leftovers (App.config + AssemblyInfo.cs) for the azclient project.
1 parent 7d29bf9 commit ab45758

File tree

4 files changed

+10
-74
lines changed

4 files changed

+10
-74
lines changed
Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp7.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Version>1.3.0</Version>
77
<Authors>Arkane Systems</Authors>
@@ -10,7 +10,7 @@
1010
<Description>A Zero Configuration Networking library for .NET.
1111

1212
Please see project web site for more information.</Description>
13-
<PackageLicenseUrl></PackageLicenseUrl>
13+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1414
<PackageProjectUrl>https://github.com/cerebrate/Arkane.Zeroconf</PackageProjectUrl>
1515
<Copyright>MIT License</Copyright>
1616
<PackageTags>zeroconf bonjour</PackageTags>
@@ -19,11 +19,6 @@ Please see project web site for more information.</Description>
1919
<RootNamespace>ArkaneSystems.Arkane.Zeroconf</RootNamespace>
2020
<SignAssembly>true</SignAssembly>
2121
<AssemblyOriginatorKeyFile>zeroconf.snk</AssemblyOriginatorKeyFile>
22-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
23-
</PropertyGroup>
24-
25-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
26-
<LangVersion>latest</LangVersion>
2722
</PropertyGroup>
2823

2924
</Project>

azclient/App.config

Lines changed: 0 additions & 9 deletions
This file was deleted.

azclient/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 49 deletions
This file was deleted.

azclient/azclient.csproj

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net6.0</TargetFramework>
44
<OutputType>Exe</OutputType>
55
<RootNamespace>ArkaneSystems.Arkane.Zeroconf.Client</RootNamespace>
6-
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
6+
</PropertyGroup>
7+
<PropertyGroup>
8+
<AssemblyTitle>Arkane.Zeroconf.Client</AssemblyTitle>
9+
<Company>Arkane Systems</Company>
10+
<Description>Zero Configuration (Bonjour) library client</Description>
11+
<Product>Arkane.Zeroconf</Product>
12+
<Version>0.9.1</Version>
713
</PropertyGroup>
814
<ItemGroup>
915
<ProjectReference Include="..\Arkane.ZeroConf\Arkane.ZeroConf.csproj" />
1016
</ItemGroup>
11-
<ItemGroup>
12-
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
13-
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
14-
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.4.421302">
15-
<PrivateAssets>all</PrivateAssets>
16-
</PackageReference>
17-
</ItemGroup>
1817
</Project>

0 commit comments

Comments
 (0)