-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPotatoWall.csproj
168 lines (150 loc) · 6.78 KB
/
PotatoWall.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<StartupObject>PotatoWall.App</StartupObject>
<AssemblyName>PotatoWall</AssemblyName>
<RootNamespace>PotatoWall</RootNamespace>
<ApplicationIcon>potatowall.ico</ApplicationIcon>
<Description>By using WinDivert this application gives you the ability to allow/block connections.</Description>
<AssemblyVersion>1.7.0.0</AssemblyVersion>
<FileVersion>1.7.0.0</FileVersion>
<Copyright>Copyright © 2023 POQDavid</Copyright>
<PackageId>PotatoWall</PackageId>
<Product>PotatoWall</Product>
<Company>POQDavid</Company>
<Authors>POQDavid</Authors>
<PackageIcon>potatowall.png</PackageIcon>
<Version>1.7.0.0</Version>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/poqdavid/PotatoWall.git</RepositoryUrl>
<PackageProjectUrl>http://poqdavid.github.io/PotatoWall</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Platforms>x64;x86</Platforms>
<ApplicationManifest>app.manifest</ApplicationManifest>
<LangVersion>latest</LangVersion>
<Configurations>Debug;Release;ReleaseFD;ReleaseSC</Configurations>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>bin\Release\x64\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseSC|x64'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>bin\Release\x64\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseFD|x64'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>bin\Release\x64\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>bin\Release\x86\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseSC|x86'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>bin\Release\x86\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseFD|x86'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>bin\Release\x86\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<OutputPath>bin\Debug\x64\</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>bin\Debug\x86\</OutputPath>
</PropertyGroup>
<ItemGroup>
<None Remove="Libs\WinDivert\x64\netdump.exe" />
<None Remove="Libs\WinDivert\x64\netfilter.exe" />
<None Remove="Libs\WinDivert\x64\passthru.exe" />
<None Remove="Libs\WinDivert\x64\streamdump.exe" />
<None Remove="Libs\WinDivert\x64\webfilter.exe" />
<None Remove="Libs\WinDivert\x64\WinDivert.lib" />
<None Remove="Libs\WinDivert\x86\netdump.exe" />
<None Remove="Libs\WinDivert\x86\netfilter.exe" />
<None Remove="Libs\WinDivert\x86\passthru.exe" />
<None Remove="Libs\WinDivert\x86\streamdump.exe" />
<None Remove="Libs\WinDivert\x86\webfilter.exe" />
<None Remove="Libs\WinDivert\x86\WinDivert.lib" />
<None Remove="potatowall.ico" />
<None Remove="potatowall.png" />
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="potatowall.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="MaterialDesignColors" Version="2.1.4" />
<PackageReference Include="MaterialDesignThemes" Version="4.9.0" />
<PackageReference Include="MaterialDesignThemes.MahApps" Version="0.3.0" />
<PackageReference Include="MaterialDesignThemes.Wpf" Version="1.0.1" />
<PackageReference Include="MaxMind.Db" Version="4.0.0" />
<PackageReference Include="MaxMind.GeoIP2" Version="5.1.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Serilog" Version="3.0.1" />
<PackageReference Include="Serilog.Enrichers.Environment" Version="2.2.0" />
<PackageReference Include="Serilog.Enrichers.Thread" Version="3.1.0" />
<PackageReference Include="Serilog.Formatting.Compact" Version="1.1.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="7.0.1" />
</ItemGroup>
<ItemGroup>
<Resource Include="potatowall.png" />
<Resource Include="potatowall.ico" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Libs\WinDivert\$(Platform)\WinDivert.dll" Link="$(Platform)/%(Filename)%(Extension)">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Libs\WinDivert\$(Platform)\WinDivert64.sys" Link="$(Platform)/%(Filename)%(Extension)">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Libs\WinDivert\$(Platform)\WinDivert32.sys" Link="$(Platform)/%(Filename)%(Extension)">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="flags\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Compile Remove="Libs\WinDivertSharp\**" />
<Compile Remove="Release\**" />
<EmbeddedResource Remove="Libs\WinDivertSharp\**" />
<EmbeddedResource Remove="Release\**" />
<None Remove="Libs\WinDivertSharp\**" />
<None Remove="Release\**" />
<Page Remove="Libs\WinDivertSharp\**" />
<Page Remove="Release\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Utils\Logger.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Libs\WinDivertSharp\WinDivertSharp\WinDivertSharp.csproj" />
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="$(ProjectDir)\stopWinDivert.bat" />
</Target>
</Project>