Skip to content
This repository was archived by the owner on May 21, 2023. It is now read-only.

Commit 6e5f0f5

Browse files
authored
Add files via upload
1 parent 65b5233 commit 6e5f0f5

14 files changed

+1499
-0
lines changed

NetShield Protector/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
5+
</startup>
6+
</configuration>

NetShield Protector/Main.Designer.cs

Lines changed: 421 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

NetShield Protector/Main.cs

Lines changed: 548 additions & 0 deletions
Large diffs are not rendered by default.

NetShield Protector/Main.resx

Lines changed: 408 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{F796DDDD-9133-4A59-B511-6A0950690C4C}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<RootNamespace>NetShield_Protector</RootNamespace>
10+
<AssemblyName>NetShield Protector</AssemblyName>
11+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<PlatformTarget>AnyCPU</PlatformTarget>
18+
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<Optimize>false</Optimize>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>DEBUG;TRACE</DefineConstants>
23+
<ErrorReport>prompt</ErrorReport>
24+
<WarningLevel>4</WarningLevel>
25+
<Prefer32Bit>false</Prefer32Bit>
26+
</PropertyGroup>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28+
<PlatformTarget>AnyCPU</PlatformTarget>
29+
<DebugType>pdbonly</DebugType>
30+
<Optimize>true</Optimize>
31+
<OutputPath>bin\Release\</OutputPath>
32+
<DefineConstants>TRACE</DefineConstants>
33+
<ErrorReport>prompt</ErrorReport>
34+
<WarningLevel>4</WarningLevel>
35+
</PropertyGroup>
36+
<PropertyGroup>
37+
<ApplicationIcon>icons81_system_task.ico</ApplicationIcon>
38+
</PropertyGroup>
39+
<ItemGroup>
40+
<Reference Include="CryptoPrivacy">
41+
<HintPath>..\..\MineHackingTools\MineHackingTools\bin\Debug\CryptoPrivacy.dll</HintPath>
42+
</Reference>
43+
<Reference Include="dnlib">
44+
<HintPath>..\..\..\..\Downloads\net472\dnlib.dll</HintPath>
45+
</Reference>
46+
<Reference Include="System" />
47+
<Reference Include="System.Core" />
48+
<Reference Include="System.Management" />
49+
<Reference Include="System.Xml.Linq" />
50+
<Reference Include="System.Data.DataSetExtensions" />
51+
<Reference Include="Microsoft.CSharp" />
52+
<Reference Include="System.Data" />
53+
<Reference Include="System.Deployment" />
54+
<Reference Include="System.Drawing" />
55+
<Reference Include="System.Net.Http" />
56+
<Reference Include="System.Windows.Forms" />
57+
<Reference Include="System.Xml" />
58+
</ItemGroup>
59+
<ItemGroup>
60+
<Compile Include="Main.cs">
61+
<SubType>Form</SubType>
62+
</Compile>
63+
<Compile Include="Main.Designer.cs">
64+
<DependentUpon>Main.cs</DependentUpon>
65+
</Compile>
66+
<Compile Include="Program.cs" />
67+
<Compile Include="Properties\AssemblyInfo.cs" />
68+
<Compile Include="Resource1.Designer.cs">
69+
<AutoGen>True</AutoGen>
70+
<DesignTime>True</DesignTime>
71+
<DependentUpon>Resource1.resx</DependentUpon>
72+
</Compile>
73+
<None Include="Resources\USBPacker.cs" />
74+
<None Include="Resources\LicensePacker.cs" />
75+
<None Include="Resources\Program.cs" />
76+
<EmbeddedResource Include="Main.resx">
77+
<DependentUpon>Main.cs</DependentUpon>
78+
</EmbeddedResource>
79+
<EmbeddedResource Include="Properties\Resources.resx">
80+
<Generator>ResXFileCodeGenerator</Generator>
81+
<SubType>Designer</SubType>
82+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
83+
</EmbeddedResource>
84+
<EmbeddedResource Include="Resource1.resx">
85+
<Generator>ResXFileCodeGenerator</Generator>
86+
<LastGenOutput>Resource1.Designer.cs</LastGenOutput>
87+
</EmbeddedResource>
88+
<None Include="Properties\Settings.settings">
89+
<Generator>SettingsSingleFileGenerator</Generator>
90+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
91+
</None>
92+
<Compile Include="Properties\Resources.Designer.cs">
93+
<AutoGen>True</AutoGen>
94+
<DesignTime>True</DesignTime>
95+
<DependentUpon>Resources.resx</DependentUpon>
96+
</Compile>
97+
<Compile Include="Properties\Settings.Designer.cs">
98+
<AutoGen>True</AutoGen>
99+
<DependentUpon>Settings.settings</DependentUpon>
100+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
101+
</Compile>
102+
</ItemGroup>
103+
<ItemGroup>
104+
<None Include="App.config" />
105+
</ItemGroup>
106+
<ItemGroup>
107+
<Content Include="icons81_system_task.ico" />
108+
</ItemGroup>
109+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
110+
</Project>
11 KB
Binary file not shown.
86.5 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
5+
</startup>
6+
</configuration>
65.5 KB
Binary file not shown.
1.09 MB
Binary file not shown.

0 commit comments

Comments
 (0)