Skip to content

Commit 8c200a0

Browse files
committed
[WIP] get templates working
1 parent 5e832b3 commit 8c200a0

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

src/Components/Blazor/BlazorExtension/src/Microsoft.VisualStudio.BlazorExtension.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<CopyBuildOutputToOutputDirectory>true</CopyBuildOutputToOutputDirectory>
7878
<CopyOutputSymbolsToOutputDirectory>true</CopyOutputSymbolsToOutputDirectory>
7979
</PropertyGroup>
80-
<Target Name="PreCreateVsixContainer" BeforeTargets="CreateVsixContainer">
80+
<Target Name="PreCreateVsixContainer" BeforeTargets="GetVsixSourceItems">
8181
<ItemGroup>
8282
<VSIXSourceItem Include="$(ArtifactsShippingPackagesDir)Microsoft.AspNetCore.Blazor.Templates.*.nupkg">
8383
<VSIXSubPath>ProjectTemplates\</VSIXSubPath>

src/Components/Blazor/Templates/src/content/BlazorHosted-CSharp/.template.config.src/template.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@
5959
"datatype": "choice",
6060
"choices": [
6161
{
62-
"choice": "netcoreapp2.1",
63-
"description": "Target netcoreapp2.1"
62+
"choice": "netcoreapp3.0",
63+
"description": "Target netcoreapp3.0"
6464
}
6565
],
66-
"replaces": "netcoreapp2.1",
67-
"defaultValue": "netcoreapp2.1"
66+
"replaces": "netcoreapp3.0",
67+
"defaultValue": "netcoreapp3.0"
6868
},
6969
"HostIdentifier": {
7070
"type": "bind",

src/Components/Blazor/Templates/src/content/BlazorLibrary-CSharp/.template.config.src/template.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
"datatype": "choice",
3333
"choices": [
3434
{
35-
"choice": "netcoreapp2.1",
36-
"description": "Target netcoreapp2.1"
35+
"choice": "netcoreapp3.0",
36+
"description": "Target netcoreapp3.0"
3737
}
3838
],
39-
"replaces": "netcoreapp2.1",
40-
"defaultValue": "netcoreapp2.1"
39+
"replaces": "netcoreapp3.0",
40+
"defaultValue": "netcoreapp3.0"
4141
},
4242
"HostIdentifier": {
4343
"type": "bind",

src/Components/Blazor/Templates/src/content/BlazorStandalone-CSharp/.template.config.src/template.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
"datatype": "choice",
3333
"choices": [
3434
{
35-
"choice": "netcoreapp2.1",
36-
"description": "Target netcoreapp2.1"
35+
"choice": "netcoreapp3.0",
36+
"description": "Target netcoreapp3.0"
3737
}
3838
],
39-
"replaces": "netcoreapp2.1",
40-
"defaultValue": "netcoreapp2.1"
39+
"replaces": "netcoreapp3.0",
40+
"defaultValue": "netcoreapp3.0"
4141
},
4242
"HostIdentifier": {
4343
"type": "bind",

0 commit comments

Comments
 (0)