为什么没有选项指定将哪个版本的Angular与dotnet核心angular模板一起使用。
我一直在使用此命令#include <iostream>
#include <string>
#include <vector>
using namespace std;
class Test
{
public:
struct NumStr
{
int num;
string str;
};
Test(vector<int> v1,vector<NumStr> v2) : _v1(v1),_v2(v2) {}
vector<int> _v1;
vector<NumStr> _v2;
};
int main()
{
Test t={ {1,2,3}, {{1,"one"}, {2,"two"}, {3,"three"}} };
cout << t._v1[1] << " " << t._v2[1].num << " " << t._v2[1].str << endl;
return 0;
}
,但是此命令正在使用旧版本的Angular生成模板。
我想用dotnet core web api创建一个角度为6的项目。
请让我知道在dotnet核心中是否存在用于指定Angular 6模板的选项或方法
答案 0 :(得分:0)
运行dotnet new --install Microsoft.DotNet.Web.Spa.ProjectTemplates :: 2.0.0-rc1-final