diff --git a/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/FilePreparer.cs b/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/FilePreparer.cs index fd1e029..421a733 100644 --- a/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/FilePreparer.cs +++ b/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/FilePreparer.cs @@ -29,14 +29,7 @@ namespace Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration var newFilePaths = new List(); var domain = AppDomain.CurrentDomain; - // The privateBinPath is a ; seperated list of paths located in the base path of the - // application where the CLR will attempt to locate assemblies during the load process. - // Here we add the location where we will copy dlls to. - var privateBinPath = string.IsNullOrWhiteSpace(domain.SetupInformation.PrivateBinPath) - ? "DefaultGenerationBin" - : domain.SetupInformation.PrivateBinPath + ";DefaultGenerationBin"; - - directoryToCopyTo = Path.Combine(domain.BaseDirectory, privateBinPath); + directoryToCopyTo = Path.Combine(domain.BaseDirectory, "DefaultGenerationBin"); Directory.CreateDirectory(directoryToCopyTo); foreach (string filePath in filePaths) diff --git a/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.csproj b/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.csproj index 2dacbbd..b35aa2f 100644 --- a/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.csproj +++ b/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.csproj @@ -1,133 +1,34 @@ - - - - - Debug - AnyCPU - {14D2C330-AAA0-4813-960F-BD3D46D6CE1D} - Library - Properties - Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration - Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration - v4.6.2 - 512 - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - bin\Debug\Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.xml - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - bin\Release\Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.xml - - - - ..\..\packages\Microsoft.OpenApi.1.0.0-beta016\lib\net46\Microsoft.OpenApi.dll - - - ..\..\packages\Microsoft.OpenApi.Readers.1.0.0-beta016\lib\net46\Microsoft.OpenApi.Readers.dll - - - ..\..\packages\SharpYaml.1.6.1\lib\net45\SharpYaml.dll - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Designer - - - + + + net46; netstandard2.0 + true + https://github.com/Microsoft/OpenAPI.NET.CSharpComment + https://raw.githubusercontent.com/Microsoft/OpenAPI.NET.CSharpComment/master/LICENSE + true + Microsoft + Microsoft + Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration + Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration + 1.0.0-beta025 + Library that translates Visual Studio C# Annotations into .NET objects representing OpenAPI specification. + © Microsoft Corporation. All rights reserved. + Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration + + Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration + Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration + false + + + + bin\$(Configuration)\$(TargetFramework)\Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.xml + + + + + + + + + + \ No newline at end of file diff --git a/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.nuspec b/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.nuspec deleted file mode 100644 index 423c3c2..0000000 --- a/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.nuspec +++ /dev/null @@ -1,13 +0,0 @@ - - - - Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration - 1.0.0-beta024 - Microsoft - Library that translates Visual Studio C# Annotations into .NET objects representing OpenAPI specification. - - - - - - \ No newline at end of file diff --git a/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/Properties/AssemblyInfo.cs b/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/Properties/AssemblyInfo.cs index de46a18..f3848d6 100644 --- a/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/Properties/AssemblyInfo.cs +++ b/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/Properties/AssemblyInfo.cs @@ -3,43 +3,6 @@ // Licensed under the MIT License (MIT). See License.txt in the repo root for license information. // ------------------------------------------------------------ -using System; -using System.Reflection; using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration")] -[assembly: AssemblyCopyright("Copyright © Microsoft")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// 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("14d2c330-aaa0-4813-960f-bd3d46d6ce1d")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: CLSCompliant(false)] - -[assembly: InternalsVisibleTo("Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests")] +[assembly: InternalsVisibleTo("Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests")] \ No newline at end of file diff --git a/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/SpecificationGenerationMessages.cs b/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/SpecificationGenerationMessages.cs index 4a3661e..01d32d9 100644 --- a/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/SpecificationGenerationMessages.cs +++ b/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/SpecificationGenerationMessages.cs @@ -8,7 +8,7 @@ namespace Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration /// /// Holds the specification generation messages. /// - internal static class SpecificationGenerationMessages + public static class SpecificationGenerationMessages { public const string AddingSchemaReferenceFailed = "Adding schema \"{0}\" to the schema reference registry failed with the error: {1}."; @@ -61,9 +61,7 @@ namespace Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration public const string UndocumentedPathParameter = "Path paramater: {0} is undocumented in {1}"; - public const string UnableToGenerateAllOperations = "Generated {0}/{1} documented operations successfully. " - + "Please refer to the GenerationDiagnostic.OperationGenerationDiagnostics for details on the errors " - + "causing generation to fail for some operations."; + public const string UnableToGenerateAllOperations = "Generated {0}/{1} documented operations successfully."; public const string UnexpectedError = "Unexpected error occurred during generation: {0}"; diff --git a/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/packages.config b/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/packages.config deleted file mode 100644 index 8f56723..0000000 --- a/src/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration/packages.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.csproj b/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.csproj index 4cd5696..aafde59 100644 --- a/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.csproj +++ b/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.csproj @@ -1,65 +1,33 @@ - - - - - Debug - AnyCPU - {EFD530F4-6D30-4346-BD65-50BD1FBFD67F} - Library - Properties - Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions - Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions - v4.6.2 - 512 - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\..\packages\Microsoft.OpenApi.1.0.0-beta016\lib\net46\Microsoft.OpenApi.dll - - - ..\..\packages\Newtonsoft.Json.4.0.8\lib\net40\Newtonsoft.Json.dll - False - - - - - - - - - - - - - - - - - {14d2c330-aaa0-4813-960f-bd3d46d6ce1d} - Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration - - - - - - - + + + net46; netstandard2.0 + true + https://github.com/Microsoft/OpenAPI.NET.CSharpComment + https://raw.githubusercontent.com/Microsoft/OpenAPI.NET.CSharpComment/master/LICENSE + true + Microsoft + Microsoft + Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions + Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions + 1.0.0-beta03 + Extension that provides the newtonsoft json filter that fetches newtonsoft json property attribute and updates OpenAPI specification. + © Microsoft Corporation. All rights reserved. + Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions + + Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions + Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions + false + + + + bin\$(Configuration)\$(TargetFramework)\Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.xml + + + + + + + + + \ No newline at end of file diff --git a/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.nuspec b/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.nuspec deleted file mode 100644 index d2fdd72..0000000 --- a/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.nuspec +++ /dev/null @@ -1,14 +0,0 @@ - - - - Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions - 1.0.0-beta02 - Microsoft - Extension that provides the newtonsoft json filter that fetches newtonsoft json property attribute and updates OpenAPI specification. - - - - - - - \ No newline at end of file diff --git a/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/Properties/AssemblyInfo.cs b/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/Properties/AssemblyInfo.cs index b84de2a..bdf9233 100644 --- a/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/Properties/AssemblyInfo.cs +++ b/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/Properties/AssemblyInfo.cs @@ -3,43 +3,6 @@ // Licensed under the MIT License (MIT). See License.txt in the repo root for license information. // ------------------------------------------------------------ -using System; -using System.Reflection; using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions")] -[assembly: AssemblyCopyright("Copyright © Microsoft")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// 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("EFD530F4-6D30-4346-BD65-50BD1FBFD67F")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: CLSCompliant(false)] [assembly: InternalsVisibleTo("Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests")] \ No newline at end of file diff --git a/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/packages.config b/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/packages.config deleted file mode 100644 index 56894df..0000000 --- a/src/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions/packages.config +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/test/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests.csproj b/test/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests.csproj index 697d57d..904baae 100644 --- a/test/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests.csproj +++ b/test/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests.csproj @@ -1,417 +1,288 @@ - - - - - - Debug - AnyCPU - {4FC8150B-8A9B-4FF9-9213-53AF986CDB30} - Library - Properties - Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests - Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests - v4.6.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - - - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\..\packages\FluentAssertions.5.1.2\lib\net45\FluentAssertions.dll - - - ..\..\packages\Microsoft.OpenApi.1.0.0-beta016\lib\net46\Microsoft.OpenApi.dll - - - ..\..\packages\Microsoft.OpenApi.Readers.1.0.0-beta016\lib\net46\Microsoft.OpenApi.Readers.dll - - - ..\..\packages\Newtonsoft.Json.11.0.1\lib\net45\Newtonsoft.Json.dll - - - ..\..\packages\SharpYaml.1.6.1\lib\net45\SharpYaml.dll - - - - - ..\..\packages\System.Configuration.ConfigurationManager.4.4.0\lib\net461\System.Configuration.ConfigurationManager.dll - - - ..\..\packages\System.ValueTuple.4.3.0\lib\netstandard1.0\System.ValueTuple.dll - - - - - ..\..\packages\xunit.abstractions.2.0.1\lib\net35\xunit.abstractions.dll - - - ..\..\packages\xunit.assert.2.3.1\lib\netstandard1.1\xunit.assert.dll - - - ..\..\packages\xunit.extensibility.core.2.3.1\lib\netstandard1.1\xunit.core.dll - - - ..\..\packages\xunit.extensibility.execution.2.3.1\lib\net452\xunit.execution.desktop.dll - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - Designer - PreserveNewest - - - Designer - PreserveNewest - - - Designer - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - - - {14d2c330-aaa0-4813-960f-bd3d46d6ce1d} - Microsoft.OpenApi.CSharpComment.Reader - - - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - Designer - - - PreserveNewest - - - - - - - - - - - False - - - False - - - False - - - False - - - - - - - - + - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + net46;net461 + Microsoft + Microsoft + Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests + Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests + Tests for Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration + Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests + Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests + © Microsoft Corporation. All rights reserved. + false + Library - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + \ No newline at end of file diff --git a/test/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests/Properties/AssemblyInfo.cs b/test/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests/Properties/AssemblyInfo.cs index 6da205f..3685867 100644 --- a/test/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests/Properties/AssemblyInfo.cs +++ b/test/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests/Properties/AssemblyInfo.cs @@ -1,40 +1,4 @@ // ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the repo root for license information. -// ------------------------------------------------------------ - -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests")] -[assembly: AssemblyCopyright("Copyright © 2017")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// 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("4fc8150b-8a9b-4ff9-9213-53af986cdb30")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file +// ------------------------------------------------------------ \ No newline at end of file diff --git a/test/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests/packages.config b/test/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests/packages.config deleted file mode 100644 index 5c6a429..0000000 --- a/test/Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration.Tests/packages.config +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/test/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests.csproj b/test/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests.csproj index 08e25d8..32c18cb 100644 --- a/test/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests.csproj +++ b/test/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests.csproj @@ -1,174 +1,60 @@ - - - - - - Debug - AnyCPU - {D1348AA1-F9C9-45E3-A8BF-50B7754340FC} - Library - Properties - Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests - Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests - v4.6.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - - - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\..\packages\FluentAssertions.5.1.2\lib\net45\FluentAssertions.dll - - - ..\..\packages\Microsoft.OpenApi.1.0.0-beta016\lib\net46\Microsoft.OpenApi.dll - - - ..\..\packages\Microsoft.OpenApi.Readers.1.0.0-beta016\lib\net46\Microsoft.OpenApi.Readers.dll - - - ..\..\packages\Newtonsoft.Json.11.0.1\lib\net45\Newtonsoft.Json.dll - - - ..\..\packages\SharpYaml.1.6.1\lib\net45\SharpYaml.dll - - - - - ..\..\packages\System.Configuration.ConfigurationManager.4.4.0\lib\net461\System.Configuration.ConfigurationManager.dll - - - ..\..\packages\System.ValueTuple.4.3.0\lib\netstandard1.0\System.ValueTuple.dll - - - - - ..\..\packages\xunit.abstractions.2.0.1\lib\net35\xunit.abstractions.dll - - - ..\..\packages\xunit.assert.2.3.1\lib\netstandard1.1\xunit.assert.dll - - - ..\..\packages\xunit.extensibility.core.2.3.1\lib\netstandard1.1\xunit.core.dll - - - ..\..\packages\xunit.extensibility.execution.2.3.1\lib\net452\xunit.execution.desktop.dll - - - - - - - - - - - - - - - - - - - {EFD530F4-6D30-4346-BD65-50BD1FBFD67F} - Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions - - - {14d2c330-aaa0-4813-960f-bd3d46d6ce1d} - Microsoft.OpenApi.CSharpAnnotations.DocumentGeneration - - - - - PreserveNewest - - - PreserveNewest - - - Designer - - - PreserveNewest - - - - - - - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - - - - - False - - - False - - - False - - - False - - - - - - - - + - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + net46;net461 + Microsoft + Microsoft + Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests + Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests + Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests + Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests + Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests + © Microsoft Corporation. All rights reserved. + false + Library - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + \ No newline at end of file diff --git a/test/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests/Properties/AssemblyInfo.cs b/test/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests/Properties/AssemblyInfo.cs index 3937949..3685867 100644 --- a/test/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests/Properties/AssemblyInfo.cs +++ b/test/Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests/Properties/AssemblyInfo.cs @@ -1,40 +1,4 @@ // ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the repo root for license information. -// ------------------------------------------------------------ - -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Microsoft.OpenApi.CSharpAnnotations.NewtonsoftJsonExtensions.Tests")] -[assembly: AssemblyCopyright("Copyright © 2017")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// 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("D1348AA1-F9C9-45E3-A8BF-50B7754340FC")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file +// ------------------------------------------------------------ \ No newline at end of file