commit stringlengths 40 40 | subject stringlengths 4 1.73k | repos stringlengths 5 127k | old_file stringlengths 2 751 | new_file stringlengths 2 751 | new_contents stringlengths 1 8.98k | old_contents stringlengths 0 6.59k | license stringclasses 13
values | lang stringclasses 23
values |
|---|---|---|---|---|---|---|---|---|
83e72796ece32a983af7edec856bf30a8bd3b574 | Add value task to FillBuffer() | KodamaSakuno/Sakuno.Base | src/Sakuno.Base/IO/StreamExtensions.cs | src/Sakuno.Base/IO/StreamExtensions.cs | using System;
using System.ComponentModel;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace Sakuno.IO
{
[EditorBrowsable(EditorBrowsableState.Never)]
public static class StreamExtensions
{
public static int FillBuffer(this Stream stream, byte[] buffer, int offset, i... | using System.ComponentModel;
using System.IO;
namespace Sakuno.IO
{
[EditorBrowsable(EditorBrowsableState.Never)]
public static class StreamExtensions
{
public static int FillBuffer(this Stream stream, byte[] buffer, int offset, int count)
{
var remaining = count;
... | mit | C# |
b14d5d9052cda78c9cf5e36cd1dc921abe6b93cb | Implement Equals | charlenni/Mapsui,charlenni/Mapsui | Mapsui/MRect2.cs | Mapsui/MRect2.cs | using System.Collections.Generic;
namespace Mapsui;
public class MRect2
{
public MPoint Max { get; }
public MPoint Min { get; }
public double MaxX => Max.X;
public double MaxY => Max.Y;
public double MinX => Min.X;
public double MinY => Min.Y;
public MPoint Centroid => new MPoint(Max.X ... | using System.Collections.Generic;
namespace Mapsui;
public class MRect2
{
public MPoint Max { get; }
public MPoint Min { get; }
public double MaxX => Max.X;
public double MaxY => Max.Y;
public double MinX => Min.X;
public double MinY => Min.Y;
public MPoint Centroid => new MPoint(Max.X ... | mit | C# |
357e336d8deb341498888658bf2cac2c88be1f7c | bump version to 2.12.0 | piwik/piwik-dotnet-tracker,piwik/piwik-dotnet-tracker,piwik/piwik-dotnet-tracker | Piwik.Tracker/Properties/AssemblyInfo.cs | Piwik.Tracker/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("PiwikTracker")]
[assembly: Assembl... | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("PiwikTracker")]
[assembly: Assembl... | bsd-3-clause | C# |
187dbb346f8d2da24251acfeb15ee2f0fb0e243f | Remove UnityEvent from SharedConnectionRedirectionPayloadHandler | HelloKitty/Booma.Proxy | src/Booma.Proxy.Client.Unity.SharedHandlers/Handlers/SharedConnectionRedirectionPayloadHandler.cs | src/Booma.Proxy.Client.Unity.SharedHandlers/Handlers/SharedConnectionRedirectionPayloadHandler.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Common.Logging;
using GladNet;
using SceneJect.Common;
using UnityEngine;
using UnityEngine.Events;
namespace Booma.Proxy
{
public class SharedConnectionRedirectionPayloadHandler : GameMessageHan... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Common.Logging;
using GladNet;
using SceneJect.Common;
using UnityEngine;
using UnityEngine.Events;
namespace Booma.Proxy
{
public sealed class SharedConnectionRedirectionPayloadHandler : GameMes... | agpl-3.0 | C# |
f6723bb6ca2e80430343fe4e49abd416ef6b0eae | Add exception catch for sub60 message handling | HelloKitty/Booma.Proxy | src/Booma.Proxy.Client.Unity.GladMMO/Interop/Handlers/InteropCommand60Handler.cs | src/Booma.Proxy.Client.Unity.GladMMO/Interop/Handlers/InteropCommand60Handler.cs | using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Common.Logging;
namespace Booma.Proxy
{
/// <summary>
/// Implementation of the message handler
/// that handles specifically <see cref="BlockNetworkCommand60EventClientPayload"/> and dispatches the casted <typep... | using System;
using System.Collections.Generic;
using System.Text;
using Common.Logging;
namespace Booma.Proxy
{
/// <summary>
/// Implementation of the message handler
/// that handles specifically <see cref="BlockNetworkCommand60EventClientPayload"/> and dispatches the casted <typeparamref name="TSubCommandType"... | agpl-3.0 | C# |
f5631f3a5345daecbe8f3d545fde7a477f11247e | Add extensions for other folders | ginach/onedrive-sdk-csharp,OneDrive/onedrive-sdk-csharp | src/OneDriveSdk/Requests/Extensions/SpecialCollectionRequestBuilderExtensions.cs | src/OneDriveSdk/Requests/Extensions/SpecialCollectionRequestBuilderExtensions.cs | // ------------------------------------------------------------------------------
// Copyright (c) 2015 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 withou... | // ------------------------------------------------------------------------------
// Copyright (c) 2015 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 withou... | mit | C# |
e60d6b152e0a147942f646bbf963f5b5fd74dac6 | Add Do Somthing | seyedk/Staffing | Staffing/Staffing/Program.cs | Staffing/Staffing/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Staffing
{
class Program
{
static void Main(string[] args)
{
}
static void DoSomthing()
{
Console.WriteLine("I'm doing ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Staffing
{
class Program
{
static void Main(string[] args)
{
}
}
}
| mit | C# |
780b6e933b0030c0d05d8f9c144568631b93ae33 | Remove unnecessary delegate redirects | ppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,peppy/osu-framework,ZLima12/osu-framework | osu.Framework/Input/Handlers/Joystick/JoystickHandler.cs | osu.Framework/Input/Handlers/Joystick/JoystickHandler.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Input.StateChanges;
using osu.Framework.Platform;
using osu.Framework.Statistics;
namespace osu.Framework.Input.Handlers.Joystick
{
public class ... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Input.StateChanges;
using osu.Framework.Platform;
using osu.Framework.Statistics;
namespace osu.Framework.Input.Handlers.Joystick
{
public class ... | mit | C# |
ba9d23bf77773dce672f6e7dd58a0bff905aec65 | Update Common.cs | alexguirre/RAGENativeUI,alexguirre/RAGENativeUI | Source/Common.cs | Source/Common.cs | using System;
using Rage;
using Rage.Native;
namespace RAGENativeUI
{
public static class Common
{
/// <summary>
/// Fonts used by GTA V
/// </summary>
public enum EFont
{
ChaletLondon = 0,
HouseScript = 1,
Monospace = 2,
C... | using System;
using Rage;
using Rage.Native;
namespace RAGENativeUI
{
public static class Common
{
public enum EFont
{
ChaletLondon = 0,
HouseScript = 1,
Monospace = 2,
ChaletComprimeCologne = 4,
Pricedown = 7
}
public... | mit | C# |
e1ce546ca5c46d5d140d7e45910685da6092ffb0 | Use type/attribute for user secrets | martincostello/website,martincostello/website,martincostello/website,martincostello/website | src/Website/Startup.cs | src/Website/Startup.cs | // Copyright (c) Martin Costello, 2016. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
namespace MartinCostello.Website
{
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Ext... | // Copyright (c) Martin Costello, 2016. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
namespace MartinCostello.Website
{
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Ext... | apache-2.0 | C# |
4444078847f6f7bb1a40a6b7dac0d1fd801b61ab | Make TimeCache use MRU policy | Neio/DSAccessMonitor | TimeCache.cs | TimeCache.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Caching;
using System.Text;
using System.Threading.Tasks;
namespace PropertyChange
{
public interface ICache<T>
{
T Get(string key, Func<T> getValue);
}
public class TimeCache<T> : ICache<T> where T : clas... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Caching;
using System.Text;
using System.Threading.Tasks;
namespace PropertyChange
{
public interface ICache<T>
{
T Get(string key, Func<T> getValue);
}
public class TimeCache<T> : ICache<T> where T : clas... | mit | C# |
492b7d90049f415823240f97d059983ec131f838 | clean code | WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common | src/WeihanLi.Common/CacheUtil.cs | src/WeihanLi.Common/CacheUtil.cs | using System;
using System.Collections.Concurrent;
using System.Reflection;
using WeihanLi.Common.DependencyInjection;
namespace WeihanLi.Common
{
public static class CacheUtil
{
/// <summary>
/// TypePropertyCache
/// </summary>
public static readonly ConcurrentDictionary<Type... | using System;
using System.Collections.Concurrent;
using System.Reflection;
using WeihanLi.Common.DependencyInjection;
namespace WeihanLi.Common
{
public static class CacheUtil
{
/// <summary>
/// TypePropertyCache
/// </summary>
public static readonly ConcurrentDictionary<Type... | mit | C# |
97e2b4ef3a6eb9e0572bfcc761e565e97e5d1f6a | Add Test to JSBridge | RonnChyran/snowflake,RonnChyran/snowflake,faint32/snowflake-1,RonnChyran/snowflake,SnowflakePowered/snowflake,SnowflakePowered/snowflake,faint32/snowflake-1,SnowflakePowered/snowflake,faint32/snowflake-1 | Snowflake.API/Core/API/JSAPI/JSBridge.cs | Snowflake.API/Core/API/JSAPI/JSBridge.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Snowflake.Core.API;
using Newtonsoft.Json;
using Snowflake.Extensions;
using Snowflake.Information.Game;
namespace Snowflake.Core.API.JSAPI
{
public static class JSBridge
{
public s... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Snowflake.Core.API;
using Newtonsoft.Json;
namespace Snowflake.Core.API.JSAPI
{
public static class JSBridge
{
public static string GetAllPlatforms(JSRequest request)
{
... | mpl-2.0 | C# |
21dc239007785e8249862b47ff402992e1302090 | Use safe exception handling. | hozuki/MilliSim,hozuki/MilliSim,hozuki/MilliSim | src/TheaterDays/Theater.Startup.cs | src/TheaterDays/Theater.Startup.cs | using System;
using CommandLine;
using JetBrains.Annotations;
using OpenMLTD.MilliSim.Core;
using OpenMLTD.MilliSim.Graphics;
using OpenMLTD.TheaterDays.Subsystems.Configuration;
using OpenMLTD.TheaterDays.Subsystems.Globalization;
using OpenMLTD.TheaterDays.Subsystems.Plugin;
namespace OpenMLTD.TheaterDays {
part... | using CommandLine;
using JetBrains.Annotations;
using OpenMLTD.MilliSim.Core;
using OpenMLTD.MilliSim.Graphics;
using OpenMLTD.TheaterDays.Subsystems.Configuration;
using OpenMLTD.TheaterDays.Subsystems.Globalization;
using OpenMLTD.TheaterDays.Subsystems.Plugin;
namespace OpenMLTD.TheaterDays {
partial class Thea... | mit | C# |
239fbaa9f7b0c6f26e4976413138ec8a6e308766 | Bring back old event methods as obsoleted | peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,ppy/osu-framework,ppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework | osu.Framework/Screens/Screen.cs | osu.Framework/Screens/Screen.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Timing;
namespace osu.Framework... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Timing;
namespace osu.Framework... | mit | C# |
6fdff6eae7a923b9329d4e5ede34462524ed4163 | remove erroneous clustering key attributes in CassandraPeerState | Abc-Arbitrage/Zebus | src/Abc.Zebus.Persistence.CQL/Data/CassandraPeerState.cs | src/Abc.Zebus.Persistence.CQL/Data/CassandraPeerState.cs | using Abc.Zebus.Persistence.CQL.Storage;
using Cassandra.Mapping.Attributes;
namespace Abc.Zebus.Persistence.CQL.Data
{
[Table("PeerState", CaseSensitive = true)]
public class CassandraPeerState
{
public CassandraPeerState(PeerState peerState)
{
PeerId = peerState.PeerId.ToStri... | using Abc.Zebus.Persistence.CQL.Storage;
using Cassandra.Mapping.Attributes;
namespace Abc.Zebus.Persistence.CQL.Data
{
[Table("PeerState", CaseSensitive = true)]
public class CassandraPeerState
{
public CassandraPeerState(PeerState peerState)
{
PeerId = peerState.PeerId.ToStri... | mit | C# |
14b951664320ed27b8a3affd09a9a9fa9f3e2d08 | Fix broken FxAssert helpers. | muhbaasu/fx-sharp | src/FxSharp.Tests/FxAssert.cs | src/FxSharp.Tests/FxAssert.cs | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace FxSharp.Tests
{
public static class FxAssert
{
public static void Throws<T, TRes>(Func<TRes> fn) where T : Exception
{
try
{
fn();
Assert.Fail();
}
... | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace FxSharp.Tests
{
public static class FxAssert
{
public static void Throws<T, TRes>(Func<TRes> fn) where T : Exception
{
try
{
fn();
}
catch (T)
... | apache-2.0 | C# |
f76fedfc36a4fce7181a3653aa3bb8d445e840ca | Fix XmlNamespaceOverrides for Message Header | DigDes/SoapCore | src/SoapCore/CustomMessage.cs | src/SoapCore/CustomMessage.cs | using System.ServiceModel.Channels;
using System.Xml;
namespace SoapCore
{
public class CustomMessage : Message
{
public CustomMessage()
{
}
public CustomMessage(Message message)
{
Message = message;
}
public Message Message { get; internal set; }
public XmlNamespaceManager NamespaceManager { g... | using System.ServiceModel.Channels;
using System.Xml;
namespace SoapCore
{
public class CustomMessage : Message
{
public CustomMessage()
{
}
public CustomMessage(Message message)
{
Message = message;
}
public Message Message { get; internal set; }
public XmlNamespaceManager NamespaceManager { g... | mit | C# |
7627781781d934c5e1ea8b7760b39e3fdec3677c | Rename Short to ShortField | laicasaane/VFW | Assets/Plugins/Editor/Vexe/GUIs/BaseGUI/Controls/Shorts.cs | Assets/Plugins/Editor/Vexe/GUIs/BaseGUI/Controls/Shorts.cs | using UnityEngine;
namespace Vexe.Editor.GUIs
{
public abstract partial class BaseGUI
{
public short ShortField(short value)
{
return ShortField(string.Empty, value);
}
public short ShortField(string label, short value)
{
return ShortField(label, value, null);
}
public short ShortField(string l... | using UnityEngine;
namespace Vexe.Editor.GUIs
{
public abstract partial class BaseGUI
{
public short Short(short value)
{
return Short(string.Empty, value);
}
public short Short(string label, short value)
{
return Short(label, value, null);
}
public short Short(string label, string tooltip, sho... | mit | C# |
a7742d61d9469d4a1da3ea592f5d84d7c23d60b6 | Fix missing string format parameter | Microsoft/clrmd,cshung/clrmd,cshung/clrmd,tomasr/clrmd,Microsoft/clrmd | src/Microsoft.Diagnostics.Runtime/MemoryReadException.cs | src/Microsoft.Diagnostics.Runtime/MemoryReadException.cs | using System.IO;
namespace Microsoft.Diagnostics.Runtime
{
/// <summary>
/// Thrown when we fail to read memory from the target process.
/// </summary>
public class MemoryReadException : IOException
{
/// <summary>
/// The address of memory that could not be read.
/// </sum... | using System.IO;
namespace Microsoft.Diagnostics.Runtime
{
/// <summary>
/// Thrown when we fail to read memory from the target process.
/// </summary>
public class MemoryReadException : IOException
{
/// <summary>
/// The address of memory that could not be read.
/// </sum... | mit | C# |
17fb0db1848ab475fc34fb4f205dd32f18fd6259 | Add TcpClient property to Message, issue #9 | BrandonPotter/SimpleTCP | SimpleTCP/Message.cs | SimpleTCP/Message.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace SimpleTCP
{
public class Message
{
private TcpClient _tcpClient;
private System.Text.Encoding _encoder = null;
private byte _writeLine... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace SimpleTCP
{
public class Message
{
private TcpClient _tcpClient;
private System.Text.Encoding _encoder = null;
private byte _writeLine... | apache-2.0 | C# |
3280ab006a0c16da345d5bb39e2e709962f4cf4f | add config option to send logging output to the console | assaframan/MoviesRestForAppHarbor,assaframan/MoviesRestForAppHarbor,ServiceStack/ServiceStack.Examples,ServiceStack/ServiceStack.Examples,zhaokunfay/ServiceStack.Examples,ServiceStack/ServiceStack.Examples,assaframan/MoviesRestForAppHarbor,zhaokunfay/ServiceStack.Examples,zhaokunfay/ServiceStack.Examples,zhaokunfay/Ser... | src/RedisStackOverflow/RedisStackOverflow/Global.asax.cs | src/RedisStackOverflow/RedisStackOverflow/Global.asax.cs | using System;
using Funq;
using RedisStackOverflow.ServiceInterface;
using ServiceStack.Configuration;
using ServiceStack.Logging;
using ServiceStack.Logging.Support.Logging;
using ServiceStack.Redis;
using ServiceStack.WebHost.Endpoints;
namespace RedisStackOverflow
{
public class AppHost
: AppHostBase
{
publi... | using System;
using Funq;
using RedisStackOverflow.ServiceInterface;
using ServiceStack.Redis;
using ServiceStack.WebHost.Endpoints;
namespace RedisStackOverflow
{
public class AppHost
: AppHostBase
{
public AppHost()
: base("Redis StackOverflow", typeof(QuestionsService).Assembly) { }
public override voi... | bsd-3-clause | C# |
659b17cb1c021af87abdd4ccba09dd9a9b68bda0 | Add delete endpoint | mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander | Battery-Commander.Web/Controllers/API/WeaponsController.cs | Battery-Commander.Web/Controllers/API/WeaponsController.cs | using BatteryCommander.Web.Models;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
namespace BatteryCommander.Web.Controllers.API
{
[Route("api/[contr... | using BatteryCommander.Web.Models;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
namespace BatteryCommander.Web.Controllers.API
{
[Route("api/[contr... | mit | C# |
e096628e3d9c67b5f80c5ebfa53e5154bd5d042b | Add method to get service settings | DotNetRu/App,DotNetRu/App | DotNetRu.AzureService/Controllers/DiagnosticsController.cs | DotNetRu.AzureService/Controllers/DiagnosticsController.cs | using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using DotNetRu.AzureService;
namespace DotNetRu.Azure
{
[Route("diagnostics")]
public class DiagnosticsController : ControllerBase
{
private readonly ILogger logger;
private readonly RealmSettings realmSettings;
pr... | using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
using System;
namespace DotNetRu.Azure
{
[Route("diagnostics")]
public class DiagnosticsController : ControllerBase
{
private readonly ILogger logger;
public D... | mit | C# |
1a62a3e205c1dd3ed4354f000be4acca55726145 | Set the GetAvailableJobChunksResponseParser to explicitly internal since Doxygen doesn't understand C# very well. | RachelTucker/ds3_net_sdk,rpmoore/ds3_net_sdk,RachelTucker/ds3_net_sdk,SpectraLogic/ds3_net_sdk,SpectraLogic/ds3_net_powershell,RachelTucker/ds3_net_sdk,shabtaisharon/ds3_net_sdk,asomers/ds3_net_sdk,SpectraLogic/ds3_net_sdk,SpectraLogic/ds3_net_sdk,rpmoore/ds3_net_sdk,shabtaisharon/ds3_net_sdk,rpmoore/ds3_net_sdk,Spectr... | Ds3/ResponseParsers/GetAvailableJobChunksResponseParser.cs | Ds3/ResponseParsers/GetAvailableJobChunksResponseParser.cs | /*
* ******************************************************************************
* Copyright 2014 Spectra Logic Corporation. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use
* this file except in compliance with the License. A copy of the License is lo... | /*
* ******************************************************************************
* Copyright 2014 Spectra Logic Corporation. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use
* this file except in compliance with the License. A copy of the License is lo... | apache-2.0 | C# |
b0ef77efd9d3c185cfccf7e9540ca4093f21fb11 | Fix V3093 | Rohansi/Texter | Texter/TextRegion.cs | Texter/TextRegion.cs | using System;
namespace Texter
{
public class TextRegion : ITextRenderer
{
public uint Width { get; private set; }
public uint Height { get; private set; }
private ITextRenderer _renderer;
private int _startX;
private int _startY;
internal TextRegion(ITextRend... | using System;
namespace Texter
{
public class TextRegion : ITextRenderer
{
public uint Width { get; private set; }
public uint Height { get; private set; }
private ITextRenderer _renderer;
private int _startX;
private int _startY;
internal TextRegion(ITextRend... | mit | C# |
ec8d119a45c1f092a21dab78b0141f9f36bffb28 | Update GetWarningsForFontSubstitution.cs | aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells... | Examples/CSharp/Articles/GetWarningsForFontSubstitution.cs | Examples/CSharp/Articles/GetWarningsForFontSubstitution.cs | using System.IO;
using Aspose.Cells;
using System.Diagnostics;
namespace Aspose.Cells.Examples.Articles
{
//ExStart:1
public class GetWarningsForFontSubstitution : IWarningCallback
{
public void Warning(WarningInfo info)
{
if (info.WarningType == WarningType.FontSubstitution)
... | using System.IO;
using Aspose.Cells;
using System.Diagnostics;
namespace Aspose.Cells.Examples.Articles
{
//ExStart:1
public class GetWarningsForFontSubstitution : IWarningCallback
{
public void Warning(WarningInfo info)
{
if (info.WarningType == WarningType.FontSubstitution)
... | mit | C# |
91b3b791ff79621a48e56aa3df2553eca8a88936 | Fix to avoid unwanted updates after builds | sitofabi/duplicati,sitofabi/duplicati,duplicati/duplicati,duplicati/duplicati,duplicati/duplicati,sitofabi/duplicati,sitofabi/duplicati,mnaiman/duplicati,mnaiman/duplicati,mnaiman/duplicati,mnaiman/duplicati,sitofabi/duplicati,mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati | Installer/Windows/UpdateVersion/Properties/AssemblyInfo.cs | Installer/Windows/UpdateVersion/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("UpdateVersion")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assem... | using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("UpdateVersion")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[asse... | lgpl-2.1 | C# |
da8f6785ae133c60d6bf7f6a9593814606b37702 | Switch around year and nickname in AssemblyCopyright | OatmealDome/SplatoonUtilities | MusicRandomizer/MusicRandomizer/Properties/AssemblyInfo.cs | MusicRandomizer/MusicRandomizer/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | mit | C# |
961bea5cd3577eba03f5be8ca172c0d0ea6851b1 | Add get best id method for person. | henrikfroehling/TraktApiSharp | Source/Lib/TraktApiSharp/Objects/Get/People/TraktPerson.cs | Source/Lib/TraktApiSharp/Objects/Get/People/TraktPerson.cs | namespace TraktApiSharp.Objects.Get.People
{
using Extensions;
using Newtonsoft.Json;
using System;
/// <summary>A Trakt person.</summary>
public class TraktPerson
{
/// <summary>Gets or sets the person name.</summary>
[JsonProperty(PropertyName = "name")]
public string... | namespace TraktApiSharp.Objects.Get.People
{
using Extensions;
using Newtonsoft.Json;
using System;
public class TraktPerson
{
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
[JsonProperty(PropertyName = "ids")]
public TraktPersonIds Ids { ge... | mit | C# |
4eec1afd07eebedab12c19d2b4f038e1739d0923 | Modify trace injector to http injector | criteo/zipkin4net,criteo/zipkin4net | zipkin4net-aspnetcore/Criteo.Profiling.Tracing.Middleware/TracingHandler.cs | zipkin4net-aspnetcore/Criteo.Profiling.Tracing.Middleware/TracingHandler.cs | using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using Criteo.Profiling.Tracing.Transport;
namespace Criteo.Profiling.Tracing.Middleware
{
public class TracingHandler : DelegatingHandler
{
private readonly ZipkinHttpTraceInjector _injector;
private readonly st... | using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using Criteo.Profiling.Tracing.Transport;
namespace Criteo.Profiling.Tracing.Middleware
{
public class TracingHandler : DelegatingHandler
{
private readonly ITraceInjector<HttpHeaders> _injector;
private readonl... | apache-2.0 | C# |
ade5805b083bf693bd6ea63a06ff0a94cdc62ede | Fix master server auto-update with /nightly flag | gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer,DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer | LmpUpdater/Appveyor/AppveyorUpdateChecker.cs | LmpUpdater/Appveyor/AppveyorUpdateChecker.cs | using LmpGlobal;
using LmpUpdater.Appveyor.Contracts;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Net;
namespace LmpUpdater.Appveyor
{
public class AppveyorUpdateChecker
{
public static RootObject LatestBuild
{
get
{
try... | using LmpGlobal;
using LmpUpdater.Appveyor.Contracts;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Net;
namespace LmpUpdater.Appveyor
{
public class AppveyorUpdateChecker
{
public static RootObject LatestBuild
{
get
{
try... | mit | C# |
c7a2632500e55901aab327a1ef60e06b9341335b | Correct a minor typo | ft-/arribasim-dev-tests,intari/OpenSimMirror,allquixotic/opensim-autobackup,AlphaStaxLLC/taiga,ft-/opensim-optimizations-wip-tests,cdbean/CySim,justinccdev/opensim,ft-/opensim-optimizations-wip,intari/OpenSimMirror,ft-/arribasim-dev-extras,QuillLittlefeather/opensim-1,EriHoss/OpenSim_0.8.2.0_Dev_LibLSLCC,N3X15/VoxelSim... | OpenSim/Services/Interfaces/IAuthenticationService.cs | OpenSim/Services/Interfaces/IAuthenticationService.cs | using System;
using OpenMetaverse;
namespace OpenSim.Services.Interfaces
{
public interface IAuthenticationService
{
string GetNewKey(UUID userID, UUID authToken);
bool VerifyKey(UUID userID, string key);
bool VerifySession(UUID userID, UUID sessionID);
}
}
| using System;
using OpenMetaverse;
namespace OpenSim.Services.Interfaces
{
public interface IAuthenticationService
{
string GetNewKey(UUID userID, UUID authToken);
bool VerifyKey(UUID userID, string key);
bool VerifySession(UUID iserID, UUID sessionID);
}
}
| bsd-3-clause | C# |
463be0cec2ba8f804a168c1105a7387bc1df851a | Test boton random | Portafolio-titulo2017-Grupo3/Sistema_escritorio_NET | OrionEscritorio/OrionEscritorio/TEST_RAMA.Designer.cs | OrionEscritorio/OrionEscritorio/TEST_RAMA.Designer.cs | namespace OrionEscritorio
{
partial class TEST_RAMA
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
///... | namespace OrionEscritorio
{
partial class TEST_RAMA
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
///... | mit | C# |
91e514bb75e386f82e03affbf51e63573486fedd | change qctools extensions to .gz | IUMDPI/IUMediaHelperApps | Packager/Models/FileModels/QualityControlFileModel.cs | Packager/Models/FileModels/QualityControlFileModel.cs | using System.IO;
namespace Packager.Models.FileModels
{
public class QualityControlFileModel : AbstractObjectFileModel
{
public QualityControlFileModel(AbstractObjectFileModel fileModel)
{
SequenceIndicator = fileModel.SequenceIndicator;
Extension = ".gz";
F... | using System.IO;
namespace Packager.Models.FileModels
{
public class QualityControlFileModel : AbstractObjectFileModel
{
public QualityControlFileModel(AbstractObjectFileModel fileModel)
{
SequenceIndicator = fileModel.SequenceIndicator;
Extension = ".zip";
... | apache-2.0 | C# |
16e725d4e4802f674175f6d6b82a6a0b6476244a | Test coverage for continue and return in loops | agileobjects/ReadableExpressions | ReadableExpressions.UnitTests/WhenTranslatingLoops.cs | ReadableExpressions.UnitTests/WhenTranslatingLoops.cs | namespace AgileObjects.ReadableExpressions.UnitTests
{
using System;
using System.Linq.Expressions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
[TestClass]
public class WhenTranslatingLoops
{
[TestMethod]
public void ShouldTranslateAnInfiniteLoop()
{
... | namespace AgileObjects.ReadableExpressions.UnitTests
{
using System;
using System.Linq.Expressions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
[TestClass]
public class WhenTranslatingLoops
{
[TestMethod]
public void ShouldTranslateAnInfiniteLoop()
{
... | mit | C# |
8d3bac2f83d077aeccc6ba2cb9486061bde711de | Fix TearDown in AccessTests | Shaddix/realm-dotnet,Shaddix/realm-dotnet,realm/realm-dotnet,Shaddix/realm-dotnet,realm/realm-dotnet,realm/realm-dotnet,Shaddix/realm-dotnet | Tests/IntegrationTests.Shared/AccessTests.cs | Tests/IntegrationTests.Shared/AccessTests.cs | /* Copyright 2015 Realm Inc - All Rights Reserved
* Proprietary and Confidential
*/
using System.IO;
using NUnit.Framework;
using Realms;
namespace IntegrationTests.Shared
{
[TestFixture]
public class AccessTests
{
protected string _databasePath;
protected Realm _realm;
[SetUp]... | /* Copyright 2015 Realm Inc - All Rights Reserved
* Proprietary and Confidential
*/
using System.IO;
using NUnit.Framework;
using Realms;
namespace IntegrationTests.Shared
{
[TestFixture]
public class AccessTests
{
protected string _databasePath;
protected Realm _realm;
[SetUp]... | apache-2.0 | C# |
3d84445e8b44675a645b692f2185ca54d28d801b | Update SimpleAdding.cs | michaeljwebb/Algorithm-Practice | Coderbyte/SimpleAdding.cs | Coderbyte/SimpleAdding.cs | //Add up all the numbers from 1 to num.
using System;
class MainClass {
public static int SimpleAdding(int num) {
int result = (num*(num+1))/2;
num = result;
return num;
}
static void Main() {
// keep this function call here
Console.WriteLine(SimpleAdding(Console.ReadLine()));
... | using System;
class MainClass {
public static int SimpleAdding(int num) {
int result = (num*(num+1))/2;
num = result;
return num;
}
static void Main() {
// keep this function call here
Console.WriteLine(SimpleAdding(Console.ReadLine()));
}
}
| mit | C# |
fd3a26c25df88d1efc6c22172c6e12c03fd6557a | Write data to OBJ and MTL | Stefander/JPMeshConverter | D3DMeshConverter/Form1.cs | D3DMeshConverter/Form1.cs | using System;
using System.IO;
using System.Windows.Forms;
namespace JPMeshConverter {
public partial class Form1 : Form {
private ModelFileDialog fileDialog;
public Form1() {
InitializeComponent();
fileDialog = new ModelFileDialog(System.AppDomain.CurrentDomain.BaseDirect... | using System;
using System.IO;
using System.Windows.Forms;
namespace JPMeshConverter {
public partial class Form1 : Form {
private ModelFileDialog fileDialog;
public Form1() {
InitializeComponent();
fileDialog = new ModelFileDialog(System.AppDomain.CurrentDomain.BaseDirect... | mit | C# |
f2151687b7a675a0e0fda37bc1bf790f528cb3ba | Fix labs lasting FOR EVER | adurdin/ggj2015 | Alcove/Assets/GameSession/GameConstants.cs | Alcove/Assets/GameSession/GameConstants.cs | using UnityEngine;
using System.Collections;
public class GameConstants {
// Gameplay
public const int PLAYER_COUNT = 2;
public const int NUM_TRIBES_PER_PLAYER = 4;
public const float RECRUITMENT_AREA_DEFAULT_SPAWN_TIME = 0.5f;
public const float RECRUITMENT_AREA_GROUND_WIDTH = 15.0f;
public const float RECRU... | using UnityEngine;
using System.Collections;
public class GameConstants {
// Gameplay
public const int PLAYER_COUNT = 2;
public const int NUM_TRIBES_PER_PLAYER = 4;
public const float RECRUITMENT_AREA_DEFAULT_SPAWN_TIME = 0.5f;
public const float RECRUITMENT_AREA_GROUND_WIDTH = 15.0f;
public const float RECRU... | mit | C# |
5a4b80c73d04929c06bd8056d18de4e693f42494 | Fix UnitTests build | lion92pl/IIUWr,lion92pl/IIUWr | IIUWr/UnitTests/Mocks/Fereol/HTMLParsing/HTTPConnection.cs | IIUWr/UnitTests/Mocks/Fereol/HTMLParsing/HTTPConnection.cs | using IIUWr.Fereol.HTMLParsing.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UnitTests.Mocks.Fereol.HTMLParsing
{
internal class HTTPConnection : IHTTPConnection
{
private readonly string _result;
public... | using IIUWr.Fereol.HTMLParsing.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UnitTests.Mocks.Fereol.HTMLParsing
{
internal class HTTPConnection : IHTTPConnection
{
private readonly string _result;
public... | mit | C# |
77f6fe29fac3252bc934b06b700ced01b6afd1ae | Fix TestController. | enarod/enarod-web-api,enarod/enarod-web-api,enarod/enarod-web-api | Infopulse.EDemocracy.Web/Controllers/API/TestController.cs | Infopulse.EDemocracy.Web/Controllers/API/TestController.cs | using System.Linq;
using System.Web.Http;
using Infopulse.EDemocracy.Web.Auth;
namespace Infopulse.EDemocracy.Web.Controllers.API
{
public class TestController : BaseApiController
{
[HttpGet]
[Authorize]
[AuthorizationCheckFilter(RequiredRolesString = "admin")]
[Route("api/test/ping")]
public string Ping(... | using System.Web;
using System.Web.Http;
using Infopulse.EDemocracy.Web.Auth;
namespace Infopulse.EDemocracy.Web.Controllers.API
{
public class TestController : BaseApiController
{
[HttpGet]
[Authorize]
[AuthorizationCheckFilter(RequiredRolesString = "admin")]
[Route("api/test/ping")]
public string Ping()... | cc0-1.0 | C# |
001368153870384ee1c6ae98b8d1e00c1e9ccec3 | Bump assembly version | Redth/AndHUD,Redth/AndHUD | AndHUD/AssemblyVersion.cs | AndHUD/AssemblyVersion.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can defau... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can defau... | apache-2.0 | C# |
98f3aba50c95fcb7b07174b7157c6e6eb91ae2d0 | Remove years from copyright | terrajobst/nquery,terrajobst/nquery | Src/CommonAssemblyInfo.cs | Src/CommonAssemblyInfo.cs | using System;
using System.Reflection;
using System.Runtime.InteropServices;
[assembly : AssemblyCopyright("Copyright Immo Landwerth")]
[assembly : AssemblyCompany("NQuery")]
[assembly : AssemblyProduct("NQuery")]
[assembly : CLSCompliant(false)]
[assembly : ComVisible(false)]
[assembly: AssemblyVersion(... | using System;
using System.Reflection;
using System.Runtime.InteropServices;
[assembly : AssemblyCopyright("Copyright 2005 - 2012 by Immo Landwerth")]
[assembly : AssemblyCompany("NQuery")]
[assembly : AssemblyProduct("NQuery")]
[assembly : CLSCompliant(false)]
[assembly : ComVisible(false)]
[assembly: A... | mit | C# |
61db725061d209fb733fe9762bdfc7f6d91ecf2f | Update Entity.cs | tiksn/TIKSN-Framework | TIKSN.Core/Data/Entity.cs | TIKSN.Core/Data/Entity.cs | using System;
namespace TIKSN.Data
{
public class Entity<T> : IEntity<T> where T : IEquatable<T>
{
public virtual T ID { get; }
}
}
| using System;
namespace TIKSN.Data
{
public class Entity<T> : IEntity<T> where T : IEquatable<T>
{
public virtual T ID { get; }
}
} | mit | C# |
cb6d35a98aae26f050f80279ea0ad603e2847432 | Add servicing breadcrumb attribute | yonglehou/WebApi,scz2011/WebApi,lungisam/WebApi,chimpinano/WebApi,congysu/WebApi,congysu/WebApi,abkmr/WebApi,lewischeng-ms/WebApi,LianwMS/WebApi,yonglehou/WebApi,chimpinano/WebApi,abkmr/WebApi,LianwMS/WebApi,lungisam/WebApi,lewischeng-ms/WebApi,scz2011/WebApi | src/CommonAssemblyInfo.cs | src/CommonAssemblyInfo.cs | // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Reflection;
using System.Resources;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Microsoft Open Technologies, Inc.")]
[assembly: Assembl... | // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Reflection;
using System.Resources;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Microsoft Open Technologies, Inc.")]
[assembly: Assembl... | mit | C# |
478c247645b29d6eaf0e8d6a01a02c9066a292e0 | Update ViewLocator.cs | wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D | src/Core2D/ViewLocator.cs | src/Core2D/ViewLocator.cs | #nullable enable
using Avalonia.Controls;
using Avalonia.Controls.Templates;
using Core2D.ViewModels;
using Dock.Model.ReactiveUI.Core;
namespace Core2D
{
[StaticViewLocator]
public partial class ViewLocator : IDataTemplate
{
public IControl Build(object data)
{
var type = data.... | #nullable disable
using System;
using Avalonia.Controls;
using Avalonia.Controls.Templates;
using Core2D.ViewModels;
using Dock.Model.ReactiveUI.Core;
namespace Core2D
{
[StaticViewLocator]
public partial class ViewLocator : IDataTemplate
{
public IControl Build(object data)
{
v... | mit | C# |
a2b39c473385bd773969e71e169fdbb0b1066c45 | Revert "menu" | RichardZC/Nacimientos,RichardZC/Nacimientos,RichardZC/Nacimientos | BL/MenuBL.cs | BL/MenuBL.cs | using BE;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BL.Modelo;
using System.Data.Entity;
namespace BL
{
public class MenuBL : Repositorio<menu>
{
public static List<Menu> ListarMenu()
{
using (var bd = ... | unlicense | C# | |
960fb80f828b9ee2fd53d4b14d76dbddd06d24d9 | update assemblyinfo | ravendb/ravendb.contrib | src/SharedAssemblyInfo.cs | src/SharedAssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("RavenDB Community")]
[assembly: AssemblyProduct("RavenDB Contributions")]
[assembly: AssemblyCopyright("Copyright © RavenDB Community Members")]
[assembly: ComVisible(false)]
| using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("RavenDB Community")]
[assembly: AssemblyProduct("RavenDB Contributions")]
[assembly: AssemblyCopyright("Copyright © 2012 - RavenDB Community Members")]
[assembly: ComVisible(false)]
| mit | C# |
2e168ca512aae82446dee8db211b325bf8a8b56a | Refactor Program_Downloads_Data_Files() to determine dynamically whether it should be skipped. | martincostello/electronicupdates,experiandataquality/electronicupdates,experiandataquality/electronicupdates,martincostello/electronicupdates,martincostello/electronicupdates,martincostello/electronicupdates,experiandataquality/electronicupdates,martincostello/electronicupdates,experiandataquality/electronicupdates,exp... | CSharp/MetadataWebApi/MetadataWebApi.Tests/IntegrationTests.cs | CSharp/MetadataWebApi/MetadataWebApi.Tests/IntegrationTests.cs | //-----------------------------------------------------------------------
// <copyright file="IntegrationTests.cs" company="Experian Data Quality">
// Copyright (c) Experian. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.Glo... | //-----------------------------------------------------------------------
// <copyright file="IntegrationTests.cs" company="Experian Data Quality">
// Copyright (c) Experian. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.Glo... | apache-2.0 | C# |
10080a492aaafb5a3636fc8235eb6fc21a626e2b | Fix for balance null ref | mattgwagner/Cash-Flow-Projection,mattgwagner/Cash-Flow-Projection,mattgwagner/Cash-Flow-Projection,mattgwagner/Cash-Flow-Projection | src/Cash-Flow-Projection/Models/Balance.cs | src/Cash-Flow-Projection/Models/Balance.cs | using System;
using System.Collections.Generic;
using System.Linq;
namespace Cash_Flow_Projection.Models
{
public static class Balance
{
public static Decimal CurrentBalance(this IEnumerable<Entry> entries, Account account = Account.Cash)
{
return GetLastBalanceEntry(entries, accou... | using System;
using System.Collections.Generic;
using System.Linq;
namespace Cash_Flow_Projection.Models
{
public static class Balance
{
public static Decimal CurrentBalance(this IEnumerable<Entry> entries, Account account = Account.Cash)
{
return GetLastBalanceEntry(entries, accou... | mit | C# |
fca2a4cd4de12eba0c40b4f606b6de627991c7dd | Add some paging stuff | Krusen/ErgastApi.Net | src/ErgastiApi/Responses/ErgastResponse.cs | src/ErgastiApi/Responses/ErgastResponse.cs | using System;
using ErgastApi.Serialization;
using Newtonsoft.Json;
namespace ErgastApi.Responses
{
public interface IErgastResponse
{
string Url { get; }
int Limit { get; }
int Offset { get; }
int Total { get; }
int Page { get; }
int TotalPages { get; }
... | using ErgastApi.Serialization;
using Newtonsoft.Json;
namespace ErgastApi.Responses
{
public interface IErgastResponse
{
string Url { get; set; }
int Limit { get; set; }
int Offset { get; set; }
int Total { get; set; }
}
public class ErgastResponse : IErgastResponse... | unlicense | C# |
b71b082850e90e1a52294c55c9a0325a2b05f56f | Update MartijnVanDijk.cs | planetxamarin/planetxamarin,MabroukENG/planetxamarin,beraybentesen/planetxamarin,MabroukENG/planetxamarin,stvansolano/planetxamarin,beraybentesen/planetxamarin,planetxamarin/planetxamarin,stvansolano/planetxamarin,MabroukENG/planetxamarin,beraybentesen/planetxamarin,stvansolano/planetxamarin,planetxamarin/planetxamarin... | src/Firehose.Web/Authors/MartijnVanDijk.cs | src/Firehose.Web/Authors/MartijnVanDijk.cs | using System;
using System.Collections.Generic;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class MartijnVanDijk : IAmAMicrosoftMVP, IAmAXamarinMVP
{
public IEnumerable<Uri> FeedUris
{
get { yield return new Uri("https://medium.com/feed/@martijn00"); ... | using System;
using System.Collections.Generic;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class MartijnVanDijk : IAmAMicrosoftMVP, IAmAXamarinMVP
{
public IEnumerable<Uri> FeedUris
{
get { yield return new Uri("https://medium.com/feed/@martijn00"); ... | mit | C# |
5625cdc78931ce00d2146f6530aa5f33928ec172 | Mark MsSqlCe40Dialect as supports variable limit (NH-3194) | gliljas/nhibernate-core,nhibernate/nhibernate-core,RogerKratz/nhibernate-core,ngbrown/nhibernate-core,hazzik/nhibernate-core,nhibernate/nhibernate-core,ngbrown/nhibernate-core,livioc/nhibernate-core,RogerKratz/nhibernate-core,ManufacturingIntelligence/nhibernate-core,alobakov/nhibernate-core,fredericDelaporte/nhibernat... | src/NHibernate/Dialect/MsSqlCe40Dialect.cs | src/NHibernate/Dialect/MsSqlCe40Dialect.cs | using NHibernate.Dialect.Function;
using NHibernate.SqlCommand;
namespace NHibernate.Dialect
{
public class MsSqlCe40Dialect : MsSqlCeDialect
{
public MsSqlCe40Dialect()
{
RegisterFunction("concat", new VarArgsSQLFunction(NHibernateUtil.String, "(", "+", ")"));
}
public override bool Supports... | using NHibernate.Dialect.Function;
using NHibernate.SqlCommand;
namespace NHibernate.Dialect
{
public class MsSqlCe40Dialect : MsSqlCeDialect
{
public MsSqlCe40Dialect()
{
RegisterFunction("concat", new VarArgsSQLFunction(NHibernateUtil.String, "(", "+", ")"));
}
public override bool Supports... | lgpl-2.1 | C# |
e5419d7561a7f3f8d2cf545b18c9b407291ed1de | Update RequestedPermission.cs | timheuer/alexa-skills-dotnet,stoiveyp/alexa-skills-dotnet | Alexa.NET/Response/RequestedPermission.cs | Alexa.NET/Response/RequestedPermission.cs | using System;
namespace Alexa.NET.Response
{
public static class RequestedPermission
{
public const string ReadHouseholdList = "alexa::household:lists:read";
public const string WriteHouseholdList = "alexa::household:lists:write";
public const string FullAddress = "read::alexa:device:a... | using System;
namespace Alexa.NET.Response
{
public static class RequestedPermission
{
public const string ReadHouseholdList = "read::alexa:household:list";
public const string WriteHouseholdList = "write::alexa:household:list";
public const string FullAddress = "read::alexa:device:all... | mit | C# |
60877901c9afd44cbf2b4f6cb3e22010d8a0c732 | Prepare 0.6.1 release | LouisTakePILLz/ArgumentParser | ArgumentParser/Properties/AssemblyInfo.cs | ArgumentParser/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ArgumentParser")]
[assembly: AssemblyDescr... | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ArgumentParser")]
[assembly: AssemblyDescr... | apache-2.0 | C# |
eef0eaa1901c51c638e98865a15ccdfd62f53731 | Fix unity call in another thread | gavazquez/LunaMultiPlayer,DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer | Client/Systems/VesselPartModuleSyncSys/VesselPartModuleSyncMessageHandler.cs | Client/Systems/VesselPartModuleSyncSys/VesselPartModuleSyncMessageHandler.cs | using LunaClient.Base;
using LunaClient.Base.Interface;
using LunaClient.VesselUtilities;
using LunaCommon.Message.Data.Vessel;
using LunaCommon.Message.Interface;
using System.Collections.Concurrent;
namespace LunaClient.Systems.VesselPartModuleSyncSys
{
public class VesselPartModuleSyncMessageHandler : SubSyste... | using LunaClient.Base;
using LunaClient.Base.Interface;
using LunaClient.VesselUtilities;
using LunaCommon.Message.Data.Vessel;
using LunaCommon.Message.Interface;
using System.Collections.Concurrent;
namespace LunaClient.Systems.VesselPartModuleSyncSys
{
public class VesselPartModuleSyncMessageHandler : SubSyste... | mit | C# |
41cf8d5db407803fdeb39fcea4630ae98a75b405 | Fix casing of German NaturalText | kappy/DateTimeExtensions | DateTimeExtensions/NaturalText/CultureStrategies/DE_DENaturalTimeStrategy.cs | DateTimeExtensions/NaturalText/CultureStrategies/DE_DENaturalTimeStrategy.cs | #region License
//
// Copyright (c) 2011-2012, João Matos Silva <kappy@acydburne.com.pt>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE... | #region License
//
// Copyright (c) 2011-2012, João Matos Silva <kappy@acydburne.com.pt>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE... | apache-2.0 | C# |
0269281a9c013b3089aa7c3f567678a22003b01a | Fix possible NullRef | awaescher/RepoZ,awaescher/RepoZ | RepoZ.Ipc/Repository.cs | RepoZ.Ipc/Repository.cs | namespace RepoZ.Ipc
{
[System.Diagnostics.DebuggerDisplay("{Name}")]
public class Repository
{
public static Repository FromString(string value)
{
var parts = value?.Split(new string[] { "::" }, System.StringSplitOptions.None);
var partsCount = parts?.Length ?? 0;
var val... | namespace RepoZ.Ipc
{
[System.Diagnostics.DebuggerDisplay("{Name}")]
public class Repository
{
public static Repository FromString(string value)
{
var parts = value?.Split(new string[] { "::" }, System.StringSplitOptions.None);
var validFormat = parts.Length == 3 || parts.Le... | mit | C# |
f8fc78ce56f8f0744a5271a41de83ae2f7e0ca95 | remove die button | Zogzer/Applebot,Yen/Applebot,Zogzer/Applebot | Services/PingService.cs | Services/PingService.cs | using System;
using System.Globalization;
using System.Threading;
using System.Threading.Tasks;
namespace Applebot.Services
{
class PingService : IGatewayConsumerService
{
public string FriendlyName => "Ping Pong";
public async Task ConsumeMessageAsync(IGatewayMessage message, CancellationToke... | using System;
using System.Globalization;
using System.Threading;
using System.Threading.Tasks;
namespace Applebot.Services
{
class PingService : IGatewayConsumerService
{
public string FriendlyName => "Ping Pong";
public async Task ConsumeMessageAsync(IGatewayMessage message, CancellationToke... | mit | C# |
eb33c42da9d71ca6808f008fad1f1be5c08115ff | correct polyfill order | sf-takaki-umemura/angular-study,asadsahi/AspNetCoreSpa,hillinworks/echoisles,mak-in/sf-attendance,mak-in/sf-attendance,s-gotou/SF-kinjiro,asadsahi/AspNetCoreSpa,s-gotou/SF-kinjiro,asadsahi/AspNetCoreSpa,asadsahi/AspNetCoreSpa,mak-in/sf-attendance,hillinworks/echoisles,sf-takaki-umemura/angular-study,sf-takaki-umemura/a... | Views/Home/Index.cshtml | Views/Home/Index.cshtml | <style>
div.app-spinner {
position: fixed;
top: 50%;
left: 50%;
}
</style>
<div class="container">
<appc-root>
<div class="app-spinner">
<i class="fa fa-spinner fa-spin fa-5x" aria-hidden="true"></i>
</div>
</appc-root>
</div>
<script>
window.use... | <style>
div.app-spinner {
position: fixed;
top: 50%;
left: 50%;
}
</style>
<div class="container">
<appc-root>
<div class="app-spinner">
<i class="fa fa-spinner fa-spin fa-5x" aria-hidden="true"></i>
</div>
</appc-root>
</div>
<script>
window.use... | mit | C# |
f479c81cb637a93ae605e79b4c2326bf006b0c55 | Update GetInput.cs | plivo/plivo-dotnet,plivo/plivo-dotnet | src/Plivo/XML/GetInput.cs | src/Plivo/XML/GetInput.cs | using dict = System.Collections.Generic.Dictionary<string, string>;
using list = System.Collections.Generic.List<string>;
namespace Plivo.XML
{
public class GetInput : PlivoElement
{
public GetInput(string body, dict parameters)
: base(body, parameters)
{
Nestables = new... | using dict = System.Collections.Generic.Dictionary<string, string>;
using list = System.Collections.Generic.List<string>;
namespace Plivo.XML
{
public class GetInput : PlivoElement
{
public GetInput(string body, dict parameters)
: base(body, parameters)
{
Nestables = new... | mit | C# |
882ace6efea12be861efc400d5b61e0a8dd48a0d | Make MultiplayerRoomUser equatable | NeoAdonis/osu,NeoAdonis/osu,peppy/osu,ppy/osu,smoogipoo/osu,smoogipooo/osu,NeoAdonis/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu-new,UselessToucan/osu,ppy/osu,peppy/osu | osu.Game/Online/RealtimeMultiplayer/MultiplayerRoomUser.cs | osu.Game/Online/RealtimeMultiplayer/MultiplayerRoomUser.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Game.Users;
namespace osu.Game.Online.RealtimeMultiplayer
{
public class MultiplayerRoomUser : IEquatable<MultiplayerRoomUser>
{
... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Users;
namespace osu.Game.Online.RealtimeMultiplayer
{
public class MultiplayerRoomUser
{
public MultiplayerRoomUser(in int userId)
... | mit | C# |
10d99a180da9d61d0b989f482a5fc1a45b3f420b | Optimize ToReadOnlyList when we know the length already | jskeet/DemoCode,jskeet/DemoCode,jskeet/DemoCode,jskeet/DemoCode | Drums/VDrumExplorer.Utility/Enumerable.cs | Drums/VDrumExplorer.Utility/Enumerable.cs | // Copyright 2020 Jon Skeet. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
namespace VDrumExplorer.Utility
{
/// <summary>
///... | // Copyright 2020 Jon Skeet. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
using System;
using System.Collections.Generic;
using System.Linq;
namespace VDrumExplorer.Utility
{
/// <summary>
/// LINQ-like methods for common operatio... | apache-2.0 | C# |
2d4151245443ba166cb946c1b9db2313266c029c | update profiler test | WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common | test/WeihanLi.Common.Test/ProfilerTest.cs | test/WeihanLi.Common.Test/ProfilerTest.cs | using System.Threading;
using Xunit;
namespace WeihanLi.Common.Test
{
public class ProfilerTest
{
[Theory]
[InlineData(100)]
[InlineData(500)]
[InlineData(1000)]
public void StopWatchProfileTest(int delay)
{
var profiler = new StopwatchProfiler();
... | using System.Threading;
using Xunit;
namespace WeihanLi.Common.Test
{
public class ProfilerTest
{
[Theory]
[InlineData(100)]
[InlineData(500)]
[InlineData(1000)]
public void StopWatchProfileTest(int delay)
{
var profiler = new StopwatchProfiler();
... | mit | C# |
2bc6932567548187d6696f4900ae98cfd1eaddc9 | make interface mod applicable | UselessToucan/osu,UselessToucan/osu,peppy/osu,2yangk23/osu,NeoAdonis/osu,EVAST9919/osu,NeoAdonis/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,johnneijzen/osu,peppy/osu-new,ppy/osu,2yangk23/osu,ppy/osu,peppy/osu,johnneijzen/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,EVAST9919/osu,smoogipooo/osu | osu.Game/Rulesets/Mods/IModHasSettings.cs | osu.Game/Rulesets/Mods/IModHasSettings.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
namespace osu.Game.Rulesets.Mods
{
/// <summary>
/// An interface for mods that allows user control over it's properties.
/// <... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
namespace osu.Game.Rulesets.Mods
{
/// <summary>
/// An interface for mods that allows user control over it's properties.
/// <... | mit | C# |
cde8de154d10e5470dac1f974938e861d2b8db72 | Remove unused test property for now | ppy/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu-new,peppy/osu,smoogipooo/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,peppy/osu | osu.Game/Tests/Visual/TestReplayPlayer.cs | osu.Game/Tests/Visual/TestReplayPlayer.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Bindables;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rul... | mit | C# |
c3c3cb1490ca0c75898be137c2895d04c2d1b0a0 | fix the name of the AppDirectory for the Content Editor | svmnotn/cuddly-octo-adventure | ContentCreator/Program.cs | ContentCreator/Program.cs | namespace COA.ContentCreator {
using System;
using System.IO;
using System.Windows.Forms;
using Data;
using UI;
static class Program {
internal static string AppDirectory {
get {
return Extensions.CoreDirectory + @"\Content Creator";
}
}
internal static string WorkingDirect... | namespace COA.ContentCreator {
using System;
using System.IO;
using System.Windows.Forms;
using Data;
using UI;
static class Program {
internal static string AppDirectory {
get {
return Extensions.CoreDirectory + @"\SGCC";
}
}
internal static string WorkingDirectory {
... | mit | C# |
8495409d8d9637293d82dca6c46e3f8e7660882c | Work around faulty StatusStrip implementations | jeoffman/EDDiscovery,jthorpe4/EDDiscovery,mwerle/EDDiscovery,jgoode/EDDiscovery,jeoffman/EDDiscovery,vendolis/EDDiscovery,jgoode/EDDiscovery,mwerle/EDDiscovery,vendolis/EDDiscovery | EDDiscovery/Controls/StatusStripCustom.cs | EDDiscovery/Controls/StatusStripCustom.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
namespace ExtendedControls
{
public class StatusStripCustom : StatusStrip
{
public const int WM_NCHITTEST = 0x84;
public const int WM_NCLBUTTONDOWN = 0xA1;
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
namespace ExtendedControls
{
public class StatusStripCustom : StatusStrip
{
public const int WM_NCHITTEST = 0x84;
public const int WM_NCLBUTTONDOWN = 0xA1;
... | apache-2.0 | C# |
f9c9f1ce5f861b81c7506ece1dc71c8d4a94e8de | Bump version, amend. | JohanLarsson/Gu.Analyzers | Gu.Analyzers.Analyzers/Properties/AssemblyInfo.cs | Gu.Analyzers.Analyzers/Properties/AssemblyInfo.cs | using System;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Gu.Analyzers.Analyzers")]
[assembly: AssemblyDescription("Roslyn analyzers for GU.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("... | using System;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Gu.Analyzers.Analyzers")]
[assembly: AssemblyDescription("Roslyn analyzers for GU.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("... | mit | C# |
f22050c9759648521ea2bd05f51b3932e718eb00 | Remove unnecessary initialiser | smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,ppy/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,ppy/osu,peppy/osu-new,smoogipoo/osu,ppy/osu,smoogipooo/osu,UselessToucan/osu,peppy/osu | osu.Game.Rulesets.Taiko/Difficulty/Preprocessing/TaikoDifficultyHitObject.cs | osu.Game.Rulesets.Taiko/Difficulty/Preprocessing/TaikoDifficultyHitObject.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Game.Rulesets.Difficulty.Preprocessing;
using osu.Game.Rulesets.Objects;
using osu.Game.Rules... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Game.Rulesets.Difficulty.Preprocessing;
using osu.Game.Rulesets.Objects;
using osu.Game.Rules... | mit | C# |
12c42eba609c04916aacdd108762b6bb298010ba | Fix failing tests on .NET Core 3.0 | telerik/JustMockLite | Telerik.JustMock/Core/MatcherTree/MethodInfoMatcherTreeNode.cs | Telerik.JustMock/Core/MatcherTree/MethodInfoMatcherTreeNode.cs | /*
JustMock Lite
Copyright © 2010-2015 Progress Software Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by ... | /*
JustMock Lite
Copyright © 2010-2015 Progress Software Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by ... | apache-2.0 | C# |
64ffe6362954032183ced01b0b3f8ca54cc68703 | Revise control validation and test timeout | larsbrubaker/MatterControl,unlimitedbacon/MatterControl,larsbrubaker/MatterControl,unlimitedbacon/MatterControl,jlewin/MatterControl,larsbrubaker/MatterControl,jlewin/MatterControl,unlimitedbacon/MatterControl,jlewin/MatterControl,jlewin/MatterControl,larsbrubaker/MatterControl,unlimitedbacon/MatterControl | Tests/MatterControl.AutomationTests/HardwareLevelingUITests.cs | Tests/MatterControl.AutomationTests/HardwareLevelingUITests.cs | using System.Threading;
using System.Threading.Tasks;
using NUnit.Framework;
namespace MatterHackers.MatterControl.Tests.Automation
{
[TestFixture, Category("MatterControl.UI.Automation"), RunInApplicationDomain, Apartment(ApartmentState.STA)]
public class HardwareLevelingUITests
{
[Test]
public async Task Has... | using System.Threading;
using System.Threading.Tasks;
using NUnit.Framework;
namespace MatterHackers.MatterControl.Tests.Automation
{
[TestFixture, Category("MatterControl.UI.Automation"), RunInApplicationDomain, Apartment(ApartmentState.STA)]
public class HardwareLevelingUITests
{
[Test]
public async Task Has... | bsd-2-clause | C# |
6b065d0db6d0feb3c942df21d2dfa0e8e8044782 | Fix Health Check | dgarage/NBXplorer,dgarage/NBXplorer | NBXplorer/HealthChecks/NodesHealthCheck.cs | NBXplorer/HealthChecks/NodesHealthCheck.cs | using Microsoft.Extensions.Diagnostics.HealthChecks;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace NBXplorer.HealthChecks
{
public class NodesHealthCheck : IHealthCheck
{
public NodesHealthCheck(BitcoinDWaiters waiters)
{
Wa... | using Microsoft.Extensions.Diagnostics.HealthChecks;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace NBXplorer.HealthChecks
{
public class NodesHealthCheck : IHealthCheck
{
public NodesHealthCheck(BitcoinDWaiters waiters)
{
Wa... | mit | C# |
ed2f9dd4432fb1dbe17b6524f69fe3780c3b0919 | Adjust settings slider spacings | NeoAdonis/osu,ppy/osu,peppy/osu,peppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,peppy/osu-new,NeoAdonis/osu,smoogipoo/osu,ppy/osu,smoogipooo/osu | osu.Game/Overlays/Settings/SettingsSlider.cs | osu.Game/Overlays/Settings/SettingsSlider.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Graphics;
using osu.Framework.Graphics.UserInterface;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Settings
{
... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Graphics;
using osu.Framework.Graphics.UserInterface;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Settings
{
... | mit | C# |
fcc6cb36e4c1e204e4ea106e6756b2cdb442bb48 | Change text colour to black | UselessToucan/osu,smoogipooo/osu,peppy/osu-new,UselessToucan/osu,ppy/osu,UselessToucan/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,ppy/osu,peppy/osu | osu.Game/Screens/Edit/Timing/RowAttribute.cs | osu.Game/Screens/Edit/Timing/RowAttribute.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
using osu.Framew... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
using osu.Framew... | mit | C# |
04acbdc2dc980d18dae94aa214a521a3657f1f2a | Fix for null values when stripping characters in feeds. | JaCraig/FileCurator,JaCraig/FileCurator | src/FileCurator/Formats/RSS/Data/Utils.cs | src/FileCurator/Formats/RSS/Data/Utils.cs | /*
Copyright 2017 James Craig
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, so... | /*
Copyright 2017 James Craig
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, so... | apache-2.0 | C# |
45463c1b480659c465f27cae69cfe645c5d38e1a | Remove ununsed viewportWidth, viewportHeight | peppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,ppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,DrabWeb/osu-framework,DrabWeb/osu-framework,ppy/osu-framework... | osu.Framework.Android/AndroidGameView.cs | osu.Framework.Android/AndroidGameView.cs | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using System;
using Android.Content;
using Android.Runtime;
using Android.Util;
using osuTK.Graphics;
namespace osu.Framework.Android
{
public abstract c... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using System;
using Android.Content;
using Android.Runtime;
using Android.Util;
using osuTK.Graphics;
namespace osu.Framework.Android
{
public abstract c... | mit | C# |
051aeee9ffe507083a8e9189fecb785957a280ef | Convert apostrophe and ampersand to underscore in enum names (#939) | NJsonSchema/NJsonSchema,RSuter/NJsonSchema | src/NJsonSchema.CodeGeneration/DefaultEnumNameGenerator.cs | src/NJsonSchema.CodeGeneration/DefaultEnumNameGenerator.cs | //-----------------------------------------------------------------------
// <copyright file="DefaultEnumNameGenerator.cs" company="NJsonSchema">
// Copyright (c) Rico Suter. All rights reserved.
// </copyright>
// <license>https://github.com/rsuter/NJsonSchema/blob/master/LICENSE.md</license>
// <author>Rico ... | //-----------------------------------------------------------------------
// <copyright file="DefaultEnumNameGenerator.cs" company="NJsonSchema">
// Copyright (c) Rico Suter. All rights reserved.
// </copyright>
// <license>https://github.com/rsuter/NJsonSchema/blob/master/LICENSE.md</license>
// <author>Rico ... | mit | C# |
427ac259f4121280b5c909aa26f043d015a31335 | Refactor datatype configuration connector | tcmorris/Umbraco-CMS,mattbrailsford/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,abryukhov/Umbraco-CMS,mattbrailsford/Umbraco-CMS,abryukhov/Umbraco-CMS,mattbrailsford/Umbraco-CMS,madsoulswe/Umbraco-CMS,marcemarc/Umbraco-CMS,NikRimington/Umbraco-CMS,robertjf/Umbraco-CMS,madsoulswe/Umbraco-CMS,arknu/Umbraco-CMS,robertjf/Umb... | src/Umbraco.Core/Deploy/IDataTypeConfigurationConnector.cs | src/Umbraco.Core/Deploy/IDataTypeConfigurationConnector.cs | using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using Umbraco.Core.Models;
namespace Umbraco.Core.Deploy
{
/// <summary>
/// Defines methods that can convert a data type configurations to / from an environment-agnostic string.
/// </summary>
/// <remarks>Configurations may cont... | using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace Umbraco.Core.Deploy
{
/// <summary>
/// Defines methods that can convert a data type configurations to / from an environment-agnostic string.
/// </summary>
/// <remarks>Configurations may contain values such as content ... | mit | C# |
e01e405e245c0a171e612f7d883f9ff200886307 | add m4a support | jasonracey/ConvertToMp3,jasonracey/ConvertToMp3 | ConvertToMp3/FileFinder.cs | ConvertToMp3/FileFinder.cs | using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
namespace ConvertToMp3
{
public static class FileFinder
{
private static readonly List<string> Extensions = new List<string> { ".ape", ".flac", ".m4a", ".mp4" };
public static IEnumerable<string> GetSupportedF... | using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
namespace ConvertToMp3
{
public static class FileFinder
{
private static readonly List<string> Extensions = new List<string> { ".ape", ".flac", ".mp4" };
public static IEnumerable<string> GetSupportedFiles(str... | mit | C# |
c3e0c65c57f79fce292335429a642ac02965fd70 | Improve description of graph problem | jogonzal-msft/coding-interview-solutions,jogonzal/coding-interview-solutions | CodingInterviewSolutions/CodingInterviewSolutions/Named/GraphSerialization.cs | CodingInterviewSolutions/CodingInterviewSolutions/Named/GraphSerialization.cs | using System;
using System.Collections.Generic;
using System.Linq;
using Newtonsoft.Json;
namespace CodingInterviewSolutions.Named
{
/// <summary>
/// Problem description: Given a graph formed by nodes described by the class "Node" below, we want to serialize it.
/// You have access to a JSON serializer (e.g. JSON... | using System;
using System.Collections.Generic;
using System.Linq;
using Newtonsoft.Json;
namespace CodingInterviewSolutions.Named
{
/// <summary>
/// This problem consists on serializing and deserializing a graph object given below
/// </summary>
public static class GraphSerialization
{
public class Node
{
... | mit | C# |
a8f976f8c55cdf462fcb4b1536a53cf846f3a3b9 | Fix #502 | Lone-Coder/letsencrypt-win-simple | letsencrypt-win-simple/ScheduledRenewal.cs | letsencrypt-win-simple/ScheduledRenewal.cs | using System;
using System.IO;
using System.Linq;
using Newtonsoft.Json;
using Serilog;
using System.Collections.Generic;
namespace LetsEncrypt.ACME.Simple
{
public class ScheduledRenewal
{
public DateTime Date { get; set; }
public Target Binding { get; set; }
public string CentralSs... | using System;
using System.IO;
using System.Linq;
using Newtonsoft.Json;
using Serilog;
namespace LetsEncrypt.ACME.Simple
{
public class ScheduledRenewal
{
public DateTime Date { get; set; }
public Target Binding { get; set; }
public string CentralSsl { get; set; }
public stri... | apache-2.0 | C# |
2ff63c6670f4e2c304a97595b21a44c52d41c314 | Correct EmphasisLevel.Reduced value | timheuer/alexa-skills-dotnet | Alexa.NET/Response/Ssml/EmphasisLevel.cs | Alexa.NET/Response/Ssml/EmphasisLevel.cs | using System;
namespace Alexa.NET.Response.Ssml
{
public static class EmphasisLevel
{
public const string Strong = "strong";
public const string Moderate = "moderate";
public const string Reduced = "reduced";
}
}
| using System;
namespace Alexa.NET.Response.Ssml
{
public static class EmphasisLevel
{
public const string Strong = "strong";
public const string Moderate = "moderate";
public const string Reduced = "reducated";
}
}
| mit | C# |
efe00e9e099215ff0dbf7d10f583c55f87816544 | Improve documentation on argumentcontext | noelheesen/Ensured | Ensured/ArgumentContext.cs | Ensured/ArgumentContext.cs | namespace Ensured
{
using System;
using System.Collections;
using System.Linq.Expressions;
/// <summary>
/// The context in which the argument is validated.
/// </summary>
/// <typeparam name="T">The <see cref="Type"/> of the argument that requires validation</typeparam>
public sealed ... | namespace Ensured
{
using System;
using System.Collections;
using System.Linq.Expressions;
/// <summary>
/// The context in which the argument is validated.
/// </summary>
/// <typeparam name="T">The <see cref="Type"/> of the argument that requires validation</typeparam>
public sealed ... | mit | C# |
0cf2e89ecb8b6c6dc3d87514cddfec80017bc4a9 | Add GeneratorFactory | inputfalken/Sharpy | GeneratorAPI/Generator.cs | GeneratorAPI/Generator.cs | using System;
using System.Collections.Generic;
namespace GeneratorAPI {
/// <summary>
/// </summary>
/// <typeparam name="TProvider"></typeparam>
public class Generator<TProvider> {
private readonly TProvider _provider;
public Generator(TProvider provider) => _provider = provider;
... | using System;
using System.Collections.Generic;
namespace GeneratorAPI {
/// <summary>
/// </summary>
/// <typeparam name="TProvider"></typeparam>
public class Generator<TProvider> {
private readonly TProvider _provider;
public Generator(TProvider provider) => _provider = provider;
... | mit | C# |
af3a4ab8a017c7522b7d4635cd142a3f8a3f30a8 | Sort usings | mooso/BlueCoffee,mooso/BlueCoffee,mooso/BlueCoffee,mooso/BlueCoffee | KafkaBroker/WorkerRole.cs | KafkaBroker/WorkerRole.cs | using Microsoft.Experimental.Azure.JavaPlatform;
using Microsoft.Experimental.Azure.Kafka;
using Microsoft.Experimental.Azure.ZooKeeper;
using Microsoft.WindowsAzure;
using Microsoft.WindowsAzure.Diagnostics;
using Microsoft.WindowsAzure.ServiceRuntime;
using Microsoft.WindowsAzure.Storage;
using System;
using System.C... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Threading;
using Microsoft.WindowsAzure;
using Microsoft.WindowsAzure.Diagnostics;
using Microsoft.WindowsAzure.ServiceRuntime;
using Microsoft.WindowsAzure.Storage;
using System.IO.Compression;
u... | mit | C# |
bd90e0f8cee542f6226e197aad8f2d5daa987f5c | Sort owned rooms on account page by name | 18098924759/JabbR,18098924759/JabbR,mzdv/JabbR,ajayanandgit/JabbR,e10/JabbR,mzdv/JabbR,borisyankov/JabbR,yadyn/JabbR,timgranstrom/JabbR,SonOfSam/JabbR,borisyankov/JabbR,yadyn/JabbR,yadyn/JabbR,timgranstrom/JabbR,M-Zuber/JabbR,borisyankov/JabbR,e10/JabbR,JabbR/JabbR,ajayanandgit/JabbR,SonOfSam/JabbR,JabbR/JabbR,M-Zuber/... | JabbR/ViewModels/ProfilePageViewModel.cs | JabbR/ViewModels/ProfilePageViewModel.cs | using System;
using System.Collections.Generic;
using System.Linq;
using JabbR.Models;
using JabbR.Services;
using SimpleAuthentication.Core;
namespace JabbR.ViewModels
{
public class ProfilePageViewModel
{
public ProfilePageViewModel(ChatUser user, IEnumerable<IAuthenticationProvider> config... | using System;
using System.Collections.Generic;
using JabbR.Models;
using JabbR.Services;
using SimpleAuthentication.Core;
namespace JabbR.ViewModels
{
public class ProfilePageViewModel
{
public ProfilePageViewModel(ChatUser user, IEnumerable<IAuthenticationProvider> configuredProviders)
... | mit | C# |
2e23abb332efb5cfbe0661476850d9ab22f609ce | Remove unused method | pauldendulk/Mapsui,charlenni/Mapsui,charlenni/Mapsui | Mapsui/Projection/BoundingBoxIterator.cs | Mapsui/Projection/BoundingBoxIterator.cs | using System.Collections.Generic;
using Mapsui.Geometries;
namespace Mapsui.Projection
{
public static class BoundingBoxIterator
{
public static IEnumerable<Point> AllVertices(this BoundingBox boundingBox)
{
return new[] { boundingBox.Min, boundingBox.Max };
}
}
}
| using System.Collections.Generic;
using Mapsui.Geometries;
namespace Mapsui.Projection
{
public static class BoundingBoxIterator
{
public static IEnumerable<Point> AllVertices(this BoundingBox boundingBox)
{
return new[] { boundingBox.Min, boundingBox.Max };
}
publi... | mit | C# |
caa2f4a3dd5764f65c8b1953d3d70cf4463044b8 | Add validation messages | ykpoh/MvcInternationalization,ykpoh/MvcInternationalization,ykpoh/MvcInternationalization | MvcInternationalization/Models/Person.cs | MvcInternationalization/Models/Person.cs | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
namespace MvcInternationalization.Models
{
public class Person
{
[Required(ErrorMessageResourceType = typeof(Resources.Resources),
ErrorMessageResourceName = "N... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MvcInternationalization.Models
{
public class Person
{
public string Name { get; set; }
public string Address { get; set; }
public string SocialNumber { get; set; }
}
} | mit | C# |
11395c40b7e4586c7c3c1030bc7e36d9e51ac5d3 | Add button to access first run setup on demand | peppy/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,ppy/osu,NeoAdonis/osu,ppy/osu,peppy/osu | osu.Game/Overlays/Settings/Sections/GeneralSection.cs | osu.Game/Overlays/Settings/Sections/GeneralSection.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
using osu.Game.Localisation;
using ... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
using osu.Game.Localisation;
using osu.Game.Overlays.Settings.Secti... | mit | C# |
7e73475dfa995c53a65bc7b8b73a022764a3060b | change description | FacturAPI/facturapi-net | facturapi-net/Properties/AssemblyInfo.cs | facturapi-net/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Fac... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Fac... | mit | C# |
977e758fdd03e63191df54a08ea2b0f751a1d70c | Add generic TouchEvent | bridgedotnet/Bridge,AndreyZM/Bridge,bridgedotnet/Bridge,AndreyZM/Bridge,bridgedotnet/Bridge,AndreyZM/Bridge,bridgedotnet/Bridge,AndreyZM/Bridge | Html5/Events/TouchEvent.cs | Html5/Events/TouchEvent.cs | // The documentation for this class (on <summary> tags) was extracted from:
// https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent
namespace Bridge.Html5
{
[External]
[Name("TouchEvent")]
public class TouchEvent : UIEvent
{
/// <summary>
/// A Boolean value indicating whether o... | // The documentation for this class (on <summary> tags) was extracted from:
// https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent
using Bridge.Html5.Interfaces;
namespace Bridge.Html5.Events
{
[External]
[Name("TouchEvent")]
public class TouchEvent : UIEvent
{
/// <summary>
/... | apache-2.0 | C# |
6757ee2606bdd8eedc654a8abc2915e639813ba9 | Update SolutionAssemblyInfo.cs | riveryc/DimensionData.ComputeClient,DimensionDataCBUSydney/DimensionData.ComputeClient,riveryc/DimensionData.ComputeClient,DimensionDataCBUSydney/Compute.Api.Client,DimensionDataCBUSydney/DimensionData.ComputeClient,riveryc/DimensionData.ComputeClient,samuelchong/Compute.Api.Client,DimensionDataCBUSydney/DimensionData.... | PowershellModule/SolutionAssemblyInfo.cs | PowershellModule/SolutionAssemblyInfo.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="SolutionAssemblyInfo.cs" company="">
//
// </copyright>
// <summary>
// SolutionAssemblyInfo.cs
// </summary>
// -------------------------------------------------------------... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="SolutionAssemblyInfo.cs" company="">
//
// </copyright>
// <summary>
// SolutionAssemblyInfo.cs
// </summary>
// -------------------------------------------------------------... | mit | C# |
113e5006c1ca538d4644ea7d63ede85043382f69 | Add instructions about movimentation | ErickSimoes/EscapeMuseumVR | Assets/Scripts/UIStartInstructions.cs | Assets/Scripts/UIStartInstructions.cs | using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class UIStartInstructions : MonoBehaviour {
private Text welcomeText;
private Button buttonText;
private List<string> instructions = new List<string>();
private int i = 0;
void Start() {
welcomeText = GetComponent... | using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class UIStartInstructions : MonoBehaviour {
private Text welcomeText;
private Button buttonText;
private List<string> instructions = new List<string>();
private int i = 0;
void Start() {
welcomeText = GetComponent... | apache-2.0 | C# |
83350b13049b51aeb235259dffb214e287af7612 | Add calc method for disposible income | mattgwagner/CertiPay.Payroll.Common | CertiPay.Payroll.Common/CalculationType.cs | CertiPay.Payroll.Common/CalculationType.cs | using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace CertiPay.Payroll.Common
{
/// <summary>
/// Identifies the method to calculate the result
/// </summary>
public enum CalculationType : byte
{
/// <summary>
/// Deduction is taken as a percentag... | using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace CertiPay.Payroll.Common
{
/// <summary>
/// Identifies the method to calculate the result
/// </summary>
public enum CalculationType : byte
{
/// <summary>
/// Deduction is taken as a percentag... | mit | C# |
94fb049e2518e8c1bc70790e7d124215e7c1eb7a | Correct Merge. | VenusInterns/BlogTemplate,VenusInterns/BlogTemplate,VenusInterns/BlogTemplate | BlogTemplate/Pages/Post.cshtml.cs | BlogTemplate/Pages/Post.cshtml.cs |
using System;
using System.ComponentModel.DataAnnotations;
using BlogTemplate._1.Models;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace BlogTemplate._1.Pages
{
public class PostModel : PageModel
{
private readonly BlogDataStore _dataStore;
public PostMode... |
using System;
using System.ComponentModel.DataAnnotations;
using BlogTemplate._1.Models;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace BlogTemplate._1.Pages
{
public class PostModel : PageModel
{
private readonly BlogDataStore _dataStore;
public PostMode... | mit | C# |
5b5fa08aa977e97d5588d1baa39fa98b792fe856 | Remove serializable | julesbriquet/PostCredit | Game/Assets/Scripts/shooter/playerShip.cs | Game/Assets/Scripts/shooter/playerShip.cs | using UnityEngine;
using System.Collections;
public class PlayerShip : MonoBehaviour {
public int playerNumber = 1;
private string InputPlayerString = "";
private bool enableControl;
private float inputY;
public float speed;
private Vector2 velocity;
public float yMax;
... | using UnityEngine;
using System.Collections;
[System.Serializable]
public class PlayerShip : MonoBehaviour {
public int playerNumber = 1;
private string InputPlayerString = "";
private bool enableControl;
private float inputY;
public float speed;
private Vector2 velocity;
... | mit | C# |
f7048e07d41a53af29f4d48ace8a7831f630c9c9 | fix a problem with how the values are deserialized | marinoscar/TrackingApp | Code/TrackingApp.Droid/ApiRequestor.cs | Code/TrackingApp.Droid/ApiRequestor.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using RestSharp;
using System.Net;
using Newtonsoft.Json;
namespace TrackingApp.Droid
{
public class A... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using RestSharp;
using System.Net;
using Newtonsoft.Json;
namespace TrackingApp.Droid
{
public class A... | mit | C# |
1a6477318f3bd2842a994612f9f57f772698f313 | Fix issue #390. Remove ImageLoadInformation from WinRT/WP8 builds | davidlee80/SharpDX-1,Ixonos-USA/SharpDX,TechPriest/SharpDX,shoelzer/SharpDX,dazerdude/SharpDX,sharpdx/SharpDX,TechPriest/SharpDX,RobyDX/SharpDX,dazerdude/SharpDX,jwollen/SharpDX,sharpdx/SharpDX,andrewst/SharpDX,RobyDX/SharpDX,Ixonos-USA/SharpDX,jwollen/SharpDX,VirusFree/SharpDX,PavelBrokhman/SharpDX,sharpdx/SharpDX,Tig... | Source/SharpDX.Direct3D11/ImageLoadInformation.cs | Source/SharpDX.Direct3D11/ImageLoadInformation.cs | // Copyright (c) 2010-2013 SharpDX - Alexandre Mutel
//
// 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, ... | // Copyright (c) 2010-2013 SharpDX - Alexandre Mutel
//
// 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, ... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.