我正在尝试通过安装starcounter将starcounter与visual studio 2013集成,但是这并没有发生,在集成了如何使用starcounter创建一个简单的项目后,如何与visual集成。感谢高级。
答案 0 :(得分:1)
Starcounter 2.3及更新版本不再支持Visual Studio 2013,如https://starcounter.io/download/页面所示("系统要求")。目前支持VS 2015和2017。
答案 1 :(得分:0)
我认为唯一需要整合的是从模板创建项目。构建由MSBuild完成,所以我认为VS版本不会影响它。
尝试复制现有项目(例如https://github.com/StarcounterApps/KitchenSink)并根据自己的喜好进行更改。您需要执行一些手动步骤来添加新页面:
<ItemGroup>
<TypedJSON Include="RadioPage.json">
<Generator>MsBuild:Compile</Generator>
</TypedJSON>
</ItemGroup>
<Compile Include="RadioPage.json.cs">
<DependentUpon>RadioPage.json</DependentUpon>
</Compile>
可能有一种方法可以用较少的手动方式执行此操作,但我不知道如何在VS中添加依赖文件
答案 2 :(得分:0)
在docs中,您可以看到Starcounter模板的外观和读取方式,了解如何在没有Visual Studio或扩展程序的情况下使用Starcounter。
简而言之,使用Starcounter与Visual Studio 2013没有问题,但是,您将错过扩展程序带来的一些好处。