Skip to content

Commit cb0deb6

Browse files
committed
[WIP] get templates working
1 parent 6243225 commit cb0deb6

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
@@ -76,7 +76,7 @@
7676
<CopyBuildOutputToOutputDirectory>true</CopyBuildOutputToOutputDirectory>
7777
<CopyOutputSymbolsToOutputDirectory>true</CopyOutputSymbolsToOutputDirectory>
7878
</PropertyGroup>
79-
<Target Name="PreCreateVsixContainer" BeforeTargets="CreateVsixContainer">
79+
<Target Name="PreCreateVsixContainer" BeforeTargets="GetVsixSourceItems">
8080
<ItemGroup>
8181
<VSIXSourceItem Include="$(ProductPackageOutputPath)Microsoft.AspNetCore.Blazor.Templates.*.nupkg">
8282
<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)