Bumps [Microsoft.SourceLink.GitHub](https://github.com/dotnet/sourcelink) from 1.0.0-beta-62925-02 to 1.0.0-beta2-19367-01. - [Release notes](https://github.com/dotnet/sourcelink/releases) - [Commits](https://github.com/dotnet/sourcelink/commits/1.0.0-beta2-19367-01) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<Description>A simple .NET Core global tool called "dotnetsay".</Description>
|
|
<LangVersion>Latest</LangVersion>
|
|
<VersionPrefix>2.1.4</VersionPrefix>
|
|
<Authors>.NET Team</Authors>
|
|
<Product>dotnetsay</Product>
|
|
<Copyright>MIT</Copyright>
|
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
|
<PackageLicenseUrl>https://github.com/dotnet/core/blob/master/LICENSE.TXT</PackageLicenseUrl>
|
|
<PackageProjectUrl>https://github.com/dotnet/core/blob/master/samples/dotnetsay/README.md</PackageProjectUrl>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<DebugType>embedded</DebugType>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<IsPackable>true</IsPackable>
|
|
<PackAsTool>true</PackAsTool>
|
|
<!-- Optional performance setting - enables tiered JIT compilation-->
|
|
<TieredCompilation>true</TieredCompilation>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(ContinuousIntegrationBuild)'=='true'">
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01" PrivateAssets="All"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|