-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
35 lines (33 loc) · 1.63 KB
/
Directory.Build.props
File metadata and controls
35 lines (33 loc) · 1.63 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
<Project>
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<!-- Package Metadata -->
<!-- Automatically transform package IDs to avoid Resolver.* prefix conflict -->
<!-- Converts "Resolver.Athena.X" to "ResolverAthena.X" -->
<PackageId>$(MSBuildProjectName.Replace('Resolver.Athena', 'ResolverAthena'))</PackageId>
<Authors>Crisp Thinking Group Ltd</Authors>
<Company>Crisp Thinking Group Ltd</Company>
<Copyright>Copyright (c) 2025 Crisp Thinking Group Ltd</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/crispthinking/athena-dotnet-client</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/crispthinking/athena-dotnet-client</PackageProjectUrl>
<PackageTags>athena;csam;detection;resolver;image-classification</PackageTags>
<Description>Dotnet client library for interacting with the Athena API (Resolver Unknown CSAM Detection)</Description>
</PropertyGroup>
<!-- Include README.md in all packages -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="GitVersion.MsBuild">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>