-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
cli commit: d36e5ce Microsoft.NET.Sdk: 1.0.0-preview-62924-09; Microsoft.NET.Sdk.Razor(new): 2.1.0; Microsoft.NET.Sdk.Web: 2.1.300; Microsoft.NET.Sdk.Publish: 2.1.300; Microsoft.NET.Sdk.Web.ProjectSystem: 2.1.300; FSharp.NET.Sdk: 1.0.4-bundled-0100; Microsoft.NET.Build.Extensions: 1.0.0-preview-62924-09; NuGet.Build.Tasks: 4.8.0-preview1.5196; NuGet.Build.Tasks.Pack: 4.8.0-preview1.5196; - Had to add nuget sources from cli's `build/NugetConfigFile.targets`. Versions from: https://github.com/dotnet/cli/blob/d36e5ce1619640f4516c1e89ef20cf52f1a32878/build/DependencyVersions.props
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
OldCLICommitHash=8c937a0db08e56660aca456ac088f2d0e70735ab; | ||
NuGet.Build.Tasks.Pack=4.7.0-rtm.5081; | ||
Microsoft.NET.Sdk=2.1.300-preview3-62804-06; | ||
Microsoft.NET.Sdk.Razor=2.1.0-preview2-30475; | ||
Microsoft.NET.Sdk.Web=2.1.300-preview2-20180406-1563552; | ||
Microsoft.NET.Sdk.Publish=2.1.300-preview2-20180406-1563552; | ||
Microsoft.NET.Sdk.Web.ProjectSystem=2.1.300-preview2-20180406-1563552; | ||
OldCLICommitHash=d36e5ce1619640f4516c1e89ef20cf52f1a32878; | ||
NuGet.Build.Tasks.Pack=4.8.0-preview1.5196; | ||
Microsoft.NET.Sdk=1.0.0-preview-62924-09; | ||
Microsoft.NET.Sdk.Razor=2.1.0; | ||
Microsoft.NET.Sdk.Web=2.1.300; | ||
Microsoft.NET.Sdk.Publish=2.1.300; | ||
Microsoft.NET.Sdk.Web.ProjectSystem=2.1.300; | ||
FSharp.NET.Sdk=1.0.4-bundled-0100; | ||
Microsoft.NET.Build.Extensions=2.1.300-preview3-62804-06; | ||
NuGet.Build.Tasks=4.7.0-rtm.5081; | ||
Microsoft.NET.Build.Extensions=1.0.0-preview-62924-09; | ||
NuGet.Build.Tasks=4.8.0-preview1.5196; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4.7.0-rtm.5081 | ||
4.8.0-preview1.5196 |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
This file is used by the publish/package process of your Web project. You can customize the behavior of this process | ||
by editing this MSBuild file. In order to learn more about this please visit http://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<WebPublishMethod>FileSystem</WebPublishMethod> | ||
<publishUrl>$(OutputPath)Publish\</publishUrl> | ||
<DeleteExistingFiles>False</DeleteExistingFiles> | ||
</PropertyGroup> | ||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<WebPublishMethod>MSDeploy</WebPublishMethod> | ||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration> | ||
<LastUsedPlatform>Any CPU</LastUsedPlatform> | ||
<SkipExtraFilesOnServer>True</SkipExtraFilesOnServer> | ||
<MSDeployPublishMethod>WMSVC</MSDeployPublishMethod> | ||
<EnableMSDeployBackup>True</EnableMSDeployBackup> | ||
</PropertyGroup> | ||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<WebPublishMethod>Package</WebPublishMethod> | ||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration> | ||
<LastUsedPlatform>Any CPU</LastUsedPlatform> | ||
<DesktopBuildPackageLocation>$(OutputPath)Publish\MSDeployPackage.zip</DesktopBuildPackageLocation> | ||
<DeployIisAppPath>Default Web Site</DeployIisAppPath> | ||
</PropertyGroup> | ||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
<!-- | ||
*********************************************************************************************** | ||
Sdk.DefaultItems.targets | ||
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have | ||
created a backup copy. Incorrect changes to this file will make it | ||
impossible to load or build your projects from the command-line or the IDE. | ||
Copyright (c) .NET Foundation. All rights reserved. | ||
*********************************************************************************************** | ||
--> | ||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- | ||
Determine the version (including patch) of ASPNET Core to target. | ||
When targeting ASPNET Core, the TargetFramework is used to specify the major and minor version of the runtime to use. | ||
By default, the patch version is inferred. The general logic is that self-contained apps will target the latest patch | ||
that the SDK knows about, while framework-dependent apps will target the ".0" patch (and roll forward to the latest | ||
patch installed at runtime). | ||
The TargetLatestAspNetCoreRuntimePatch property can be set to true or false to explicitly opt in or out of the logic | ||
to roll forward to the latest patch, regardless of whether the app is self-contained or framework-dependent. The | ||
default value of this property is TargetLatestRuntimePatch set by the dotnet SDK. | ||
The AspNetCoreAppRuntimeFrameworkVersion and AspNetCoreAllRuntimeFrameworkVersion are where the actual versions of the | ||
ASPNET Core runtimes to target is stored. They are the versions that are used in the implicit PackageReference to | ||
Microsoft.AspNetCore.App and Microsoft.AspNetCore.All. The AspNetCoreAppRuntimeFrameworkVersion and | ||
AspNetCoreAllRuntimeFrameworkVersion can also be set explicitly, which will disable all the other logic that | ||
automatically selects the version of .NET Core to target. | ||
The framework version that is written to the runtimeconfig.json file is based on the actual resolved package version | ||
of Microsoft.AspNetCore.App or Microsoft.AspNetCore.All. This is to allow floating the version number (i.e. the user | ||
could set the version to "2.0-*". | ||
--> | ||
<Choose> | ||
<When Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'" > | ||
|
||
<PropertyGroup> | ||
<!-- These properties will allow the latest patch versions to be set in the CLI (via BundledVersions.props) or overridden by tests --> | ||
<DefaultPatchVersionForAspNetCoreAll2_1 Condition="'$(DefaultPatchVersionForAspNetCoreAll2_1)' == ''">2.1.1</DefaultPatchVersionForAspNetCoreAll2_1> | ||
<DefaultPatchVersionForAspNetCoreApp2_1 Condition="'$(DefaultPatchVersionForAspNetCoreApp2_1)' == ''">2.1.1</DefaultPatchVersionForAspNetCoreApp2_1> | ||
</PropertyGroup> | ||
|
||
<!-- Default patch version of .All Framework --> | ||
<PropertyGroup Condition="'$(DefaultAspNetCoreAllPatchVersion)' == ''"> | ||
<DefaultAspNetCoreAllPatchVersion Condition="'$(_TargetFrameworkVersionWithoutV)' == '2.1'">$(DefaultPatchVersionForAspNetCoreAll2_1)</DefaultAspNetCoreAllPatchVersion> | ||
|
||
<!-- If targeting the same pre-release that is bundled with the .NET Core SDK, use the bundled package version | ||
provided by Microsoft.NETCoreSdk.BundledVersions.props --> | ||
<DefaultAspNetCoreAllPatchVersion Condition="'$(DefaultAspNetCoreAllPatchVersion)' == '' AND '$(_TargetFrameworkVersionWithoutV)' == '$(BundledAspNetCoreAllTargetFrameworkVersion)'">$(BundledAspNetCoreAllPackageVersion)</DefaultAspNetCoreAllPatchVersion> | ||
<!-- If not covered by the previous cases use the target framework version for the default patch version --> | ||
<DefaultAspNetCoreAllPatchVersion Condition="'$(DefaultAspNetCoreAllPatchVersion)' == ''">$(_TargetFrameworkVersionWithoutV)</DefaultAspNetCoreAllPatchVersion> | ||
</PropertyGroup> | ||
|
||
<!-- Default patch version of .App Framework --> | ||
<PropertyGroup Condition="'$(DefaultAspNetCoreAppPatchVersion)' == ''"> | ||
<DefaultAspNetCoreAppPatchVersion Condition="'$(_TargetFrameworkVersionWithoutV)' == '2.1'">$(DefaultPatchVersionForAspNetCoreApp2_1)</DefaultAspNetCoreAppPatchVersion> | ||
|
||
<!-- If targeting the same pre-release that is bundled with the .NET Core SDK, use the bundled package version | ||
provided by Microsoft.NETCoreSdk.BundledVersions.props --> | ||
<DefaultAspNetCoreAppPatchVersion Condition="'$(DefaultAspNetCoreAppPatchVersion)' == '' AND '$(_TargetFrameworkVersionWithoutV)' == '$(BundledAspNetCoreAppTargetFrameworkVersion)'">$(BundledAspNetCoreAppPackageVersion)</DefaultAspNetCoreAppPatchVersion> | ||
<!-- If not covered by the previous cases use the target framework version for the default patch version --> | ||
<DefaultAspNetCoreAppPatchVersion Condition="'$(DefaultAspNetCoreAppPatchVersion)' == ''">$(_TargetFrameworkVersionWithoutV)</DefaultAspNetCoreAppPatchVersion> | ||
</PropertyGroup> | ||
|
||
<!-- Latest patch version of .All Framework --> | ||
<PropertyGroup Condition="'$(LatestAspNetCoreAllPatchVersion)' == ''"> | ||
<!-- Placeholder for setting latest patch version using the bundled version from CLI for previous TFMs, this will not apply until 2.2 --> | ||
<!-- <LatestAspNetCoreAllPatchVersion Condition="'$(_TargetFrameworkVersionWithoutV)' == '2.1'">$(LatestPatchVersionForAspNetCoreAll2_1)</LatestAspNetCoreAllPatchVersion> --> | ||
|
||
<!-- If targeting the same release that is bundled with the .NET Core SDK, use the bundled package version | ||
provided by Microsoft.NETCoreSdk.BundledVersions.props --> | ||
<LatestAspNetCoreAllPatchVersion Condition="'$(_TargetFrameworkVersionWithoutV)' == '$(BundledAspNetCoreAllTargetFrameworkVersion)'">$(BundledAspNetCoreAllPackageVersion)</LatestAspNetCoreAllPatchVersion> | ||
<!-- If not covered by the previous cases use the target framework version for the latest patch version --> | ||
<LatestAspNetCoreAllPatchVersion Condition="'$(LatestAspNetCoreAllPatchVersion)' == ''">$(_TargetFrameworkVersionWithoutV)</LatestAspNetCoreAllPatchVersion> | ||
</PropertyGroup> | ||
|
||
<!-- Latest patch version of .App Framework --> | ||
<PropertyGroup Condition="'$(LatestAspNetCoreAppPatchVersion)' == ''"> | ||
<!-- Placeholder for setting latest patch version using the bundled version from CLI for previous TFMs, this will not apply until 2.2 --> | ||
<!-- <LatestAspNetCoreAppPatchVersion Condition="'$(_TargetFrameworkVersionWithoutV)' == '2.1'">$(LatestPatchVersionForAspNetCoreApp2_1)</LatestAspNetCoreAppPatchVersion> --> | ||
|
||
<!-- If targeting the same release that is bundled with the .NET Core SDK, use the bundled package version | ||
provided by Microsoft.NETCoreSdk.BundledVersions.props --> | ||
<LatestAspNetCoreAppPatchVersion Condition="'$(_TargetFrameworkVersionWithoutV)' == '$(BundledAspNetCoreAppTargetFrameworkVersion)'">$(BundledAspNetCoreAppPackageVersion)</LatestAspNetCoreAppPatchVersion> | ||
<!-- If not covered by the previous cases use the target framework version for the latest patch version --> | ||
<LatestAspNetCoreAppPatchVersion Condition="'$(LatestAspNetCoreAppPatchVersion)' == ''">$(_TargetFrameworkVersionWithoutV)</LatestAspNetCoreAppPatchVersion> | ||
</PropertyGroup> | ||
|
||
<!-- Determine the default values of TargetLatestAspNetCoreRuntimePatch --> | ||
<PropertyGroup Condition="'$(TargetLatestAspNetCoreRuntimePatch)' == ''"> | ||
<TargetLatestAspNetCoreRuntimePatch>false</TargetLatestAspNetCoreRuntimePatch> | ||
<TargetLatestAspNetCoreRuntimePatch Condition="'$(SelfContained)' == 'true'">true</TargetLatestAspNetCoreRuntimePatch> | ||
<TargetLatestAspNetCoreRuntimePatch Condition="'$(TargetLatestRuntimePatch)' != ''">$(TargetLatestRuntimePatch)</TargetLatestAspNetCoreRuntimePatch> | ||
</PropertyGroup> | ||
|
||
<!-- Set the framework version of .All Framework --> | ||
<PropertyGroup Condition="'$(AspNetCoreAllRuntimeFrameworkVersion)' == ''"> | ||
<AspNetCoreAllRuntimeFrameworkVersion>$(DefaultAspNetCoreAllPatchVersion)</AspNetCoreAllRuntimeFrameworkVersion> | ||
<AspNetCoreAllRuntimeFrameworkVersion Condition="'$(TargetLatestAspNetCoreRuntimePatch)' == 'true'">$(LatestAspNetCoreAllPatchVersion)</AspNetCoreAllRuntimeFrameworkVersion> | ||
</PropertyGroup> | ||
|
||
<!-- Set the framework version of .App Framework --> | ||
<PropertyGroup Condition="'$(AspNetCoreAppRuntimeFrameworkVersion)' == ''"> | ||
<AspNetCoreAppRuntimeFrameworkVersion >$(DefaultAspNetCoreAppPatchVersion)</AspNetCoreAppRuntimeFrameworkVersion> | ||
<AspNetCoreAppRuntimeFrameworkVersion Condition="'$(TargetLatestAspNetCoreRuntimePatch)' == 'true'">$(LatestAspNetCoreAppPatchVersion)</AspNetCoreAppRuntimeFrameworkVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<_AspNetCoreAllPackageName>Microsoft.AspNetCore.All</_AspNetCoreAllPackageName> | ||
<_AspNetCoreAppPackageName>Microsoft.AspNetCore.App</_AspNetCoreAppPackageName> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- Determine if ASPNET metapackage references without version numbers exist --> | ||
<_AspNetCoreAllReference Include="@(PackageReference->WithMetadataValue('Identity', '$(_AspNetCoreAllPackageName)'))" /> | ||
<_ExplicitAspNetCoreAllReference Include="@(_AspNetCoreAllReference->HasMetadata('Version'))" /> | ||
<_AspNetCoreAppReference Include="@(PackageReference->WithMetadataValue('Identity', '$(_AspNetCoreAppPackageName)'))" /> | ||
<_ExplicitAspNetCoreAppReference Include="@(_AspNetCoreAppReference->HasMetadata('Version'))" /> | ||
|
||
<!-- Update implicit ASPNET metapackage references if needed --> | ||
<PackageReference | ||
Update="$(_AspNetCoreAllPackageName)" | ||
Condition="'@(_AspNetCoreAllReference->Count())' == '1' AND '@(_ExplicitAspNetCoreAllReference->Count())' == '0'"> | ||
<Version>$(AspNetCoreAllRuntimeFrameworkVersion)</Version> | ||
<IsImplicitlyDefined>true</IsImplicitlyDefined> | ||
<PrivateAssets>All</PrivateAssets> | ||
<Publish>true</Publish> | ||
</PackageReference> | ||
<PackageReference | ||
Update="$(_AspNetCoreAppPackageName)" | ||
Condition="'@(_AspNetCoreAppReference->Count())' == '1' AND '@(_ExplicitAspNetCoreAppReference->Count())' == '0'"> | ||
<Version>$(AspNetCoreAppRuntimeFrameworkVersion)</Version> | ||
<IsImplicitlyDefined>true</IsImplicitlyDefined> | ||
<PrivateAssets>All</PrivateAssets> | ||
<Publish>true</Publish> | ||
</PackageReference> | ||
|
||
<!-- Update list of implicit platform packages which require version verification --> | ||
<ExpectedPlatformPackages | ||
Include="$(_AspNetCoreAllPackageName)" | ||
ExpectedVersion="$(AspNetCoreAllRuntimeFrameworkVersion)" | ||
Condition="'@(_AspNetCoreAllReference->Count())' == '1' AND '@(_ExplicitAspNetCoreAllReference->Count())' == '0'"/> | ||
<ExpectedPlatformPackages | ||
Include="$(_AspNetCoreAppPackageName)" | ||
ExpectedVersion="$(AspNetCoreAppRuntimeFrameworkVersion)" | ||
Condition="'@(_AspNetCoreAppReference->Count())' == '1' AND '@(_ExplicitAspNetCoreAppReference->Count())' == '0'"/> | ||
</ItemGroup> | ||
|
||
</When> | ||
</Choose> | ||
</Project> |