From 3bd106a1ff0ca19f814ec41ed38029051b19cb04 Mon Sep 17 00:00:00 2001
From: Petar Hristov <hristov@itc.rwth-aachen.de>
Date: Tue, 16 Mar 2021 11:49:29 +0100
Subject: [PATCH] Fix: Swagger Description (coscine/issues#1393)

---
 .config/dotnet-tools.json | 18 ------------------
 .gitignore                |  5 ++++-
 src/Tree/Tree.csproj      |  1 +
 3 files changed, 5 insertions(+), 19 deletions(-)
 delete mode 100644 .config/dotnet-tools.json

diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json
deleted file mode 100644
index 87f76e2..0000000
--- a/.config/dotnet-tools.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
-  "version": 1,
-  "isRoot": true,
-  "tools": {
-    "gitversion.tool": {
-      "version": "5.6.6",
-      "commands": [
-        "dotnet-gitversion"
-      ]
-    },
-    "dotnet-version-cli": {
-      "version": "2.1.1",
-      "commands": [
-        "dotnet-version"
-      ]
-    }
-  }
-}
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 6a7cb7f..7c4ea99 100644
--- a/.gitignore
+++ b/.gitignore
@@ -267,4 +267,7 @@ tools/*
 dist/
 
 #linq2db
-src/.tools/*
\ No newline at end of file
+src/.tools/*
+
+# Dotnet Tool Manifest
+.config/*
diff --git a/src/Tree/Tree.csproj b/src/Tree/Tree.csproj
index 5a22601..b475ad4 100644
--- a/src/Tree/Tree.csproj
+++ b/src/Tree/Tree.csproj
@@ -3,6 +3,7 @@
 		<OutputType>Exe</OutputType>
 		<RootNamespace>Coscine.Api.Tree</RootNamespace>
 		<AssemblyName>Coscine.Api.Tree</AssemblyName>
+		<GenerateDocumentationFile>true</GenerateDocumentationFile>
 		<TargetFramework>net5.0</TargetFramework>
 		<Version>2.0.1</Version>
 	</PropertyGroup>
-- 
GitLab