-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlowInk.csproj
More file actions
63 lines (55 loc) · 1.95 KB
/
FlowInk.csproj
File metadata and controls
63 lines (55 loc) · 1.95 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.2.0</Version>
<InformationalVersion>$(Version)</InformationalVersion>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyName>FlowInk</AssemblyName>
<RootNamespace>FlowInk</RootNamespace>
<ApplicationIcon>Assets\FlowInk.ico</ApplicationIcon>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove="Assets\eraser.cur" />
<None Remove="Assets\FlowInk.ico" />
<None Remove="Assets\mouse-pointer-2-off.png" />
<None Remove="Assets\mouse-pointer-2.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Assets\FlowInk.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Content Include="Assets\mouse-pointer-2-off.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\mouse-pointer-2.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Resource Include=".gitattributes" />
</ItemGroup>
<ItemGroup>
<None Include="Assets\FlowInk.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</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>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>