abbembly version updated to v2.2 for release

This commit is contained in:
Shreyas Zare
2018-12-30 19:33:48 +05:30
parent 1ef71a54d6
commit e94ca6c235
5 changed files with 930 additions and 1487 deletions

View File

@@ -6,15 +6,15 @@
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework> <TargetFramework>netcoreapp2.2</TargetFramework>
<ApplicationIcon>logo2.ico</ApplicationIcon> <ApplicationIcon>logo2.ico</ApplicationIcon>
<Version>2.1</Version> <Version>2.2</Version>
<Company>Technitium</Company> <Company>Technitium</Company>
<Product>Technitium DNS Server</Product> <Product>Technitium DNS Server</Product>
<Authors>Shreyas Zare</Authors> <Authors>Shreyas Zare</Authors>
<AssemblyName>DnsServerApp</AssemblyName> <AssemblyName>DnsServerApp</AssemblyName>
<RootNamespace>DnsServerApp</RootNamespace> <RootNamespace>DnsServerApp</RootNamespace>
<StartupObject>DnsServerApp.Program</StartupObject> <StartupObject>DnsServerApp.Program</StartupObject>
<AssemblyVersion>2.1.0.0</AssemblyVersion> <AssemblyVersion>2.2.0.0</AssemblyVersion>
<FileVersion>2.1.0.0</FileVersion> <FileVersion>2.2.0.0</FileVersion>
<PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl> <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
<RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl> <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
</PropertyGroup> </PropertyGroup>
@@ -22,6 +22,8 @@
<ItemGroup> <ItemGroup>
<None Remove="start.bat" /> <None Remove="start.bat" />
<None Remove="start.sh" /> <None Remove="start.sh" />
<None Remove="supervisor.conf" />
<None Remove="systemd.service" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
@@ -31,6 +33,12 @@
<Content Include="start.sh"> <Content Include="start.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content> </Content>
<Content Include="supervisor.conf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="systemd.service">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.1.0.0")] [assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")] [assembly: AssemblyFileVersion("2.2.0.0")]

View File

@@ -123,7 +123,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" /> <PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
@@ -146,9 +146,9 @@
<RepositoryType></RepositoryType> <RepositoryType></RepositoryType>
<Description>.NET Standard 2.0</Description> <Description>.NET Standard 2.0</Description>
<PackageId>DnsServer</PackageId> <PackageId>DnsServer</PackageId>
<AssemblyVersion>2.1.0.0</AssemblyVersion> <AssemblyVersion>2.2.0.0</AssemblyVersion>
<FileVersion>2.1.0.0</FileVersion> <FileVersion>2.2.0.0</FileVersion>
<Version>2.1</Version> <Version>2.2</Version>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.1.0.0")] [assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")] [assembly: AssemblyFileVersion("2.2.0.0")]

File diff suppressed because it is too large Load Diff