-
Notifications
You must be signed in to change notification settings - Fork 0
/
senatinet-asp.csproj
44 lines (37 loc) · 1.43 KB
/
senatinet-asp.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>senatinet_asp</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Remove="wwwroot\js\login\design.js" />
<Content Remove="wwwroot\js\post\comment.js" />
<Content Remove="wwwroot\js\post\like.js" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\img\banners\" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\js\login\design.js" />
<None Include="wwwroot\js\post\comment.js" />
<None Include="wwwroot\js\post\like.js" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FirebaseAdmin" Version="3.0.0" />
<PackageReference Include="Google.Cloud.Firestore" Version="3.7.0" />
<PackageReference Include="Microsoft.AspNetCore.Session" Version="2.2.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.2" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\js\login\loginGoogle.js">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Update="wwwroot\js\login\signUp.js">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
</Project>