-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPinny Notes.csproj
51 lines (45 loc) · 1.55 KB
/
Pinny Notes.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>Pinny_Notes</RootNamespace>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<PackageIcon>icon.png</PackageIcon>
<ApplicationIcon>Images\icon.ico</ApplicationIcon>
<Version>1.12.1</Version>
<UseWindowsForms>True</UseWindowsForms>
</PropertyGroup>
<ItemGroup>
<Resource Include="Images\icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
<Compile Update="Properties\ToolSettings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>ToolSettings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Images\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<None Update="Properties\ToolSettings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>ToolSettings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>