1
0
mirror of synced 2026-01-29 03:00:08 -05:00
Files
core/samples/dotnetsay/dotnetsay.csproj
dependabot-preview[bot] 58e863f4a1 Bump Microsoft.SourceLink.GitHub in /samples/dotnetsay (#3203)
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>
2019-08-26 09:38:12 -07:00

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>