WebFileServ.Test.UnitTests.csproj

38 lines | 1.366 kB Blame History Raw Download
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFramework>netcoreapp3.1</TargetFramework>

    <IsPackable>false</IsPackable>
  </PropertyGroup>

  <ItemGroup>
    <None Remove="appsettings.json" />
  </ItemGroup>

  <ItemGroup>
    <Content Include="appsettings.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
      <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
      <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
    </Content>
  </ItemGroup>

  <ItemGroup>
    <PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
    <PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
    <PackageReference Include="MSTest.TestFramework" Version="2.1.0" />
    <PackageReference Include="coverlet.collector" Version="1.2.0" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\WebFileServ.Model.BLL\WebFileServ.Model.BLL.csproj" />
    <ProjectReference Include="..\WebFileServ.Model.DAL\WebFileServ.Model.DAL.csproj" />
    <ProjectReference Include="..\WebFileServ.Model.DI\WebFileServ.Model.DI.csproj" />
    <ProjectReference Include="..\WebFileServ.Model.Entities\WebFileServ.Model.Entities.csproj" />
    <ProjectReference Include="..\WebFileServ.WebApp\WebFileServ.WebApp.csproj" />
  </ItemGroup>

</Project>