-
Notifications
You must be signed in to change notification settings - Fork 0
/
WebApp.csproj
32 lines (27 loc) · 1.05 KB
/
WebApp.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
30
31
32
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.2.4" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\img\" />
</ItemGroup>
<Choose>
<When Condition=" '$(SolutionName)' == 'jsreport.development' ">
<ItemGroup>
<ProjectReference Include="..\jsreport-dotnet-local\jsreport.Local\jsreport.Local.csproj" />
<ProjectReference Include="..\jsreport-dotnet-binary\jsreport.Binary\jsreport.Binary.csproj" />
<ProjectReference Include="..\jsreport-dotnet-aspnetcore\jsreport.AspNetCore\jsreport.AspNetCore.csproj" />
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<PackageReference Include="jsreport.Local" Version="2.0.1" />
<PackageReference Include="jsreport.Binary" Version="2.4.0" />
<PackageReference Include="jsreport.AspNetCore" Version="2.0.1" />
</ItemGroup>
</Otherwise>
</Choose>
</Project>