Last active
May 7, 2017 17:40
-
-
Save sonicparke/a18b5fc687edb5788a8b66d5d78061c7 to your computer and use it in GitHub Desktop.
Setting Up the Angular CLI in Visual Studio for Mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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