-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathExileWorldGenerator.csproj
51 lines (51 loc) · 1.93 KB
/
ExileWorldGenerator.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>net6.0-windows</TargetFramework>
<AssemblyTitle>ExileWorldGenerator</AssemblyTitle>
<Company>J Saffron Consulting Ltd</Company>
<Product>Exile World Generator</Product>
<Copyright>Copyright © J Saffron Consulting 2019-2024</Copyright>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<UseWindowsForms>True</UseWindowsForms>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
</PropertyGroup>
<PropertyGroup>
<StartupObject>ExileWorldGenerator.Program</StartupObject>
<LangVersion>8</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Update="MainForm.cs" />
<Compile Update="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Update="Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<EmbeddedResource Update="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
<None Include="app.manifest">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="Resources\HollowPassage.bmp" />
<None Include="Resources\BlowDown.png" />
<None Include="Resources\BlowUp.png" />
<None Include="Resources\MainFormIcon.ico" />
<None Include="Resources\SuckDown.png" />
<None Include="Resources\SuckUp.png" />
<None Include="Resources\TeleportTarget.bmp" />
<None Include="Resources\RandomWind.bmp" />
<None Include="Resources\HiddenSwitch.bmp" />
<None Include="Resources\FixedWind.bmp" />
<None Include="Doco\exile-disassembly.txt" />
<Content Include="Doco\ExileSpriteKey.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>