-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAurionCal.Api.csproj
More file actions
58 lines (52 loc) · 2.53 KB
/
Copy pathAurionCal.Api.csproj
File metadata and controls
58 lines (52 loc) · 2.53 KB
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>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<PreserveCompilationContext>true</PreserveCompilationContext>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.16.0" />
<PackageReference Include="Azure.Security.KeyVault.Keys" Version="4.8.0" />
<PackageReference Include="FastEndpoints" Version="7.0.1" />
<PackageReference Include="FastEndpoints.Security" Version="7.0.1" />
<PackageReference Include="FastEndpoints.Swagger" Version="7.0.1" />
<PackageReference Include="Ical.Net" Version="5.1.1" />
<PackageReference Include="MailKitSimplified.Sender" Version="2.11.16" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.9">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Mjml.Net" Version="4.11.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
<PackageReference Include="RazorLight" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Migrations\\" />
</ItemGroup>
<ItemGroup>
<Compile Remove="AurionCal.Tests/**" />
<Content Remove="AurionCal.Tests/**" />
<None Remove="AurionCal.Tests/**" />
<EmbeddedResource Remove="AurionCal.Tests/**" />
</ItemGroup>
<ItemGroup>
<!--
RazorLight templates are compiled at runtime, not at build time.
Removing .cshtml files from Content prevents the SDK Razor source generator
from picking them up, which would conflict with RazorLight's own Razor engine
and produce duplicate assembly attributes (CS0579) and CS8785 warnings.
-->
<Content Remove="Templates\**\*.cshtml" />
<None Include="Templates\**\*.cshtml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</None>
<None Update="Templates\**\*.cs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</None>
</ItemGroup>
</Project>