-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMemento.csproj
52 lines (44 loc) · 1.88 KB
/
Memento.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows7.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<Version>1.6.3</Version>
<ApplicationIcon>Resources\Main.ico</ApplicationIcon>
<AssemblyName>Memento</AssemblyName>
<RootNamespace>Memento</RootNamespace>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PlatformTarget>AnyCPU</PlatformTarget>
<Optimize>False</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<None Remove="MetroFramework\Localization\de\MetroToggle.xml" />
<None Remove="MetroFramework\Localization\en\MetroToggle.xml" />
<None Remove="MetroFramework\Localization\tr\MetroToggle.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="MetroFramework\Localization\de\MetroToggle.xml" />
<EmbeddedResource Include="MetroFramework\Localization\en\MetroToggle.xml" />
<EmbeddedResource Include="MetroFramework\Localization\tr\MetroToggle.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.Compatibility" Version="9.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
<PackageReference Include="System.Reactive.Linq" Version="6.0.1" />
</ItemGroup>
<ItemGroup>
<Compile Update="Forms\AdvancedFiltering.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>