mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 19:57:57 +01:00
adding copyright
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -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)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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")]
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user