33 lines
948 B
XML
33 lines
948 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Nullable>enable</Nullable>
|
|
<RootNamespace>Microsoft.eShopWeb.UnitTests</RootNamespace>
|
|
<IsPackable>false</IsPackable>
|
|
<LangVersion>latest</LangVersion>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
<PackageReference Include="Moq" />
|
|
<PackageReference Include="xunit" />
|
|
<PackageReference Include="xunit.runner.visualstudio" />
|
|
<PackageReference Include="xunit.runner.console" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\ApplicationCore\ApplicationCore.csproj" />
|
|
<ProjectReference Include="..\..\src\Web\Web.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="ApplicationCore\Helpers\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|