Add missing copyright notices

This commit is contained in:
Tal Aloni 2024-06-12 11:33:53 +03:00
parent 0618bfff9e
commit a2b96f638c
3 changed files with 19 additions and 8 deletions

View file

@ -1,4 +1,10 @@
using Microsoft.VisualStudio.TestTools.UnitTesting; /* Copyright (C) 2024 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
*
* You can redistribute this program and/or modify it under the terms of
* the GNU Lesser Public License as published by the Free Software Foundation,
* either version 3 of the License, or (at your option) any later version.
*/
using Microsoft.VisualStudio.TestTools.UnitTesting;
using SMBLibrary.Authentication.GSSAPI; using SMBLibrary.Authentication.GSSAPI;
using SMBLibrary.Authentication.NTLM; using SMBLibrary.Authentication.NTLM;
using SMBLibrary.Client; using SMBLibrary.Client;

View file

@ -1,8 +1,11 @@
using System; /* Copyright (C) 2019-2024 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
using System.Collections.Generic; *
* You can redistribute this program and/or modify it under the terms of
* the GNU Lesser Public License as published by the Free Software Foundation,
* either version 3 of the License, or (at your option) any later version.
*/
using System.IO; using System.IO;
using Microsoft.VisualStudio.TestTools.UnitTesting; using Microsoft.VisualStudio.TestTools.UnitTesting;
using SMBLibrary;
using SMBLibrary.Win32; using SMBLibrary.Win32;
namespace SMBLibrary.Tests namespace SMBLibrary.Tests

View file

@ -1,9 +1,11 @@
using System; /* Copyright (C) 2019-2024 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
using System.Collections.Generic; *
* You can redistribute this program and/or modify it under the terms of
* the GNU Lesser Public License as published by the Free Software Foundation,
* either version 3 of the License, or (at your option) any later version.
*/
using System.Threading; using System.Threading;
using Microsoft.VisualStudio.TestTools.UnitTesting; using Microsoft.VisualStudio.TestTools.UnitTesting;
using SMBLibrary;
using SMBLibrary.Win32;
namespace SMBLibrary.Tests namespace SMBLibrary.Tests
{ {