Skip to content

Commit

Permalink
add new framework targets (#6)
Browse files Browse the repository at this point in the history
vilinski authored Sep 1, 2020
1 parent 91b7e4d commit 8f3c81c
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RemoveObj

No more annoying caching problems, failing builds, or random VS crashes... well I guess that last problem is not really fixable. RemoveObj brings new quality to developer user experiance on .Net platform and is one of the most crucial tool for any .Net developer. It traverses your solution (starting from current directory), finds all project files, and removes `obj` folder placed next to them.
No more annoying caching problems, failing builds, or random VS crashes... well I guess that last problem is not really fixable. RemoveObj brings new quality to developer user experience on .Net platform and is one of the most crucial tool for any .Net developer. It traverses your solution (starting from current directory), finds all project files, and removes `obj` folder placed next to them.

# How to use

10 changes: 6 additions & 4 deletions removeobj.fsproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.1</Version>
<Version>1.0.2</Version>
<Description>A CLI tool that fixes biggest problem of .Net developers - it removes all obj folders in your solution!</Description>
<Authors>Krzysztof Cieslak</Authors>
<Copyright>Copyright 2018 Lambda Factory</Copyright>
<PackageLicenseUrl>https://github.com/Krzysztof-Cieslak/RemoveObj/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/Krzysztof-Cieslak/RemoveObj</RepositoryUrl>
<PackageIconUrl>https://raw.githubusercontent.com/Krzysztof-Cieslak/RemoveObj/master/img/icon.png</PackageIconUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/Krzysztof-Cieslak/RemoveObj</PackageProjectUrl>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
<PackAsTool>true</PackAsTool>
</PropertyGroup>

<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath=""/>
<None Include="img/icon.png" Pack="true" PackagePath=""/>
<Compile Include="Program.fs" />
</ItemGroup>

0 comments on commit 8f3c81c

Please sign in to comment.