Skip to content

Instantly share code, notes, and snippets.

@sonicparke
Last active May 7, 2017 17:40
Show Gist options
  • Save sonicparke/a18b5fc687edb5788a8b66d5d78061c7 to your computer and use it in GitHub Desktop.
Save sonicparke/a18b5fc687edb5788a8b66d5d78061c7 to your computer and use it in GitHub Desktop.
Setting Up the Angular CLI in Visual Studio for Mac
<Project Sdk=”Microsoft.NET.Sdk.Web”>
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<TypeScriptCompilerBlocked>true</TypeScriptCompilerBlocked>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.1" />
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment