27 lines
784 B
XML
27 lines
784 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Prism.Wpf" Version="8.1.97" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\RIZO_Application.Models\RIZO_Application.Models.csproj" />
|
|
<ProjectReference Include="..\RIZO_Application.Repository\RIZO_Application.Repository.csproj" />
|
|
<ProjectReference Include="..\RIZO_Application\RIZO_Application.Core\RIZO_Application.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Views\SystemLog.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project>
|