Console app that scans a C# project file (.csproj) and displays physically missing files. This can be handy if you have a large nested project with lots of missing references.
- GIT
- .NET Core 3.1 SDK
I should hope if you are using this tool that you won't need this, but just in case...
Visual Studio
- See Tutorial: Open a project from a repo to clone this repo into Visual Studio.
- Open the solution via the solution explorer pane.
- Start the app in either debug or release mode, follow the instructions on screen
VS Code
- In your favourite command line interface navigate to an empty folder
- Run the following commands:
> git clone https://github.com/simon-curtis/CSharpMissingFileFinder.git`
> cd CSharpMissingFileFinder
> code .
- Open up a terminal window (
ctrl + shift + p
and choose "Terminal: Create new terminal window") - Run
dotnet run
Dotnet CLI
- In your favourite command line interface navigate to an empty folder
- Run the following commands:
> git clone https://github.com/simon-curtis/CSharpMissingFileFinder.git`
> cd CSharpMissingFileFinder
> dotnet run
- follow the instructions on screen