30 lines
999 B
XML
30 lines
999 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Models\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="LiveCharts.Wpf" Version="0.9.7" />
|
|
<PackageReference Include="Prism.DryIoc" Version="8.1.97" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\UIStandard.Assets\UIStandard.Assets.csproj" />
|
|
<ProjectReference Include="..\UIStandard.BLL\UIStandard.BLL.csproj" />
|
|
<ProjectReference Include="..\UIStandard.Common\UIStandard.Common.csproj" />
|
|
<ProjectReference Include="..\UIStandard.DAL\UIStandard.DAL.csproj" />
|
|
<ProjectReference Include="..\UIStandard.IBLL\UIStandard.IBLL.csproj" />
|
|
<ProjectReference Include="..\UIStandard.IDAL\UIStandard.IDAL.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|