Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <Project Sdk="Microsoft.NET.Sdk.Web" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2.  
  3. <PropertyGroup>
  4. <TargetFramework>netcoreapp1.1</TargetFramework>
  5. </PropertyGroup>
  6.  
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  8. <DocumentationFile></DocumentationFile>
  9. </PropertyGroup>
  10.  
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  12. <DocumentationFile></DocumentationFile>
  13. </PropertyGroup>
  14.  
  15. <ItemGroup>
  16. </ItemGroup>
  17.  
  18. <ItemGroup>
  19. <Folder Include="wwwroot\" />
  20. <Folder Include="Models\" />
  21. <Folder Include="Interfaces\" />
  22. <Folder Include="Services\" />
  23. </ItemGroup>
  24.  
  25. <ItemGroup>
  26. <PackageReference Include="Microsoft.AspNetCore" />
  27. <PackageReference Include="Microsoft.AspNetCore.Mvc" />
  28. <PackageReference Include="Microsoft.Extensions.Logging.Debug"/>
  29. <PackageReference Include="Swashbuckle.AspNetCore"/>
  30. <PackageReference Include="Autofac.Extensions.DependencyInjection"/>
  31. </ItemGroup>
  32.  
  33. <ItemGroup>
  34. <ProjectReference Include="..\Automaton.Evaluator\Automaton.Evaluator.csproj" />
  35. </ItemGroup>
  36. </Project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement