-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAssemblyInfo.props
40 lines (40 loc) · 2.22 KB
/
AssemblyInfo.props
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
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Product Condition="'$(Product)' == ''">Realm Large File Storage</Product>
<VersionPrefix>1.1.0</VersionPrefix>
<Description Condition="'$(Description)' == ''">Extensions to simplify working with binary files
and Realm.</Description>
<Company>Realm Inc.</Company>
<Copyright>Copyright © $([System.DateTime]::Now.ToString(yyyy)) Realm Inc.</Copyright>
<Authors>Realm</Authors>
<owners>realmnuget</owners>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/realm/realm-dotnet-lfs</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>Realm database lfs binary files</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageOutputPath>$(MsBuildThisFileDirectory)packages</PackageOutputPath>
<!-- Optional: Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AllowedOutputExtensionsInPackageBuildOutputFolder>
$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Nullable>enable</Nullable>
<LangVersion>11</LangVersion>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="PolySharp" Version="1.13.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<None Include="..\icon.png" Pack="true" PackagePath="" />
<None Include="$(ProjectDir)README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>