adding copyright

This commit is contained in:
Clint Rutkas
2020-01-02 16:57:27 -08:00
parent 6e9e41b850
commit 3d204e7da9
44 changed files with 221 additions and 45 deletions

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.Text; using System.Text;
using System.Windows; using System.Windows;
using GalaSoft.MvvmLight.Threading; using GalaSoft.MvvmLight.Threading;

View File

@@ -1,4 +1,8 @@
namespace System.Windows.Media.Imaging // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
namespace System.Windows.Media.Imaging
{ {
static class BitmapEncoderExtensions static class BitmapEncoderExtensions
{ {
@@ -6,7 +10,7 @@
{ {
try try
{ {
var _ = encoder.CodecInfo; var = encoder.CodecInfo;
} }
catch (NotSupportedException) catch (NotSupportedException)
{ {

View File

@@ -1,4 +1,8 @@
namespace System.Collections.Generic // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
namespace System.Collections.Generic
{ {
static class ICollectionExtensions static class ICollectionExtensions
{ {

View File

@@ -1,4 +1,8 @@
namespace System // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
namespace System
{ {
static class TimeSpanExtensions static class TimeSpanExtensions
{ {

View File

@@ -1,4 +1,8 @@
using ImageResizer.Properties; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using ImageResizer.Properties;
namespace ImageResizer.Models namespace ImageResizer.Models
{ {

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;

View File

@@ -1,4 +1,8 @@
namespace ImageResizer.Models // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
namespace ImageResizer.Models
{ {
public class ResizeError public class ResizeError
{ {

View File

@@ -1,4 +1,8 @@
namespace ImageResizer.Models // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
namespace ImageResizer.Models
{ {
public enum ResizeFit public enum ResizeFit
{ {

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Windows; using System.Windows;

View File

@@ -1,4 +1,8 @@
using System.Collections.Generic; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using GalaSoft.MvvmLight; using GalaSoft.MvvmLight;
using ImageResizer.Properties; using ImageResizer.Properties;

View File

@@ -1,4 +1,8 @@
namespace ImageResizer.Models // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
namespace ImageResizer.Models
{ {
public enum ResizeUnit public enum ResizeUnit
{ {

View File

@@ -1,4 +1,8 @@
using System.Reflection; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Reflection;
using System.Resources; using System.Resources;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Windows; using System.Windows;

View File

@@ -1,3 +1,7 @@
using System.Runtime.CompilerServices; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("ImageResizer.Test")] [assembly: InternalsVisibleTo("ImageResizer.Test")]

View File

@@ -1,4 +1,8 @@
using System.Collections; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
using System.Collections.Specialized; using System.Collections.Specialized;

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
namespace ImageResizer.Utilities namespace ImageResizer.Utilities
{ {

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Reflection; using System.Reflection;
using System.Windows.Input; using System.Windows.Input;

View File

@@ -1,4 +1,8 @@
namespace ImageResizer.ViewModels // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
namespace ImageResizer.ViewModels
{ {
public interface ITabViewModel public interface ITabViewModel
{ {

View File

@@ -1,4 +1,8 @@
using System.Windows.Input; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Windows.Input;
using GalaSoft.MvvmLight; using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command; using GalaSoft.MvvmLight.Command;
using ImageResizer.Models; using ImageResizer.Models;

View File

@@ -1,4 +1,8 @@
using System.Collections.Generic; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Collections.Generic;
using System.Windows.Input; using System.Windows.Input;
using GalaSoft.MvvmLight; using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command; using GalaSoft.MvvmLight.Command;

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.Diagnostics; using System.Diagnostics;
using System.Linq; using System.Linq;
using System.Threading; using System.Threading;

View File

@@ -1,4 +1,8 @@
using System.Collections.Generic; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Collections.Generic;
using System.Windows.Input; using System.Windows.Input;
using GalaSoft.MvvmLight; using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command; using GalaSoft.MvvmLight.Command;

View File

@@ -1,4 +1,8 @@
using System.Diagnostics; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Diagnostics;
using System.Windows; using System.Windows;
using System.Windows.Navigation; using System.Windows.Navigation;
using ImageResizer.ViewModels; using ImageResizer.ViewModels;

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.Globalization; using System.Globalization;
using System.Windows.Data; using System.Windows.Data;
using ImageResizer.Properties; using ImageResizer.Properties;

View File

@@ -1,4 +1,8 @@
using System.Globalization; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Globalization;
using System.Windows.Controls; using System.Windows.Controls;
namespace ImageResizer.Views namespace ImageResizer.Views

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.Globalization; using System.Globalization;
using System.Windows; using System.Windows;
using System.Windows.Data; using System.Windows.Data;

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.Globalization; using System.Globalization;
using System.Windows.Data; using System.Windows.Data;
using ImageResizer.ViewModels; using ImageResizer.ViewModels;

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.Globalization; using System.Globalization;
using System.Text; using System.Text;
using System.Windows.Data; using System.Windows.Data;

View File

@@ -1,4 +1,8 @@
using System.Collections.Generic; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Collections.Generic;
using ImageResizer.ViewModels; using ImageResizer.ViewModels;
namespace ImageResizer.Views namespace ImageResizer.Views

View File

@@ -1,4 +1,8 @@
using System.Windows.Controls; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Windows.Controls;
namespace ImageResizer.Views namespace ImageResizer.Views
{ {

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Windows; using System.Windows;

View File

@@ -1,4 +1,8 @@
using System.Windows.Controls; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Windows.Controls;
namespace ImageResizer.Views namespace ImageResizer.Views
{ {

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.Globalization; using System.Globalization;
using System.Windows.Data; using System.Windows.Data;
using ImageResizer.Models; using ImageResizer.Models;

View File

@@ -1,4 +1,8 @@
using System.Windows.Controls; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System.Windows.Controls;
namespace ImageResizer.Views namespace ImageResizer.Views
{ {

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.Globalization; using System.Globalization;
using System.Windows.Data; using System.Windows.Data;
using System.Windows.Media.Imaging; using System.Windows.Media.Imaging;

View File

@@ -1,4 +1,8 @@
using System; // Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
using System;
using System.Globalization; using System.Globalization;
using System.Text; using System.Text;
using System.Windows.Data; using System.Windows.Data;

View File

@@ -1,4 +1,8 @@
using ImageResizer.Properties; // <copyright file="CustomSizeTests.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
using ImageResizer.Properties;
using Xunit; using Xunit;
namespace ImageResizer.Models namespace ImageResizer.Models

View File

@@ -1,4 +1,8 @@
using System; // <copyright file="ResizeBatchTests.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
using System;
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;

View File

@@ -1,4 +1,8 @@
using System; // <copyright file="ResizeOperationTests.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
using System;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
using System.IO; using System.IO;
using System.Windows.Media; using System.Windows.Media;

View File

@@ -1,4 +1,8 @@
using System.Collections.Generic; // <copyright file="ResizeSizeTests.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
using System.Collections.Generic;
using System.ComponentModel; using System.ComponentModel;
using ImageResizer.Properties; using ImageResizer.Properties;
using ImageResizer.Test; using ImageResizer.Test;

View File

@@ -1,4 +1,8 @@
using System.Collections.ObjectModel; // <copyright file="SettingsTests.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
using System.Collections.ObjectModel;
using System.Collections.Specialized; using System.Collections.Specialized;
using System.ComponentModel; using System.ComponentModel;
using ImageResizer.Models; using ImageResizer.Models;

View File

@@ -1,4 +1,8 @@
using System; // <copyright file="AssertEx.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.Specialized; using System.Collections.Specialized;
using System.ComponentModel; using System.ComponentModel;

View File

@@ -1,4 +1,8 @@
using System.Windows; // <copyright file="BitmapSourceExtensions.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
using System.Windows;
using System.Windows.Media; using System.Windows.Media;
using System.Windows.Media.Imaging; using System.Windows.Media.Imaging;

View File

@@ -1,4 +1,8 @@
using System; // <copyright file="TestDirectory.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.IO; using System.IO;

View File

@@ -1,4 +1,8 @@
using System; // <copyright file="TimeRemainingConverterTests.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
using System;
using System.Globalization; using System.Globalization;
using ImageResizer.Properties; using ImageResizer.Properties;
using Xunit; using Xunit;