-
Notifications
You must be signed in to change notification settings - Fork 1
/
InvoicesManager.csproj
59 lines (50 loc) · 1.86 KB
/
InvoicesManager.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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<StartupObject>InvoicesManager.App</StartupObject>
<NoWin32Manifest>true</NoWin32Manifest>
<UseWindowsForms>True</UseWindowsForms>
<AssemblyVersion>1.4.5.2</AssemblyVersion>
<FileVersion>1.4.5.2</FileVersion>
<Company>GermanNightmare</Company>
<Authors>Schecher_1</Authors>
<Configurations>Debug;Release</Configurations>
<ApplicationIcon>Resources\LargeIcon.ico</ApplicationIcon>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\SmallIcon.png" />
<None Remove="Resources\folder100x100.png" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\LargeIcon.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\SmallIcon.png" />
<EmbeddedResource Include="Resources\folder100x100.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\SmallIcon.png" />
<Resource Include="Resources\folder100x100.png" /> </ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<Page Update="Resources\Languages\Language_en-US.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
<Page Update="Windows\InvoiceTemplateWindow.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
</ItemGroup>
</Project>