-
Notifications
You must be signed in to change notification settings - Fork 318
/
Copy pathCustomerSite.csproj
58 lines (51 loc) · 2.36 KB
/
CustomerSite.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
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Authors>Microsoft.Marketplace</Authors>
<Company>Microsoft</Company>
<Product>Marketplace.SaaS.Accelerator</Product>
<AssemblyName>CustomerSite</AssemblyName>
<RootNamespace>Marketplace.SaaS.Accelerator.CustomerSite</RootNamespace>
<Version>8.0.0</Version>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Context\**" />
<Compile Remove="wwwroot\lib\bootstrap\4.4.1\**" />
<Compile Remove="wwwroot\lib\bootstrap\dist\**" />
<Content Remove="Context\**" />
<Content Remove="wwwroot\lib\bootstrap\4.4.1\**" />
<Content Remove="wwwroot\lib\bootstrap\dist\**" />
<EmbeddedResource Remove="Context\**" />
<EmbeddedResource Remove="wwwroot\lib\bootstrap\4.4.1\**" />
<EmbeddedResource Remove="wwwroot\lib\bootstrap\dist\**" />
<None Remove="Context\**" />
<None Remove="wwwroot\lib\bootstrap\4.4.1\**" />
<None Remove="wwwroot\lib\bootstrap\dist\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.1" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.10.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.10.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Services\Services.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\favicon.ico">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\PublishProfiles\" />
<Folder Include="Properties\ServiceDependencies\" />
</ItemGroup>
</Project>