-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSources.Build.props
More file actions
49 lines (46 loc) · 2.02 KB
/
Sources.Build.props
File metadata and controls
49 lines (46 loc) · 2.02 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
<Project>
<Import Project="Common.Build.props" />
<PropertyGroup Label="Assembly">
<IsPackable>true</IsPackable>
<DebugType>portable</DebugType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSource>true</IncludeSource>
<Deterministic>true</Deterministic>
<NoWarn>$(NoWarn);1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<EnablePackageValidation>true</EnablePackageValidation>
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Label="Description">
<PackageIcon>Assets/Icon512.png</PackageIcon>
<PackageIconUrl>https://raw.githubusercontent.com/falko-team/common-library/main/Icon512.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/falko-team/common-library</PackageProjectUrl>
<RepositoryUrl>https://github.com/falko-team/common-library.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>falko</PackageTags>
<PackageReadmeFile>Assets/ReadMe.package.md</PackageReadmeFile>
<PackageLicenseFile>Assets/License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
</PropertyGroup>
<ItemGroup Label="Assets">
<None Include="../../Icon512.png">
<Pack>true</Pack>
<Visible>false</Visible>
<PackagePath>Assets</PackagePath>
</None>
<None Include="../../License.md">
<Pack>true</Pack>
<Visible>false</Visible>
<PackagePath>Assets</PackagePath>
</None>
<None Include="../../ReadMe.package.md">
<Pack>true</Pack>
<Visible>false</Visible>
<PackagePath>Assets</PackagePath>
</None>
</ItemGroup>
</Project>