Build correct

master
Cedric CHARBONNEL 2 years ago
parent a3656fb6ca
commit 66d6fb4047

@ -5,7 +5,7 @@
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> -->
<OutputType>Exe</OutputType>
<OutputType Condition="'$(TargetFramework)' != 'net7.0'">Exe</OutputType>
<RootNamespace>LOLAPP</RootNamespace>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
@ -56,6 +56,15 @@
<Compile Update="View\Login.xaml.cs">
<DependentUpon>Login.xaml</DependentUpon>
</Compile>
<Compile Update="View\Main.xaml.cs">
<DependentUpon>Main.xaml</DependentUpon>
</Compile>
<Compile Update="View\Register.xaml.cs">
<DependentUpon>Register.xaml</DependentUpon>
</Compile>
<Compile Update="View\Register.xaml.cs">
<DependentUpon>Register.xaml</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
@ -73,13 +82,9 @@
</MauiXaml>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Models\Models.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Stub\Stub.csproj" />
<ProjectReference Include="..\Models\Models.csproj" />
</ItemGroup>
</Project>

Loading…
Cancel
Save