-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModulr.csproj
45 lines (38 loc) · 1.66 KB
/
Modulr.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Content Include="RestrictedViews\js\admin.js" />
<Content Include="RestrictedViews\views\admin.html" />
<Content Include="StaticViews\**\*.*" Exclude="StaticViews\img\manifest.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Remove="TestingIncluded\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.0.123" />
<PackageReference Include="Google.Apis.Auth" Version="1.57.0" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.46" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="6.0.11" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.11" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
<PackageReference Include="MySql.Data" Version="8.0.31" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
</ItemGroup>
<ItemGroup>
<Folder Include="RestrictedViews\css" />
<Folder Include="RestrictedViews\img" />
<Folder Include="TestingSource\hidden" />
</ItemGroup>
<ItemGroup>
<Compile Remove="TestingIncluded\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="TestingIncluded\**" />
</ItemGroup>
<ItemGroup>
<None Remove="TestingIncluded\**" />
</ItemGroup>
</Project>