2020-07-13 13:38:41 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-01-20 21:01:45 +01:00
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2020-07-13 13:38:41 +02:00
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
|
|
|
|
<DocumentationFile>bin\Release\Umbraco.ModelsBuilder.Embedded.xml</DocumentationFile>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2020-09-02 10:17:33 +02:00
|
|
|
|
<ItemGroup>
|
2021-01-20 21:01:45 +01:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.8.0" />
|
2021-01-22 07:15:30 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="5.0.2" />
|
2020-09-02 10:17:33 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-07-13 13:38:41 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Umbraco.Core\Umbraco.Core.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Umbraco.Web.BackOffice\Umbraco.Web.BackOffice.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-09-09 11:15:44 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
|
<_Parameter1>Umbraco.Tests</_Parameter1>
|
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
|
<_Parameter1>Umbraco.Tests.UnitTests</_Parameter1>
|
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
|
<_Parameter1>Umbraco.Tests.Benchmarks</_Parameter1>
|
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
|
<_Parameter1>Umbraco.Tests.Integration</_Parameter1>
|
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
|
</ItemGroup>
|
2020-07-13 13:38:41 +02:00
|
|
|
|
</Project>
|