-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLambdaForums.csproj
33 lines (25 loc) · 1.3 KB
/
LambdaForums.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
33
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<UserSecretsId>aspnet-LambdaForums-932BD960-E0A8-4D51-98B5-D673F83C34F3</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.0.3" PrivateAssets="All" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.0.4" PrivateAssets="All" />
<PackageReference Include="WindowsAzure.Storage" Version="8.4.0" />
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.3" />
<DotNetCliToolReference Include="Microsoft.Extensions.SecretManager.Tools" Version="2.0.2" />
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LambdaForums.Data\LambdaForums.Data.csproj" />
<ProjectReference Include="..\LambdaForums.Service\LambdaForums.Service.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\images\replies\" />
<Folder Include="wwwroot\images\posts\" />
</ItemGroup>
</Project>