assembly version updated to 2.0.2

This commit is contained in:
Shreyas Zare
2018-11-18 19:37:59 +05:30
parent 50f520bc13
commit ce74371327
5 changed files with 3008 additions and 998 deletions

View File

@@ -6,15 +6,15 @@
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework> <TargetFramework>netcoreapp2.1</TargetFramework>
<ApplicationIcon>logo2.ico</ApplicationIcon> <ApplicationIcon>logo2.ico</ApplicationIcon>
<Version>2.0.1</Version> <Version>2.0.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.0.1.0</AssemblyVersion> <AssemblyVersion>2.0.2.0</AssemblyVersion>
<FileVersion>2.0.1.0</FileVersion> <FileVersion>2.0.2.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>

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.0.1.0")] [assembly: AssemblyVersion("2.0.2.0")]
[assembly: AssemblyFileVersion("2.0.1.0")] [assembly: AssemblyFileVersion("2.0.2.0")]

View File

@@ -32,6 +32,7 @@
<None Remove="www\js\common.js" /> <None Remove="www\js\common.js" />
<None Remove="www\js\jquery.min.js" /> <None Remove="www\js\jquery.min.js" />
<None Remove="www\js\main.js" /> <None Remove="www\js\main.js" />
<None Remove="www\robots.txt" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
@@ -116,6 +117,9 @@
<Content Include="www\js\main.js"> <Content Include="www\js\main.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory> <CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content> </Content>
<Content Include="www\robots.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
@@ -142,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.0.1.0</AssemblyVersion> <AssemblyVersion>2.0.2.0</AssemblyVersion>
<FileVersion>2.0.1.0</FileVersion> <FileVersion>2.0.2.0</FileVersion>
<Version>2.0.1</Version> <Version>2.0.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.0.1.0")] [assembly: AssemblyVersion("2.0.2.0")]
[assembly: AssemblyFileVersion("2.0.1.0")] [assembly: AssemblyFileVersion("2.0.2.0")]

File diff suppressed because it is too large Load Diff