-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStoryEstimator.Showcase.csproj
29 lines (23 loc) · 1.02 KB
/
StoryEstimator.Showcase.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.5" />
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.0.0" />
<PackageReference Include="Syncfusion.EJ2.AspNet.Core" Version="19.3.0.43" />
<PackageReference Include="Syncfusion.XlsIO.Net.Core" Version="19.3.0.43" />
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.2" />
</ItemGroup>
<ItemGroup>
<Compile Remove="wwwroot\**\*;node_modules;runtimeconfig.template.json;" />
<None Update="wwwroot\**\*">
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</None>
<None Include="Controllers\**" CopyToOutputDirectory="Always" />
<None Include="Views\**" CopyToOutputDirectory="Always" />
</ItemGroup>
</Project>