Skip to content
This repository was archived by the owner on Nov 22, 2018. It is now read-only.

Commit 2797101

Browse files
author
Nate McMaster
committed
Downgrade to stable packages
1 parent acb8382 commit 2797101

File tree

7 files changed

+15
-11
lines changed

7 files changed

+15
-11
lines changed

build/common.props

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<Project ToolsVersion="15.0">
1+
<Project>
2+
<Import Project="dependencies.props" />
23
<Import Project="..\version.props" />
34

45
<PropertyGroup>
@@ -8,8 +9,6 @@
89
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Key.snk</AssemblyOriginatorKeyFile>
910
<SignAssembly>true</SignAssembly>
1011
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
11-
<NetCoreAppImplicitPackageVersion>1.2.0-*</NetCoreAppImplicitPackageVersion>
12-
<NetStandardImplicitPackageVersion>1.6.2-*</NetStandardImplicitPackageVersion>
1312
<VersionSuffix Condition="'$(VersionSuffix)'!='' AND '$(BuildNumber)' != ''">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
1413
</PropertyGroup>
1514

@@ -21,4 +20,4 @@
2120
<PackageReference Include="NETStandard.Library" Version="$(NetStandardImplicitPackageVersion)" />
2221
</ItemGroup>
2322

24-
</Project>
23+
</Project>

build/dependencies.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<Project>
2+
<PropertyGroup>
3+
<NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
4+
<CoreFxVersion>4.3.0</CoreFxVersion>
5+
</PropertyGroup>
6+
</Project>

samples/StaticFileSample/StaticFileSample.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web" ToolsVersion="15.0">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
44
<TargetFrameworks>net451;netcoreapp1.1</TargetFrameworks>
55
<OutputType>Exe</OutputType>
66
<RuntimeIdentifier Condition="'$(TargetFramework)'!='netcoreapp1.1'">win7-x64</RuntimeIdentifier>
7-
<NetCoreAppImplicitPackageVersion>1.2.0-*</NetCoreAppImplicitPackageVersion>
87
</PropertyGroup>
98

109
<ItemGroup>

src/Microsoft.AspNetCore.StaticFiles/Microsoft.AspNetCore.StaticFiles.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<Import Project="..\..\build\common.props" />
44

test/Microsoft.AspNetCore.StaticFiles.FunctionalTests/Microsoft.AspNetCore.StaticFiles.FunctionalTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<Import Project="..\..\build\common.props" />
44

test/Microsoft.AspNetCore.StaticFiles.Tests/Microsoft.AspNetCore.StaticFiles.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<Import Project="..\..\build\common.props" />
44

version.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- This file may be overwritten by automation. Only values allowed here are VersionPrefix and VersionSuffix. -->
2-
<Project ToolsVersion="15.0">
2+
<Project>
33
<PropertyGroup>
44
<VersionPrefix>1.2.0</VersionPrefix>
55
<VersionSuffix>preview1</VersionSuffix>
66
</PropertyGroup>
7-
</Project>
7+
</Project>

0 commit comments

Comments
 (0)