-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
Notifier.csproj
82 lines (77 loc) · 3.2 KB
/
Notifier.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyName>Notifier</AssemblyName>
<RootNamespace>Wokhan.WindowsFirewallNotifier.Notifier</RootNamespace>
<NeutralLanguage>en-US</NeutralLanguage>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<Description>Windows Firewall Notifier - Notification handler</Description>
<Product>Windows Firewall Notifier</Product>
<Copyright>2011-2021 Wokhan and others (https://github.com/wokhan/WFN)</Copyright>
<Authors>Wokhan Solutions, Harrwiss</Authors>
<OutputPath>..\bin\$(ConfigurationName)</OutputPath>
<Company>Wokhan Solutions</Company>
<ApplicationIcon>TrayIcon22.ico</ApplicationIcon>
<Nullable>warnings</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<None Remove="Helpers\SingleInstanceApp.cs_" />
<None Remove="Program.cs_" />
<None Remove="Properties\AssemblyInfo.cs_" />
<None Remove="Resources\WFN.ico" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\WFN.ico" />
</ItemGroup>
<ItemGroup>
<!--<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>-->
<PackageReference Include="Microsoft.VisualBasic" Version="10.3.0" />
<PackageReference Include="Wokhan.UI" Version="0.9.8-beta" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Common\Common.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Interop.NetFwTypeLib">
<HintPath>..\Interop\Interop.NetFwTypeLib.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\TrayIconBlocked.ico" />
<Resource Include="Resources\TrayIconBlocked2.ico" />
<Resource Include="Resources\TrayIconBlocked3.ico" />
<Resource Include="Resources\TrayIcon2.ico" />
<Resource Include="Resources\TrayIcon3.ico" />
<Resource Include="Resources\TrayIcon2off.ico" />
<Resource Include="Resources\TrayIcon21.ico" />
<Resource Include="Resources\TrayIcon22.ico" />
<Resource Include="Resources\TrayIcon23.ico" />
<Resource Include="Resources\TrayIcon24.ico" />
<Resource Include="Resources\TrayIcon1.ico" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>