-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathAPI.csproj
More file actions
44 lines (39 loc) · 1.53 KB
/
Copy pathAPI.csproj
File metadata and controls
44 lines (39 loc) · 1.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<ItemGroup>
<ProjectReference Include="..\Common\Common.csproj" />
</ItemGroup>
<!-- Props -->
<ItemGroup>
<!-- Expose API internals to IntegrationTest project -->
<InternalsVisibleTo Include="$(AssemblyName).Tests.Integration" />
</ItemGroup>
<!-- NuGet packages -->
<ItemGroup>
<PackageReference Include="AspNet.Security.OAuth.Discord" />
<PackageReference Include="Fluid.Core" />
<PackageReference Include="MailKit" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Twitter" />
</ItemGroup>
<!-- Files to copy -->
<ItemGroup>
<!-- Dev cert included on publish -->
<None Include="devcert.pfx" CopyToPublishDirectory="Always" />
</ItemGroup>
<!-- Pre-rendered Liquid email templates (committed to repo, not built at compile time).
Re-render with `pnpm export` in email-templates/ when you change a .tsx source. -->
<ItemGroup>
<Content Include="SmtpTemplates\*.liquid">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
<!-- Git stuff -->
<Target Name="SetHash" AfterTargets="InitializeSourceControlInformation">
<ItemGroup>
<AssemblyAttribute Include="OpenShock.Internal.Common.Utils.GitHashAttribute">
<_Parameter1>$(SourceRevisionId)</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Target>
</Project>