* Moved to centralized nuget packages * Handle JsonSchema * Change PackageReference to PackageVersion * Opt out of central package management for mangement api (at least for versions less than 14) and the UI project * ManagePackageVersionsCentrally = false * Change folder acceptance tests are build, to avoid reading the test Directory.Packages.props * Change folder acceptance tests are build, to avoid reading the test Directory.Packages.props * change working directory * workingDirectory * Force the template to use local nuget packages * Force the template to use local nuget packages * clean up * added wait on * added wait on
24 lines
959 B
XML
24 lines
959 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<IsPackable>false</IsPackable>
|
|
<EnablePackageValidation>false</EnablePackageValidation>
|
|
<GenerateProgramFile>false</GenerateProgramFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" />
|
|
<PackageReference Include="Moq" />
|
|
<PackageReference Include="System.Data.DataSetExtensions" />
|
|
<PackageReference Include="System.Reflection.Emit" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Umbraco.Cms.Persistence.SqlServer\Umbraco.Cms.Persistence.SqlServer.csproj" />
|
|
<ProjectReference Include="..\..\src\Umbraco.Core\Umbraco.Core.csproj" />
|
|
<ProjectReference Include="..\..\src\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|