-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
29 lines (27 loc) · 1.28 KB
/
Directory.Build.props
File metadata and controls
29 lines (27 loc) · 1.28 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
<Project>
<PropertyGroup>
<NoWarn>$(NoWarn);SA1001;SA1208;SA0001;NU5104;NU1507</NoWarn>
<GitVersionTargetFramework>net8.0</GitVersionTargetFramework>
</PropertyGroup>
<PropertyGroup>
<PackageIcon>favicon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Company>Drastic Actions</Company>
<Copyright>Copyright (C) Drastic Actions</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<IncludeSymbols>true</IncludeSymbols>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Key.snk</AssemblyOriginatorKeyFile>
<RepositoryUrl>https://github.com/drasticactions/carpanet</RepositoryUrl>
<PackageProjectUrl>https://github.com/drasticactions/carpanet</PackageProjectUrl>
<PackageTags>atproto atprotocol bluesky</PackageTags>
</PropertyGroup>
<ItemGroup Condition=" ('$(IsPackable)' == 'true') or ('$(PackAsTool)' == 'true') ">
<None Include="$(MSBuildThisFileDirectory)favicon.png" Pack="true" PackagePath=""
Visible="false" />
</ItemGroup>
</Project>