Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add framework targets #6

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

Expand Down
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>

Expand Down