-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
210 changed files
with
23,623 additions
and
1,765 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[*.cs] | ||
|
||
# IDE0042: Deconstruct variable declaration | ||
csharp_style_deconstructed_variable_declaration = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<Application x:Class="DNSveil.App" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:local="clr-namespace:DNSveil" | ||
xmlns:resources="clr-namespace:MsmhToolsWpfClass.Themes;assembly=MsmhToolsWpfClass" | ||
StartupUri="MainWindow.xaml"> | ||
<Application.Resources> | ||
<ResourceDictionary> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="pack://application:,,,/MsmhToolsWpfClass;component/Themes/Generic.xaml"/> | ||
<ResourceDictionary Source="pack://application:,,,/MsmhToolsWpfClass;component/Styles.xaml"/> | ||
|
||
<!-- Merge The Default Theme (Dark) --> | ||
<ResourceDictionary Source="{x:Static resources:AppTheme.DarkThemeResourcesFile}"/> | ||
</ResourceDictionary.MergedDictionaries> | ||
|
||
<!--Built-In Bool To Visibility Converter--> | ||
<BooleanToVisibilityConverter x:Key="BooleanToVisibility" /> | ||
<!-- | ||
e.g. | ||
<ContentControl Content="{Binding}" | ||
Visibility="{Binding IsPanelVisible, Converter={StaticResource BooleanToVisibility}}"> | ||
--> | ||
|
||
</ResourceDictionary> | ||
|
||
|
||
</Application.Resources> | ||
</Application> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System.Windows; | ||
|
||
namespace DNSveil | ||
{ | ||
/// <summary> | ||
/// Interaction logic for App.xaml | ||
/// </summary> | ||
public partial class App : Application | ||
{ | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System.Windows; | ||
|
||
[assembly: ThemeInfo( | ||
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located | ||
//(used if a resource is not found in the page, | ||
// or application resource dictionaries) | ||
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located | ||
//(used if a resource is not found in the page, | ||
// app, or any theme specific resource dictionaries) | ||
)] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>net6.0-windows</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<UseWPF>true</UseWPF> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
<ApplicationIcon>DNSveilMulti.ico</ApplicationIcon> | ||
<SignAssembly>False</SignAssembly> | ||
<Title>DNSveil</Title> | ||
<Authors>msasanmh</Authors> | ||
<Description>A Secure DNS Client</Description> | ||
<Copyright>MSasanMH</Copyright> | ||
<PackageProjectUrl>https://github.com/msasanmh/DNSveil</PackageProjectUrl> | ||
<PackageIcon>DNSveil.png</PackageIcon> | ||
<RepositoryUrl>https://github.com/msasanmh/DNSveil</RepositoryUrl> | ||
<PackageTags>DNSveil;DNS Client;Proxy Server</PackageTags> | ||
<Version>$(VersionPrefix) 0.0.1</Version> | ||
<PlatformTarget>x64</PlatformTarget> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<Platforms>AnyCPU;x64;x86</Platforms> | ||
<UseWindowsForms>False</UseWindowsForms> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="ManageServers\DNSveil.png" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="DNSveilMulti.ico" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\MsmhToolsWpfClass\MsmhToolsWpfClass.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Resource Include="DNSveil.png"> | ||
<CopyToOutputDirectory>Never</CopyToOutputDirectory> | ||
</Resource> | ||
<Resource Include="ManageServers\DNSveil.png" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="DNSveil.png"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Update="LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Update="SecureDNSClient.png"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup /> | ||
<ItemGroup> | ||
<Compile Update="ManageServers\ManageServersWindow.xaml.cs"> | ||
<SubType>Code</SubType> | ||
</Compile> | ||
<Compile Update="PageTest.xaml.cs"> | ||
<SubType>Code</SubType> | ||
</Compile> | ||
<Compile Update="TestWindow.xaml.cs"> | ||
<SubType>Code</SubType> | ||
</Compile> | ||
<Compile Update="TestWindow2.xaml.cs"> | ||
<SubType>Code</SubType> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Page Update="MainWindow.xaml"> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Update="ManageServers\ManageServersWindow.xaml"> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Update="PageTest.xaml"> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Update="TestWindow.xaml"> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Update="TestWindow2.xaml"> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
</ItemGroup> | ||
</Project> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Oops, something went wrong.