21 lines
900 B
XML
21 lines
900 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<LangVersion>13.0</LangVersion>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>True</UseWPF>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
|
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.122" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System.ComponentModel.DataAnnotations" />
|
|
</ItemGroup>
|
|
</Project> |