-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathNetCoreTests.csproj
More file actions
30 lines (26 loc) · 1.36 KB
/
NetCoreTests.csproj
File metadata and controls
30 lines (26 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0-windows</TargetFramework>
<RootNamespace>DevExpress.Mvvm.CodeGenerators.Tests</RootNamespace>
<AssemblyName>DevExpress.Mvvm.CodeGenerators.NetCoreTests</AssemblyName>
<LangVersion>9</LangVersion>
<IncludePackageReferencesDuringMarkupCompilation>true</IncludePackageReferencesDuringMarkupCompilation>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<Analyzer Include="..\..\DevExpress.Mvvm.CodeGenerators\bin\DevExpress.Mvvm.CodeGenerators.dll" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.1.2" />
<PackageReference Include="DevExpressMvvm" Version="20.2.3" />
<PackageReference Include="MvvmLightLibsStd10" Version="5.4.1.1" />
<PackageReference Include="Prism.Wpf" Version="8.1.97" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.9.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.2" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
</ItemGroup>
<Import Project="..\SharedTests\SharedTests.projitems" Label="Shared" />
</Project>