* Updated nuget packages + added migrations for OpenIddict - Currently can only be executed using unatttended installs * Added new Premigration concept - Migrations that always runs unattended before other migrations * Apply suggestions from code review Co-authored-by: Nikolaj Geisle <70372949+Zeegaan@users.noreply.github.com> --------- Co-authored-by: Zeegaan <skrivdetud@gmail.com> Co-authored-by: Nikolaj Geisle <70372949+Zeegaan@users.noreply.github.com>
18 lines
585 B
XML
18 lines
585 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<IsPackable>false</IsPackable>
|
|
<EnablePackageValidation>false</EnablePackageValidation>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommandLineParser" VersionOverride="2.9.1" />
|
|
<PackageReference Include="NJsonSchema" VersionOverride="11.0.0" />
|
|
<PackageReference Include="NJsonSchema.NewtonsoftJson" VersionOverride="11.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Umbraco.Core\Umbraco.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|