-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBackButtonManager.csproj
More file actions
41 lines (37 loc) · 1.67 KB
/
BackButtonManager.csproj
File metadata and controls
41 lines (37 loc) · 1.67 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<LangVersion>14.0</LangVersion>
<RootNamespace>Chinook.BackButtonManager</RootNamespace>
<Authors>nventive</Authors>
<Company>nventive</Company>
<AssemblyName>Chinook.BackButtonManager</AssemblyName>
<PackageId>Chinook.BackButtonManager</PackageId>
<Description>Chinook.BackButtonManager</Description>
<Description>Chinook.BackButtonManager is a collection of extensible libraries to ease development around back button handling.</Description>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>back;navigation;backbutton;mvvm;ios;android;chinook</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nventive/Chinook.BackButtonManager</PackageProjectUrl>
<!-- Needed for Source Link support -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BackButtonManager.Abstractions\BackButtonManager.Abstractions.csproj" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.1" />
</ItemGroup>
<ItemGroup>
<!-- Needed for Source Link support -->
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>