designite/designite-cs

By designite

Updated about 2 years ago

Image to analyze a C# project using Designite.

Image
Developer tools
0

9.6K

designite/designite-cs repository overview

Designite C# Docker image

This image provides instructions to execute the docker container that analyzes your C# projects using Designite.

  • Install Docker Desktop on your Windows machine.
  • Pull this image from docker hub
docker pull designite/designite-cs
  • Invoke the container. It requires two key inputs. First, we need to mount a folder so that the container can access your C# project, analyze it, and can store the analysis results to a folder. Second, we need to provide the path of the solution file; ensure that a) the solution filepath is part of the mounted directory (e.g., if we mount C:\my-project then the solution filepath is descendent of the my-project folder, such as C:\my-project\project.sln), b) the solution filepath is traslated for container (e.g., in the above case, the passed filepath would be C:\App\project\project.sln) if the mounted volume in the container is set to C:\App\project.
docker run -d -v C:\my-project:C:\App\project designite-cs C:\App\project\project.sln
  • After the container exists, you should get the analysis results in CSV format in the C:\my-project\Results folder.

Tag summary

Content type

Image

Digest

sha256:c00d7f18f

Size

6 GB

Last updated

about 2 years ago

docker pull designite/designite-cs