mirror of
https://github.com/sphildreth/roadie
synced 2024-11-22 20:23:16 +00:00
29 lines
918 B
XML
29 lines
918 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Images\" />
|
|
<Folder Include="wwwroot\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Mapster" Version="3.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.1.5" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OData" Version="7.0.1" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Roadie.Api.Data\Roadie.Api.Data.csproj" />
|
|
<ProjectReference Include="..\RoadieLibrary\Roadie.Library.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|