2020-01-09 13:04:27 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="obj\**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<EmbeddedResource Remove="obj\**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="obj\**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-10-18 08:14:04 +01:00
|
|
|
|
<ProjectReference Include="..\..\src\Umbraco.Abstractions\Umbraco.Abstractions.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\src\Umbraco.Configuration\Umbraco.Configuration.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\src\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj" />
|
2020-01-09 14:24:20 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Faker.Net" Version="1.1.1" />
|
|
|
|
|
|
<PackageReference Include="Moq" Version="4.13.1" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-01-09 13:04:27 +01:00
|
|
|
|
</Project>
|