Show templates in VS for ASP.NET 2.0 and 2.1
This commit is contained in:
parent
8485e2ea10
commit
39238d1884
|
|
@ -73,10 +73,14 @@
|
||||||
{
|
{
|
||||||
"choice": "netcoreapp2.0",
|
"choice": "netcoreapp2.0",
|
||||||
"description": "Target netcoreapp2.0"
|
"description": "Target netcoreapp2.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"choice": "netcoreapp2.1",
|
||||||
|
"description": "Target netcoreapp2.1"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"replaces": "netcoreapp2.0",
|
"replaces": "netcoreapp2.1",
|
||||||
"defaultValue": "netcoreapp2.0"
|
"defaultValue": "netcoreapp2.1"
|
||||||
},
|
},
|
||||||
"HostIdentifier": {
|
"HostIdentifier": {
|
||||||
"type": "bind",
|
"type": "bind",
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,17 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
|
|
||||||
<!-- This custom package feed is required only when using nightly builds of Blazor -->
|
<!-- This custom package feed is required only when using nightly builds of Blazor -->
|
||||||
<RestoreSources>$(RestoreSources);https://dotnet.myget.org/f/blazor-dev/api/v3/index.json</RestoreSources>
|
<RestoreSources>$(RestoreSources);https://dotnet.myget.org/f/blazor-dev/api/v3/index.json</RestoreSources>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup Condition="'$(Framework)' == 'netcoreapp2.1'">
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.0-preview1-final" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Blazor.Server" Version="0.2.0-preview1-10189" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup Condition="'$(Framework)' == 'netcoreapp2.0'">
|
||||||
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.0" />
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.0" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Blazor.Server" Version="0.2.0-preview1-10189" />
|
<PackageReference Include="Microsoft.AspNetCore.Blazor.Server" Version="0.2.0-preview1-10189" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -34,10 +34,14 @@
|
||||||
{
|
{
|
||||||
"choice": "netcoreapp2.0",
|
"choice": "netcoreapp2.0",
|
||||||
"description": "Target netcoreapp2.0"
|
"description": "Target netcoreapp2.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"choice": "netcoreapp2.1",
|
||||||
|
"description": "Target netcoreapp2.1"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"replaces": "netcoreapp2.0",
|
"replaces": "netcoreapp2.1",
|
||||||
"defaultValue": "netcoreapp2.0"
|
"defaultValue": "netcoreapp2.1"
|
||||||
},
|
},
|
||||||
"HostIdentifier": {
|
"HostIdentifier": {
|
||||||
"type": "bind",
|
"type": "bind",
|
||||||
|
|
|
||||||
|
|
@ -34,10 +34,14 @@
|
||||||
{
|
{
|
||||||
"choice": "netcoreapp2.0",
|
"choice": "netcoreapp2.0",
|
||||||
"description": "Target netcoreapp2.0"
|
"description": "Target netcoreapp2.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"choice": "netcoreapp2.1",
|
||||||
|
"description": "Target netcoreapp2.1"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"replaces": "netcoreapp2.0",
|
"replaces": "netcoreapp2.1",
|
||||||
"defaultValue": "netcoreapp2.0"
|
"defaultValue": "netcoreapp2.1"
|
||||||
},
|
},
|
||||||
"HostIdentifier": {
|
"HostIdentifier": {
|
||||||
"type": "bind",
|
"type": "bind",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue