From f4d716da73b04331f681f8341fe6dc247193c8ab Mon Sep 17 00:00:00 2001 From: Sarah Birrer Date: Thu, 6 Oct 2022 11:54:50 +0200 Subject: [PATCH] add GenerateAssemblyInfo --- .appveyor.yml | 2 +- recipe.cake | 3 +-- src/TfsUrlParser.Tests/Properties/AssemblyInfo.cs | 10 ---------- 3 files changed, 2 insertions(+), 13 deletions(-) delete mode 100644 src/TfsUrlParser.Tests/Properties/AssemblyInfo.cs diff --git a/.appveyor.yml b/.appveyor.yml index b1c5c4a..48d59ac 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -7,7 +7,7 @@ image: Visual Studio 2022 # Build Script # #---------------------------------# build_script: - - ps: .\build.ps1 --target=CI + - ps: .\build.ps1 --Target=CI # Tests test: off diff --git a/recipe.cake b/recipe.cake index 5173d74..861fe3d 100644 --- a/recipe.cake +++ b/recipe.cake @@ -1,4 +1,4 @@ -#load nuget:?package=Cake.Recipe&version=3.0.0 +#load nuget:?package=Cake.Recipe&version=3.0.1 Environment.SetVariableNames(); @@ -16,7 +16,6 @@ BuildParameters.PrintParameters(Context); ToolSettings.SetToolSettings( context: Context, - //dupFinderExcludePattern: new string[] { BuildParameters.RootDirectoryPath + "/src/TfsUrlParser.Tests/*.cs" }, testCoverageFilter: "+[*]* -[xunit.*]* -[*.Tests]* -[Shouldly]* -[DiffEngine]* -[EmptyFiles]*", testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*", testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs"); diff --git a/src/TfsUrlParser.Tests/Properties/AssemblyInfo.cs b/src/TfsUrlParser.Tests/Properties/AssemblyInfo.cs deleted file mode 100644 index 16f9123..0000000 --- a/src/TfsUrlParser.Tests/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System.Reflection; -using System.Runtime.InteropServices; - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("6d16103d-8d2a-4e00-862a-2ad3c00e2883")]