AutoMigrationCreator: fixed project type

This commit is contained in:
pavelbannov 2022-07-15 13:14:09 +03:00
parent 317a72898a
commit b72f441029
3 changed files with 13 additions and 8 deletions

View File

@ -1,9 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<StartupObject>AutoMigrationCreator.Program</StartupObject>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>

View File

@ -24,12 +24,8 @@
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
global using System;
global using System.Collections.Generic;
global using System.Configuration;
global using System.IO;
global using System.Linq;
global using System.Reflection;
global using System.Configuration;
global using System.Reflection;
global using System.Text.RegularExpressions;
global using ASC.Core.Common.EF;
@ -37,7 +33,6 @@ global using ASC.Core.Common.EF;
global using Autofac;
global using AutoMigrationCreator.Core;
global using AutoMigrationCreator.Utils;
global using Microsoft.Build.Construction;
global using Microsoft.EntityFrameworkCore;

View File

@ -0,0 +1,8 @@
{
"profiles": {
"AutoMigrationCreator": {
"commandName": "Project",
"launchBrowser": false
}
}
}