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

View file

@ -6,6 +6,7 @@ namespace Sledgemapper.UI
public ListItem() public ListItem()
{ {
BuildUI(); 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();
}
}
}