This repository was archived by the owner on Feb 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLeafFallEngine.csproj
More file actions
44 lines (39 loc) · 1.41 KB
/
LeafFallEngine.csproj
File metadata and controls
44 lines (39 loc) · 1.41 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net7.0-windows10.0.19041.0</TargetFramework>
<RootNamespace>LeafFallEngine</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPublishable>False</IsPublishable>
<Platforms>AnyCPU;x64</Platforms>
<StartupObject></StartupObject>
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
<UseWindowsForms>True</UseWindowsForms>
<Authors />
<Copyright>Copyright © 2023 茶红落叶</Copyright>
<Product>LeafFall Engine</Product>
<Company>TeaRed LeafFall</Company>
<Description>LeafFall Engine Application</Description>
<Title>LeafFall Engine Application</Title>
<AssemblyVersion>0.23.10.1</AssemblyVersion>
<FileVersion>0.23.10.1</FileVersion>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="Resources\icon.ico" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>