Index: build/Base.targets =================================================================== diff -u -r1b3fdbabc57da5490bc6a6f7963fde0f6d053e3b -r8fd10fe9e73adb2eb5166f803269d38c16265e7f --- build/Base.targets (.../Base.targets) (revision 1b3fdbabc57da5490bc6a6f7963fde0f6d053e3b) +++ build/Base.targets (.../Base.targets) (revision 8fd10fe9e73adb2eb5166f803269d38c16265e7f) @@ -39,7 +39,7 @@ - + Properties\GlobalAssembly.cs Index: build/GlobalAssembly.cs =================================================================== diff -u --- build/GlobalAssembly.cs (revision 0) +++ build/GlobalAssembly.cs (revision 8fd10fe9e73adb2eb5166f803269d38c16265e7f) @@ -0,0 +1,39 @@ +// Copyright (C) Stichting Deltares 2022. All rights reserved. +// +// This file is part of Riskeer. +// +// Riskeer is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System; +using System.Reflection; +using System.Runtime.InteropServices; +using System.Resources; + +[assembly: AssemblyCompany("Deltares")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCopyright("Copyright © Deltares 2022")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: NeutralResourcesLanguage("nl-NL")] + +[assembly: ComVisible(false)] +[assembly: CLSCompliant(false)] + +[assembly: AssemblyVersion("22.2.1.1")] +[assembly: AssemblyFileVersion("22.2.1.1")] \ No newline at end of file