-
Notifications
You must be signed in to change notification settings - Fork 1
/
RazorStripe.csproj
52 lines (45 loc) · 2.07 KB
/
RazorStripe.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
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Authors>PoisnFang</Authors>
<Company>Dragon Mastery LLC</Company>
<Description>Razor Pages with Stripe</Description>
<Copyright>Dragon Mastery LLC</Copyright>
</PropertyGroup>
<ItemGroup>
<Content Remove="bundleconfig.json" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="bundleconfig.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="3.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="3.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.2" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.1" PrivateAssets="All" />
<PackageReference Include="Stripe.net" Version="35.3.0" />
</ItemGroup>
<ItemGroup>
<None Include="bundleconfig.json" />
<None Include="wwwroot\lib\fontawesome\js\all.js" />
<None Include="wwwroot\lib\fontawesome\js\all.min.js" />
<None Include="wwwroot\lib\fontawesome\js\brands.js" />
<None Include="wwwroot\lib\fontawesome\js\brands.min.js" />
<None Include="wwwroot\lib\fontawesome\js\fontawesome.js" />
<None Include="wwwroot\lib\fontawesome\js\fontawesome.min.js" />
<None Include="wwwroot\lib\fontawesome\js\regular.js" />
<None Include="wwwroot\lib\fontawesome\js\regular.min.js" />
<None Include="wwwroot\lib\fontawesome\js\solid.js" />
<None Include="wwwroot\lib\fontawesome\js\solid.min.js" />
<None Include="wwwroot\lib\fontawesome\js\v4-shims.js" />
<None Include="wwwroot\lib\fontawesome\js\v4-shims.min.js" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\images\" />
</ItemGroup>
</Project>