-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLoveMaker.csproj
More file actions
63 lines (56 loc) · 2 KB
/
LoveMaker.csproj
File metadata and controls
63 lines (56 loc) · 2 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>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<StartupObject>LoveMaker.Program</StartupObject>
<ApplicationIcon>LoveMaker.ico</ApplicationIcon>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<SignAssembly>False</SignAssembly>
<ErrorReport>send</ErrorReport>
<Title>LoveMaker</Title>
<ApplicationVisualStyles>true</ApplicationVisualStyles>
<ApplicationHighDpiMode>SystemAware</ApplicationHighDpiMode>
<!--
ver. format: major.minor.build.revision
-->
<Version>0.1.6.0</Version>
<AssemblyVersion></AssemblyVersion>
<FileVersion></FileVersion>
<Authors>MTadder</Authors>
<Company>MTLaboratory</Company>
<PackageIcon>LoveMaker.png</PackageIcon>
<NeutralLanguage>en</NeutralLanguage>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<IncludeSymbols>True</IncludeSymbols>
<AnalysisLevel>latest-all</AnalysisLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Content Include="LoveMaker.ico" />
</ItemGroup>
<ItemGroup>
<None Include="LibraryExplorer.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MTLib\MTLib.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="LoveMaker.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>