Remove usage of Microsoft.DotNet.GlobalTools.Sdk

These settings are part of Microsoft.NET.Sdk now
This commit is contained in:
Nate McMaster 2018-09-07 10:04:44 -07:00
Родитель 3b863fb05c
Коммит c81d6542fe
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A778D9601BD78810
4 изменённых файлов: 6 добавлений и 12 удалений

Просмотреть файл

@ -2,10 +2,6 @@
<configuration>
<packageSources>
<clear />
<!--
Restore sources should be defined in build/sources.props.
The only allowed feed here is myget.org/aspnet-tools which is required to workaround https://github.com/Microsoft/msbuild/issues/2914
-->
<add key="myget.org aspnetcore-tools" value="https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json" />
<!-- Restore sources should be defined in build/sources.props. -->
</packageSources>
</configuration>

Просмотреть файл

@ -3,7 +3,7 @@
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<PropertyGroup Label="Package Versions">
<InternalAspNetCoreSdkPackageVersion>2.2.0-preview1-20180821.1</InternalAspNetCoreSdkPackageVersion>
<InternalAspNetCoreSdkPackageVersion>2.2.0-preview1-20180907.3</InternalAspNetCoreSdkPackageVersion>
<MicrosoftApplicationInsightsAspNetCorePackageVersion>2.1.1</MicrosoftApplicationInsightsAspNetCorePackageVersion>
<MicrosoftAspNetCoreAuthenticationCookiesPackageVersion>2.2.0-preview2-35143</MicrosoftAspNetCoreAuthenticationCookiesPackageVersion>
<MicrosoftAspNetCoreDiagnosticsEntityFrameworkCorePackageVersion>2.2.0-preview2-35143</MicrosoftAspNetCoreDiagnosticsEntityFrameworkCorePackageVersion>

Просмотреть файл

@ -1,2 +1,2 @@
version:2.2.0-preview1-20180821.1
commithash:c8d0cc52cd1abb697be24e288ffd54f8fae8bf17
version:2.2.0-preview1-20180907.3
commithash:2315030c7f3de2af0f16cf64502321937b6c4315

Просмотреть файл

@ -1,6 +1,4 @@
<Project>
<Sdk Name="Microsoft.NET.Sdk" />
<Sdk Name="Microsoft.DotNet.GlobalTools.Sdk" />
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views. </Description>
@ -10,7 +8,7 @@
<OutputType>exe</OutputType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackAsTool>true</PackAsTool>
<GenerateToolShims>true</GenerateToolShims>
<PackAsToolShimRuntimeIdentifiers>win-x64;win-x86</PackAsToolShimRuntimeIdentifiers>
<PackageTags>dotnet;aspnet-codegenerator</PackageTags>
</PropertyGroup>