Skip to content

Instantly share code, notes, and snippets.

@bogdanbujdea
Last active March 11, 2019 21:36
Show Gist options
  • Select an option

  • Save bogdanbujdea/2a82bac9808a63c3b2dccadff1a7e940 to your computer and use it in GitHub Desktop.

Select an option

Save bogdanbujdea/2a82bac9808a63c3b2dccadff1a7e940 to your computer and use it in GitHub Desktop.
csproj file for file-sort, a dotnet global tool
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>file-sort</ToolCommandName>
<Version>1.0.1</Version>
<PackageOutputPath>./nupkg</PackageOutputPath>
<TargetFramework>netcoreapp2.1</TargetFramework>
<RuntimeFrameworkVersion>2.1.0</RuntimeFrameworkVersion>
<AssemblyName>FileSort</AssemblyName>
<ApplicationIcon>icon.ico</ApplicationIcon>
<PackageIconUrl>https://raw.githubusercontent.com/thewindev/FileSort/master/src/PicSort.CLI/icon.ico</PackageIconUrl>
<RepositoryUrl>https://github.com/thewindev/FileSort</RepositoryUrl>
<PackageTags>dotnet tool, file sort</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>file-sort</PackageId>
<Authors>Bogdan Bujdea</Authors>
<Company>file-sort</Company>
<Product>file-sort</Product>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<FileVersion>1.0.1.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5" />
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment