ui file nesting
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Michele Scandura 2021-09-16 12:18:18 +01:00
parent f15f1c8857
commit 08626d7a81
8 changed files with 19 additions and 7 deletions

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
@ -71,16 +71,15 @@
<ItemGroup>
<ProjectReference Include="..\Sledgemapper.Shared\Sledgemapper.Shared.csproj" />
</ItemGroup>
<!--<ItemGroup>
<ItemGroup>
<Compile Update="**\*.Custom.cs">
<DependentUpon>$([System.String]::Copy(%(Filename)).Replace(".Custom",".cs"))</DependentUpon>
</Compile>
<Compile Update="**\*.Generated.cs">
<DependentUpon>$([System.String]::Copy(%(Filename)).Replace(".Generated",".cs"))</DependentUpon>
</Compile>
<Content Update="**\*.UI.xmmp">
<DependentUpon>$([System.String]::Copy(%(Filename)).Replace(".UI",".cs"))</DependentUpon>
</Content>
</ItemGroup>-->
<None Update="**\*.xmmp">
<DependentUpon>$([System.String]::Concat(%(Filename), ".cs"))</DependentUpon>
</None>
</ItemGroup>
</Project>

View File

@ -6,6 +6,7 @@ namespace Sledgemapper.UI
public ListItem()
{
BuildUI();
}
}
}

View File

@ -0,0 +1,12 @@
/* Generated by MyraPad at 28/08/2021 22:04:11 */
namespace Sledgemapper.UI
{
public partial class PlayerWindow
{
public PlayerWindow()
{
BuildUI();
}
}
}