From de1d827a92659923894eeded2eb51795b15e4294 Mon Sep 17 00:00:00 2001 From: duncanp Date: Fri, 4 Mar 2016 15:20:16 +0000 Subject: [PATCH] [Technical] Updated version to 1.0.0.0 and added licenses files. --- AssemblyInfo.Shared.cs | 4 ++-- Common/License.txt | 22 +++++++++++++++++++ Common/SonarQube.Plugins.Common.csproj | 2 +- Common/SonarQube/License.txt | 21 ------------------ PluginGenerator.sln | 1 + PluginGenerator/License.txt | 22 +++++++++++++++++++ .../SonarQube.Plugins.PluginGenerator.csproj | 2 +- PluginGenerator/SonarQube/License.txt | 21 ------------------ RoslynPluginGenerator/LICENSE.txt | 22 +++++++++++++++++++ ...Qube.Plugins.Roslyn.PluginGenerator.csproj | 3 +++ Tests/Common/LICENSE.txt | 22 +++++++++++++++++++ .../SonarQube.Plugins.Test.Common.csproj | 1 + Tests/CommonTests/LICENSE.txt | 22 +++++++++++++++++++ .../SonarQube.Plugins.CommonTests.csproj | 3 +++ .../RoslynAnalyzer10/LICENSE.txt | 22 +++++++++++++++++++ .../RoslynAnalyzer10/RoslynAnalyzer10.csproj | 5 ++++- .../RoslynAnalyzer11/LICENSE.txt | 22 +++++++++++++++++++ .../RoslynAnalyzer11/RoslynAnalyzer11.csproj | 3 +++ .../IntegrationTests/IntegrationTests.csproj | 3 +++ Tests/IntegrationTests/LICENSE.txt | 22 +++++++++++++++++++ Tests/PluginGeneratorTests/LICENSE.txt | 22 +++++++++++++++++++ ...arQube.Plugins.PluginGeneratorTests.csproj | 3 +++ Tests/RoslynPluginGeneratorTests/LICENSE.txt | 22 +++++++++++++++++++ ...s.Roslyn.RoslynPluginGeneratorTests.csproj | 3 +++ 24 files changed, 248 insertions(+), 47 deletions(-) create mode 100644 Common/License.txt delete mode 100644 Common/SonarQube/License.txt create mode 100644 PluginGenerator/License.txt delete mode 100644 PluginGenerator/SonarQube/License.txt create mode 100644 RoslynPluginGenerator/LICENSE.txt create mode 100644 Tests/Common/LICENSE.txt create mode 100644 Tests/CommonTests/LICENSE.txt create mode 100644 Tests/ExampleAnalyzers/RoslynAnalyzer10/RoslynAnalyzer10/LICENSE.txt create mode 100644 Tests/ExampleAnalyzers/RoslynAnalyzer11/RoslynAnalyzer11/LICENSE.txt create mode 100644 Tests/IntegrationTests/LICENSE.txt create mode 100644 Tests/PluginGeneratorTests/LICENSE.txt create mode 100644 Tests/RoslynPluginGeneratorTests/LICENSE.txt diff --git a/AssemblyInfo.Shared.cs b/AssemblyInfo.Shared.cs index 1ebf591..1d5337c 100644 --- a/AssemblyInfo.Shared.cs +++ b/AssemblyInfo.Shared.cs @@ -7,8 +7,8 @@ using System.Reflection; using System.Runtime.InteropServices; -[assembly: AssemblyVersion("0.9.0.0")] -[assembly: AssemblyFileVersion("0.9.0.0")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyCompany("SonarSource and Microsoft")] [assembly: AssemblyCopyright("Copyright © SonarSource and Microsoft 2015")] diff --git a/Common/License.txt b/Common/License.txt new file mode 100644 index 0000000..82b3c6c --- /dev/null +++ b/Common/License.txt @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 SonarSource SA and Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/Common/SonarQube.Plugins.Common.csproj b/Common/SonarQube.Plugins.Common.csproj index cdadbc9..502c46e 100644 --- a/Common/SonarQube.Plugins.Common.csproj +++ b/Common/SonarQube.Plugins.Common.csproj @@ -61,7 +61,7 @@ - + diff --git a/Common/SonarQube/License.txt b/Common/SonarQube/License.txt deleted file mode 100644 index 15a3afc..0000000 --- a/Common/SonarQube/License.txt +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2015 SonarSource SA and Microsoft Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. diff --git a/PluginGenerator.sln b/PluginGenerator.sln index d308014..17cc496 100644 --- a/PluginGenerator.sln +++ b/PluginGenerator.sln @@ -9,6 +9,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ExampleAnalyzers", "Example EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C65178C6-608B-45B5-8740-0F3396C3C778}" ProjectSection(SolutionItems) = preProject + LICENSE.txt = LICENSE.txt README.md = README.md EndProjectSection EndProject diff --git a/PluginGenerator/License.txt b/PluginGenerator/License.txt new file mode 100644 index 0000000..82b3c6c --- /dev/null +++ b/PluginGenerator/License.txt @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 SonarSource SA and Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/PluginGenerator/SonarQube.Plugins.PluginGenerator.csproj b/PluginGenerator/SonarQube.Plugins.PluginGenerator.csproj index 2c18804..e0e3b64 100644 --- a/PluginGenerator/SonarQube.Plugins.PluginGenerator.csproj +++ b/PluginGenerator/SonarQube.Plugins.PluginGenerator.csproj @@ -85,7 +85,7 @@ - + diff --git a/PluginGenerator/SonarQube/License.txt b/PluginGenerator/SonarQube/License.txt deleted file mode 100644 index 15a3afc..0000000 --- a/PluginGenerator/SonarQube/License.txt +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2015 SonarSource SA and Microsoft Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. diff --git a/RoslynPluginGenerator/LICENSE.txt b/RoslynPluginGenerator/LICENSE.txt new file mode 100644 index 0000000..82b3c6c --- /dev/null +++ b/RoslynPluginGenerator/LICENSE.txt @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 SonarSource SA and Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/RoslynPluginGenerator/SonarQube.Plugins.Roslyn.PluginGenerator.csproj b/RoslynPluginGenerator/SonarQube.Plugins.Roslyn.PluginGenerator.csproj index 6ea7c53..9ca8aaa 100644 --- a/RoslynPluginGenerator/SonarQube.Plugins.Roslyn.PluginGenerator.csproj +++ b/RoslynPluginGenerator/SonarQube.Plugins.Roslyn.PluginGenerator.csproj @@ -191,6 +191,9 @@ True + + +