This repository has been archived by the owner on Jun 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdcbadge.csproj
47 lines (47 loc) · 2.48 KB
/
dcbadge.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<PackageTargetFallback>portable-net45+win8</PackageTargetFallback>
<UserSecretsId>a5ef9892-f0f6-43f7-9427-6ae328008830</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\lib\jquery-validation-unobtrusive\**" />
<Compile Remove="wwwroot\lib\jquery-validation\**" />
<Compile Remove="wwwroot\lib\jquery\**" />
<Content Remove="wwwroot\lib\jquery-validation-unobtrusive\**" />
<Content Remove="wwwroot\lib\jquery-validation\**" />
<Content Remove="wwwroot\lib\jquery\**" />
<EmbeddedResource Remove="wwwroot\lib\jquery-validation-unobtrusive\**" />
<EmbeddedResource Remove="wwwroot\lib\jquery-validation\**" />
<EmbeddedResource Remove="wwwroot\lib\jquery\**" />
<None Remove="wwwroot\lib\jquery-validation-unobtrusive\**" />
<None Remove="wwwroot\lib\jquery-validation\**" />
<None Remove="wwwroot\lib\jquery\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Properties\PublishProfiles\qcappservice - Web Deploy.pubxml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="1.16.0" />
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="1.1.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="1.1.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.Design" Version="1.1.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="1.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.1" />
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="1.1.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="1.1.0" />
<PackageReference Include="QRCoder" Version="1.2.6" />
<PackageReference Include="Stripe.net" Version="8.1.1" />
<PackageReference Include="System.Data.SqlClient" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\PublishProfiles\" />
<Folder Include="wwwroot\css\" />
<Folder Include="wwwroot\images\" />
<Folder Include="wwwroot\js\" />
<Folder Include="wwwroot\lib\" />
</ItemGroup>
</Project>