forked from shinyorg/shiny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.build.props
63 lines (55 loc) · 3.49 KB
/
Directory.build.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Project>
<PropertyGroup>
<Authors>Allan Ritchie</Authors>
<Owners>aritchie;shinylib</Owners>
<LangVersion>latest</LangVersion>
<DisableExtraReferences>False</DisableExtraReferences>
<NoWarn>$(NoWarn);1591;1701;1591;1702;1705;VSX1000;NU1603</NoWarn>
<Description>Shiny</Description>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://shinylib.net</PackageProjectUrl>
<!-- <PackageIcon>nuget.png</PackageIcon>-->
<PackageIconUrl>https://raw.githubusercontent.com/shinyorg/shiny/master/art/nuget.png</PackageIconUrl>
<PackageReleaseNotes>https://shinylib.net/blog/</PackageReleaseNotes>
<PackageTags>xamarin uwp ios android tizen tvos watchos ble geofences gps location background jobs settings environment speech sensors acr</PackageTags>
<RepositoryUrl>https://github.com/shinyorg/shiny</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<ShinyVersion Condition=" '$(ShinyVersion)' == '' ">1.0.0</ShinyVersion>
<VersionPrefix>$(ShinyVersion)</VersionPrefix>
<VersionPrefix Condition=" $(BUILD_BUILDNUMBER) != '' ">$(VersionPrefix).$(BUILD_BUILDNUMBER)</VersionPrefix>
<!-- disable sourcelink on mono, to workaround https://github.com/dotnet/sourcelink/issues/155 -->
<EnableSourceLink Condition=" '$(Configuration)' == 'Release' AND '$(OS)' == 'Windows_NT' AND '$(MSBuildRuntimeType)' == 'Core' ">true</EnableSourceLink>
<EnableSourceControlManagerQueries>$(EnableSourceLink)</EnableSourceControlManagerQueries>
<IncludeSymbols>True</IncludeSymbols>
<IncludeSource>True</IncludeSource>
<PublishRepositoryUrl>True</PublishRepositoryUrl>
<EmbedUntrackedSources>True</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<TargetsToBuild>android;ios;watchos;tvos;uap;tizen</TargetsToBuild>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<TargetsToBuild>android;ios;watchos;tvos</TargetsToBuild>
<TargetsToBuild Condition=" $(OS) == 'WINDOWS_NT' ">uap;tizen;$(TargetsToBuild)</TargetsToBuild>
<DebugType Condition=" !$(TargetFramework.StartsWith('monoandroid')) ">portable</DebugType>
<DebugType Condition=" $(TargetFramework.StartsWith('monoandroid')) ">Full</DebugType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" $(TargetFramework.StartsWith('monoandroid')) ">
<UseAndroidX>false</UseAndroidX>
<DefineConstants Condition=" $(UseAndroidX) == true ">$(DefineConstants);ANDROIDX</DefineConstants>
</PropertyGroup>
<ItemGroup Condition=" '$(SourceLinkEnabled)' == 'true' ">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<!--
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)art\nuget.png" Pack="true" PackagePath="\icon.png" />
</ItemGroup>
-->
</Project>