18 lines
652 B
XML
18 lines
652 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\StandardDesign.Common\StandardDesign.Common.csproj" />
|
|
<ProjectReference Include="..\StandardDesign.DataAccess\StandardDesign.DataAccess.csproj" />
|
|
<ProjectReference Include="..\StandardDesign.IDataAccess\StandardDesign.IDataAccess.csproj" />
|
|
<ProjectReference Include="..\StandardDesign.ViewModels\StandardDesign.ViewModels.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|