* Update gitignore * Move csproj * Update project references * Update solutions * Update build scripts * Tests used to share editorconfig with projects in src * Fix broken tests. * Stop copying around .editorconfig merged root one with linting * csharp_style_expression_bodied -> suggestion * Move StyleCop rulesets to matching directories and update shared build properties * Remove legacy build files, update NuGet.cofig and solution files * Restore myget source * Clean up .gitignore * Update .gitignore * Move new test classes to tests after merge * Gitignore + nuget config * Move new test Co-authored-by: Ronald Barendse <ronald@barend.se>
44 lines
1.6 KiB
XML
44 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
<RootNamespace>Umbraco.Cms.Tests.UnitTests</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">
|
|
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="68.2.0.6" />
|
|
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="68.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Umbraco.PublishedCache.NuCache\Umbraco.PublishedCache.NuCache.csproj" />
|
|
<ProjectReference Include="..\Umbraco.Tests.Common\Umbraco.Tests.Common.csproj" />
|
|
<ProjectReference Include="..\..\src\Umbraco.Web.BackOffice\Umbraco.Web.BackOffice.csproj" />
|
|
<ProjectReference Include="..\..\src\Umbraco.Web.Website\Umbraco.Web.Website.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AngleSharp" Version="0.16.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
|
|
<PackageReference Include="NUnit" Version="3.13.2" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
|
|
<PackageReference Include="System.Data.Odbc" Version="5.0.0" />
|
|
<PackageReference Include="System.Data.OleDb" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="TestHelpers\Assets\UmbracoTraceLog.UNITTEST.20181112.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="umbraco\Data\TEMP\TypesCache" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="umbraco\Data\TEMP\TypesCache\umbraco-types.DESKTOP-EU212M2.hash" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|