Worms4Editor/W4Gui/W4Gui.csproj

91 lines
3.0 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>EditorIcon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="EditorIcon.ico" />
</ItemGroup>
<ItemGroup>
<Compile Update="Components\InputMappingPanel.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Components\InputEventMappingPanel.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Components\UnlockableItemsPanel.cs">
<SubType>UserControl</SubType>
</Compile>
<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" />
<Compile Update="Components\SchemePanel.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Components\IntUpDown.cs" />
<Compile Update="Components\AwardPanel.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Update="Tabs\AwardTab.cs" />
<Compile Update="Tabs\InputEventMappingsTab.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Tabs\OtherTabs\InputMappingsTab.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Tabs\UnlockableItemsTab.cs" />
<Compile Update="Tabs\IntVariablesTab.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Tabs\SchemeTab.cs" />
<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" />
</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>