Worms4Editor/W4Gui/W4Gui.csproj

91 lines
3.0 KiB
XML
Raw Normal View History

2023-01-11 09:22:45 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-02-28 21:42:37 +00:00
<OutputType>WinExe</OutputType>
2023-01-11 09:22:45 +00:00
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
2023-02-28 21:42:37 +00:00
<ApplicationIcon>EditorIcon.ico</ApplicationIcon>
2023-01-11 09:22:45 +00:00
</PropertyGroup>
<ItemGroup>
2023-02-28 21:42:37 +00:00
<Content Include="EditorIcon.ico" />
</ItemGroup>
<ItemGroup>
<Compile Update="Components\InputMappingPanel.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Components\InputEventMappingPanel.cs">
<SubType>UserControl</SubType>
</Compile>
2023-02-23 09:43:15 +00:00
<Compile Update="Components\UnlockableItemsPanel.cs">
<SubType>UserControl</SubType>
</Compile>
2023-02-16 04:12:22 +00:00
<Compile Update="Components\VariablePanel\VectorVariablePanel.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Components\VariablePanel\FloatVariablePanel.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Components\VariablePanel\StringVariablePanel.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Components\VariablePanel\UIntVariablePanel.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Components\VariablePanel\IntVariablePanel.cs" />
<Compile Update="Components\UIntUpDown.cs" />
2023-01-17 04:07:32 +00:00
<Compile Update="Components\SchemePanel.cs">
<SubType>UserControl</SubType>
</Compile>
2023-01-12 03:50:02 +00:00
<Compile Update="Components\IntUpDown.cs" />
2023-02-28 21:42:37 +00:00
<Compile Update="Components\AwardPanel.cs">
<SubType>UserControl</SubType>
</Compile>
2023-01-11 09:22:45 +00:00
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
2023-02-28 21:42:37 +00:00
<Compile Update="Tabs\AwardTab.cs" />
<Compile Update="Tabs\InputEventMappingsTab.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Tabs\OtherTabs\InputMappingsTab.cs">
<SubType>UserControl</SubType>
</Compile>
2023-02-23 09:43:15 +00:00
<Compile Update="Tabs\UnlockableItemsTab.cs" />
2023-02-16 04:12:22 +00:00
<Compile Update="Tabs\IntVariablesTab.cs">
<SubType>UserControl</SubType>
</Compile>
2023-01-19 07:56:12 +00:00
<Compile Update="Tabs\SchemeTab.cs" />
2023-02-16 04:12:22 +00:00
<Compile Update="Tabs\VariablesTab\VectorVariablesTab.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Tabs\VariablesTab\StringVariablesTab.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Tabs\VariablesTab\FloatVariablesTab.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Tabs\VariablesTab\UIntVariablesTab.cs" />
2023-01-11 09:22:45 +00:00
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LibW4M\LibW4M.csproj" />
</ItemGroup>
</Project>