updated projects and assembly version for v6.0 release

This commit is contained in:
Shreyas Zare
2021-03-13 19:43:54 +05:30
parent 02676396b8
commit 85d834eada
4 changed files with 36 additions and 18 deletions

View File

@@ -36,4 +36,10 @@
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="Readme.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>

View File

@@ -6,15 +6,15 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<ApplicationIcon>logo2.ico</ApplicationIcon>
<Version>5.6</Version>
<Version>6.0</Version>
<Company>Technitium</Company>
<Product>Technitium DNS Server</Product>
<Authors>Shreyas Zare</Authors>
<AssemblyName>DnsServerApp</AssemblyName>
<RootNamespace>DnsServerApp</RootNamespace>
<StartupObject>DnsServerApp.Program</StartupObject>
<AssemblyVersion>5.6.0.0</AssemblyVersion>
<FileVersion>5.6.0.0</FileVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<FileVersion>6.0.0.0</FileVersion>
<PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
<RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
</PropertyGroup>

View File

@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
@@ -36,6 +36,7 @@
<None Remove="www\img\logo.png" />
<None Remove="www\img\logo25x25.png" />
<None Remove="www\index.html" />
<None Remove="www\js\apps.js" />
<None Remove="www\js\bootstrap.min.js" />
<None Remove="www\js\Chart.min.js" />
<None Remove="www\js\common.js" />
@@ -135,6 +136,9 @@
<Content Include="www\index.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="www\js\apps.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="www\js\bootstrap.min.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
@@ -183,6 +187,10 @@
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DnsApplicationCommon\DnsApplicationCommon.csproj" />
</ItemGroup>
<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
@@ -192,11 +200,11 @@
<PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
<RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
<RepositoryType></RepositoryType>
<Description>.NET Standard 2.0</Description>
<Description>.NET 5</Description>
<PackageId>DnsServer</PackageId>
<AssemblyVersion>5.6.0.0</AssemblyVersion>
<FileVersion>5.6.0.0</FileVersion>
<Version>5.6</Version>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<FileVersion>6.0.0.0</FileVersion>
<Version>6.0</Version>
</PropertyGroup>
</Project>

View File

@@ -3,13 +3,20 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<UseWindowsForms>true</UseWindowsForms>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<RootNamespace>DnsServerSystemTrayApp</RootNamespace>
<AssemblyName>DnsServerSystemTrayApp</AssemblyName>
<Authors>Shreyas Zare</Authors>
<ApplicationIcon>logo2.ico</ApplicationIcon>
<Version>2.0.0.0</Version>
<Version>2.0</Version>
<Company>Technitium</Company>
<Product>Technitium DNS Server</Product>
<Description>.NET 5</Description>
<PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
<RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<Reference Include="TechnitiumLibrary.IO, Version=2.5.4.0, Culture=neutral, processorArchitecture=MSIL">
@@ -26,15 +33,6 @@
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Update="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<Content Include="logo2.ico" />
@@ -43,4 +41,10 @@
<PackageReference Include="System.Management" Version="5.0.0" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>