Skip to content

Commit 7d77b85

Browse files
committed
app assembly version updated
1 parent 4598ad0 commit 7d77b85

8 files changed

Lines changed: 219 additions & 219 deletions

File tree

Apps/AdvancedBlockingApp/AdvancedBlockingApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
55
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
6-
<Version>9.1</Version>
6+
<Version>10.0</Version>
77
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
88
<Company>Technitium</Company>
99
<Product>Technitium DNS Server</Product>
Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,57 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
6-
<Version>7.0</Version>
7-
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
8-
<Company>Technitium</Company>
9-
<Product>Technitium DNS Server</Product>
10-
<Authors>Shreyas Zare</Authors>
11-
<AssemblyName>BlockPageApp</AssemblyName>
12-
<RootNamespace>BlockPage</RootNamespace>
13-
<PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
14-
<RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
15-
<Description>Serves a block page from a built-in web server that can be displayed to the end user when a website is blocked by the DNS server.\n\nNote! You need to manually set the Blocking Type as Custom Address in the blocking settings and configure the current server's IP address as Custom Blocking Addresses for the block page to be served to the users. Use a PKCS #12 certificate (.pfx or .p12) for enabling HTTPS support. Enabling HTTPS support will show certificate error to the user which is expected and the user will have to proceed ignoring the certificate error to be able to see the block page.</Description>
16-
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
17-
<OutputType>Library</OutputType>
18-
</PropertyGroup>
19-
20-
<ItemGroup>
21-
<FrameworkReference Include="Microsoft.AspNetCore.App" />
22-
</ItemGroup>
23-
24-
<ItemGroup>
25-
<ProjectReference Include="..\..\DnsServerCore.ApplicationCommon\DnsServerCore.ApplicationCommon.csproj">
26-
<Private>false</Private>
27-
</ProjectReference>
28-
</ItemGroup>
29-
30-
<ItemGroup>
31-
<Reference Include="TechnitiumLibrary">
32-
<HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.dll</HintPath>
33-
<Private>false</Private>
34-
</Reference>
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
6+
<Version>7.1</Version>
7+
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
8+
<Company>Technitium</Company>
9+
<Product>Technitium DNS Server</Product>
10+
<Authors>Shreyas Zare</Authors>
11+
<AssemblyName>BlockPageApp</AssemblyName>
12+
<RootNamespace>BlockPage</RootNamespace>
13+
<PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
14+
<RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
15+
<Description>Serves a block page from a built-in web server that can be displayed to the end user when a website is blocked by the DNS server.\n\nNote! You need to manually set the Blocking Type as Custom Address in the blocking settings and configure the current server's IP address as Custom Blocking Addresses for the block page to be served to the users. Use a PKCS #12 certificate (.pfx or .p12) for enabling HTTPS support. Enabling HTTPS support will show certificate error to the user which is expected and the user will have to proceed ignoring the certificate error to be able to see the block page.</Description>
16+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
17+
<OutputType>Library</OutputType>
18+
</PropertyGroup>
19+
20+
<ItemGroup>
21+
<FrameworkReference Include="Microsoft.AspNetCore.App" />
22+
</ItemGroup>
23+
24+
<ItemGroup>
25+
<ProjectReference Include="..\..\DnsServerCore.ApplicationCommon\DnsServerCore.ApplicationCommon.csproj">
26+
<Private>false</Private>
27+
</ProjectReference>
28+
</ItemGroup>
29+
30+
<ItemGroup>
31+
<Reference Include="TechnitiumLibrary">
32+
<HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.dll</HintPath>
33+
<Private>false</Private>
34+
</Reference>
3535
<Reference Include="TechnitiumLibrary.Net">
3636
<HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
3737
<Private>false</Private>
3838
</Reference>
39-
</ItemGroup>
40-
41-
<ItemGroup>
42-
<None Update="dnsApp.config">
43-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
44-
</None>
45-
</ItemGroup>
46-
47-
<ItemGroup>
48-
<None Remove="wwwroot\index.html" />
49-
</ItemGroup>
50-
51-
<ItemGroup>
52-
<Content Include="wwwroot\index.html">
53-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
54-
</Content>
55-
</ItemGroup>
39+
</ItemGroup>
40+
41+
<ItemGroup>
42+
<None Update="dnsApp.config">
43+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
44+
</None>
45+
</ItemGroup>
46+
47+
<ItemGroup>
48+
<None Remove="wwwroot\index.html" />
49+
</ItemGroup>
50+
51+
<ItemGroup>
52+
<Content Include="wwwroot\index.html">
53+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
54+
</Content>
55+
</ItemGroup>
5656

5757
</Project>

Apps/FailoverApp/FailoverApp.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
55
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
6-
<Version>9.0</Version>
7-
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
6+
<Version>9.1</Version>
7+
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
88
<Company>Technitium</Company>
99
<Product>Technitium DNS Server</Product>
1010
<Authors>Shreyas Zare</Authors>
Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,51 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
6-
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
7-
<Version>9.0</Version>
8-
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
9-
<Company>Technitium</Company>
10-
<Product>Technitium DNS Server</Product>
11-
<Authors>Shreyas Zare</Authors>
12-
<AssemblyName>GeoContinentApp</AssemblyName>
13-
<RootNamespace>GeoContinent</RootNamespace>
14-
<PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
15-
<RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
16-
<Description>Allows creating APP records in primary and forwarder zones that can return A or AAAA records, or CNAME record based on the continent the client queries from using MaxMind GeoIP2 Country database. Supports EDNS Client Subnet (ECS). This app requires MaxMind GeoIP2 database and includes the GeoLite2 version for trial. \n\nTo update the MaxMind GeoIP2 database for your app, download the GeoIP2-Country.mmdb file from MaxMind and zip it. Use the zip file with the manual Update option. The app optionally also uses MaxMind ISP/ASN database which can be updated the with same method.</Description>
17-
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
18-
<OutputType>Library</OutputType>
19-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
6+
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
7+
<Version>9.0.1</Version>
8+
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
9+
<Company>Technitium</Company>
10+
<Product>Technitium DNS Server</Product>
11+
<Authors>Shreyas Zare</Authors>
12+
<AssemblyName>GeoContinentApp</AssemblyName>
13+
<RootNamespace>GeoContinent</RootNamespace>
14+
<PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
15+
<RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
16+
<Description>Allows creating APP records in primary and forwarder zones that can return A or AAAA records, or CNAME record based on the continent the client queries from using MaxMind GeoIP2 Country database. Supports EDNS Client Subnet (ECS). This app requires MaxMind GeoIP2 database and includes the GeoLite2 version for trial. \n\nTo update the MaxMind GeoIP2 database for your app, download the GeoIP2-Country.mmdb file from MaxMind and zip it. Use the zip file with the manual Update option. The app optionally also uses MaxMind ISP/ASN database which can be updated the with same method.</Description>
17+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
18+
<OutputType>Library</OutputType>
19+
</PropertyGroup>
2020

21-
<ItemGroup>
22-
<PackageReference Include="MaxMind.GeoIP2" Version="5.3.0" />
23-
</ItemGroup>
21+
<ItemGroup>
22+
<PackageReference Include="MaxMind.GeoIP2" Version="5.4.1" />
23+
</ItemGroup>
2424

25-
<ItemGroup>
26-
<ProjectReference Include="..\..\DnsServerCore.ApplicationCommon\DnsServerCore.ApplicationCommon.csproj">
27-
<Private>false</Private>
28-
</ProjectReference>
29-
</ItemGroup>
25+
<ItemGroup>
26+
<ProjectReference Include="..\..\DnsServerCore.ApplicationCommon\DnsServerCore.ApplicationCommon.csproj">
27+
<Private>false</Private>
28+
</ProjectReference>
29+
</ItemGroup>
3030

31-
<ItemGroup>
32-
<Reference Include="TechnitiumLibrary">
33-
<HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.dll</HintPath>
34-
<Private>false</Private>
35-
</Reference>
36-
<Reference Include="TechnitiumLibrary.Net">
37-
<HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
38-
<Private>false</Private>
39-
</Reference>
40-
</ItemGroup>
31+
<ItemGroup>
32+
<Reference Include="TechnitiumLibrary">
33+
<HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.dll</HintPath>
34+
<Private>false</Private>
35+
</Reference>
36+
<Reference Include="TechnitiumLibrary.Net">
37+
<HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
38+
<Private>false</Private>
39+
</Reference>
40+
</ItemGroup>
4141

42-
<ItemGroup>
43-
<None Update="dnsApp.config">
44-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
45-
</None>
46-
<None Update="ReadMe.txt">
47-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
48-
</None>
49-
</ItemGroup>
42+
<ItemGroup>
43+
<None Update="dnsApp.config">
44+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
45+
</None>
46+
<None Update="ReadMe.txt">
47+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
48+
</None>
49+
</ItemGroup>
5050

5151
</Project>
Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,51 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
6-
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
7-
<Version>9.0</Version>
8-
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
9-
<Company>Technitium</Company>
10-
<Product>Technitium DNS Server</Product>
11-
<Authors>Shreyas Zare</Authors>
12-
<AssemblyName>GeoCountryApp</AssemblyName>
13-
<RootNamespace>GeoCountry</RootNamespace>
14-
<PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
15-
<RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
16-
<Description>Allows creating APP records in primary and forwarder zones that can return A or AAAA records, or CNAME record based on the country the client queries from using MaxMind GeoIP2 Country database. Supports EDNS Client Subnet (ECS). This app requires MaxMind GeoIP2 database and includes the GeoLite2 version for trial. \n\nTo update the MaxMind GeoIP2 database for your app, download the GeoIP2-Country.mmdb file from MaxMind and zip it. Use the zip file with the manual Update option. The app optionally also uses MaxMind ISP/ASN database which can be updated the with same method.</Description>
17-
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
18-
<OutputType>Library</OutputType>
19-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
6+
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
7+
<Version>9.0.1</Version>
8+
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
9+
<Company>Technitium</Company>
10+
<Product>Technitium DNS Server</Product>
11+
<Authors>Shreyas Zare</Authors>
12+
<AssemblyName>GeoCountryApp</AssemblyName>
13+
<RootNamespace>GeoCountry</RootNamespace>
14+
<PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
15+
<RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
16+
<Description>Allows creating APP records in primary and forwarder zones that can return A or AAAA records, or CNAME record based on the country the client queries from using MaxMind GeoIP2 Country database. Supports EDNS Client Subnet (ECS). This app requires MaxMind GeoIP2 database and includes the GeoLite2 version for trial. \n\nTo update the MaxMind GeoIP2 database for your app, download the GeoIP2-Country.mmdb file from MaxMind and zip it. Use the zip file with the manual Update option. The app optionally also uses MaxMind ISP/ASN database which can be updated the with same method.</Description>
17+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
18+
<OutputType>Library</OutputType>
19+
</PropertyGroup>
2020

21-
<ItemGroup>
22-
<PackageReference Include="MaxMind.GeoIP2" Version="5.3.0" />
23-
</ItemGroup>
21+
<ItemGroup>
22+
<PackageReference Include="MaxMind.GeoIP2" Version="5.4.1" />
23+
</ItemGroup>
2424

25-
<ItemGroup>
26-
<ProjectReference Include="..\..\DnsServerCore.ApplicationCommon\DnsServerCore.ApplicationCommon.csproj">
27-
<Private>false</Private>
28-
</ProjectReference>
29-
</ItemGroup>
25+
<ItemGroup>
26+
<ProjectReference Include="..\..\DnsServerCore.ApplicationCommon\DnsServerCore.ApplicationCommon.csproj">
27+
<Private>false</Private>
28+
</ProjectReference>
29+
</ItemGroup>
3030

31-
<ItemGroup>
32-
<Reference Include="TechnitiumLibrary">
33-
<HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.dll</HintPath>
34-
<Private>false</Private>
35-
</Reference>
36-
<Reference Include="TechnitiumLibrary.Net">
37-
<HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
38-
<Private>false</Private>
39-
</Reference>
40-
</ItemGroup>
31+
<ItemGroup>
32+
<Reference Include="TechnitiumLibrary">
33+
<HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.dll</HintPath>
34+
<Private>false</Private>
35+
</Reference>
36+
<Reference Include="TechnitiumLibrary.Net">
37+
<HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
38+
<Private>false</Private>
39+
</Reference>
40+
</ItemGroup>
4141

42-
<ItemGroup>
43-
<None Update="dnsApp.config">
44-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
45-
</None>
46-
<None Update="ReadMe.txt">
47-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
48-
</None>
49-
</ItemGroup>
42+
<ItemGroup>
43+
<None Update="dnsApp.config">
44+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
45+
</None>
46+
<None Update="ReadMe.txt">
47+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
48+
</None>
49+
</ItemGroup>
5050

5151
</Project>

0 commit comments

Comments
 (0)