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
33b3702f1ed7d061bca16306c8f19aee06dbb255
Add Unlisted to VideoPrivacyEnum, fixed #65
mfilippov/vimeo-dot-net,mohibsheth/vimeo-dot-net
src/VimeoDotNet/Enums/VideoPrivacyEnum.cs
src/VimeoDotNet/Enums/VideoPrivacyEnum.cs
namespace VimeoDotNet.Enums { /// <summary> /// View privacy /// </summary> public enum VideoPrivacyEnum { /// <summary> /// Unknown /// </summary> Unknown, /// <summary> /// Nobody /// </summary> Nobody, /// <summary> ...
namespace VimeoDotNet.Enums { /// <summary> /// View privacy /// </summary> public enum VideoPrivacyEnum { /// <summary> /// Unknown /// </summary> Unknown, /// <summary> /// Nobody /// </summary> Nobody, /// <summary> ...
mit
C#
cd6ce6f2391c07b7bd42dca03ed165ba2cf6ecb1
Set version to 1.0.0.0 since AppVeyor is handling nuget versions
robfe/SpecLight
SpecLight/Properties/AssemblyInfo.cs
SpecLight/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; // 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. using System.Runtime.CompilerServices; [assembly: AssemblyTitle("SpecLight")] [a...
using System.Reflection; using System.Resources; // 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. using System.Runtime.CompilerServices; [assembly: AssemblyTitle("SpecLight")] [a...
mit
C#
7ff0d753a198d3dede4b02d6ff0aced8faba7789
Add 'SKIPPED' resource status
stoiveyp/Alexa.NET.Management
Alexa.NET.Management/Package/ResourceStatus.cs
Alexa.NET.Management/Package/ResourceStatus.cs
using System; using System.Collections.Generic; using System.Text; namespace Alexa.NET.Management.Package { public enum ResourceStatus { FAILED, IN_PROGRESS, SKIPPED, SUCCEEDED, ROLLBACK_IN_PROGRESS, ROLLBACK_SUCCEEDED, ROLLBACK_FAILED } }
using System; using System.Collections.Generic; using System.Text; namespace Alexa.NET.Management.Package { public enum ResourceStatus { FAILED, IN_PROGRESS, SUCCEEDED, ROLLBACK_IN_PROGRESS, ROLLBACK_SUCCEEDED, ROLLBACK_FAILED } }
mit
C#
018aad234d1ac9c7605fffd73e222f4bf150065b
Switch to the less restrictive IConfiguration
rapidcore/rapidcore,rapidcore/rapidcore
src/core/main/Configuration/ConfigBase.cs
src/core/main/Configuration/ConfigBase.cs
#if NETSTANDARD1_6 using System; using Microsoft.Extensions.Configuration; namespace RapidCore.Configuration { /// <summary> /// Base class for strongly typed configuration classes. /// /// The idea is to allow you to define a config class specific /// for your project, but gain easy access to rea...
#if NETSTANDARD1_6 using System; using Microsoft.Extensions.Configuration; namespace RapidCore.Configuration { /// <summary> /// Base class for strongly typed configuration classes. /// /// The idea is to allow you to define a config class specific /// for your project, but gain easy access to rea...
mit
C#
6a51d51bcef029273198d4558ec8612c68ba8083
Test StaticReadonlyFieldsMustBeginWithUpperCaseLetter sylecop property
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Backend/Models/FeeEstimationPair.cs
WalletWasabi/Backend/Models/FeeEstimationPair.cs
using System.ComponentModel.DataAnnotations; namespace WalletWasabi.Backend.Models { /// <summary> /// Satoshi per byte. /// </summary> public class FeeEstimationPair { private static readonly int testStaticReadonlyField; [Required] public long Economical { get; set; } [Required] public long Conservat...
using System.ComponentModel.DataAnnotations; namespace WalletWasabi.Backend.Models { /// <summary> /// Satoshi per byte. /// </summary> public class FeeEstimationPair { [Required] public long Economical { get; set; } [Required] public long Conservative { get; set; } } }
mit
C#
8e4da23b176401803c8496e397f5ff5d792070ba
allow aggregates to be populated externally
Pondidum/Ledger,Pondidum/Ledger
Ledger/AggregateRoot.cs
Ledger/AggregateRoot.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using Ledger.Infrastructure; namespace Ledger { public class AggregateRoot<TKey> { public TKey ID { get; protected set; } protected internal DateTime Stamp { get; set; } protected internal int Sequence { get; set; } ...
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using Ledger.Infrastructure; namespace Ledger { public class AggregateRoot<TKey> { public TKey ID { get; protected set; } protected internal DateTime Stamp { get; set; } protected internal int Sequence { get; set; } ...
lgpl-2.1
C#
36d94b1e6515e98e06075235346099304ac1df49
add won bool to cell
svmnotn/friendly-guacamole
Assets/src/data/Cell.cs
Assets/src/data/Cell.cs
public struct Cell { public static Cell def = new Cell(); public bool won; public bool played; public string type; public Cell(string type) { this.played = true; this.type = type; } }
public struct Cell { public static Cell def = new Cell(); public bool played; public string type; public Cell(string type) { this.played = true; this.type = type; } }
mit
C#
cc1da561878dfb6ffb8b5e320837017214292f45
Add Travis to contact list.
jpfultonzm/trainingsandbox,jpfultonzm/trainingsandbox,jpfultonzm/trainingsandbox
ZirMed.TrainingSandbox/Views/Home/Contact.cshtml
ZirMed.TrainingSandbox/Views/Home/Contact.cshtml
@{ ViewBag.Title = "Contact"; } <h2>@ViewBag.Title.</h2> <h3>@ViewBag.Message</h3> <address> One Microsoft Way<br /> Redmond, WA 98052-6399<br /> <abbr title="Phone">P:</abbr> 425.555.0100 </address> <address> <strong>Support:</strong> <a href="mailto:Support@example.com">Support@example.co...
@{ ViewBag.Title = "Contact"; } <h2>@ViewBag.Title.</h2> <h3>@ViewBag.Message</h3> <address> One Microsoft Way<br /> Redmond, WA 98052-6399<br /> <abbr title="Phone">P:</abbr> 425.555.0100 </address> <address> <strong>Support:</strong> <a href="mailto:Support@example.com">Support@example.co...
mit
C#
bf2898120e117a93582f5c62564b4e232d9775e2
Add in an explicit cast to convert DateTime to NSDate
directhex/xwt,mminns/xwt,hwthomas/xwt,lytico/xwt,steffenWi/xwt,akrisiun/xwt,hamekoz/xwt,iainx/xwt,antmicro/xwt,mminns/xwt,TheBrainTech/xwt,residuum/xwt,mono/xwt,cra0zy/xwt
Xwt.Mac/Xwt.Mac/DatePickerBackend.cs
Xwt.Mac/Xwt.Mac/DatePickerBackend.cs
// // DatePickerBackend.cs // // Author: // Lluis Sanchez <lluis@xamarin.com> // // Copyright (c) 2013 Xamarin Inc. // // 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 restric...
// // DatePickerBackend.cs // // Author: // Lluis Sanchez <lluis@xamarin.com> // // Copyright (c) 2013 Xamarin Inc. // // 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 restric...
mit
C#
fc2c96fb921aa32d0b8c52a99434fdcaf895ddd8
Change assembly version for release
githubpermutation/Flirper
Flirper/AssemblyInfo.cs
Flirper/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("Flirper1.1")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly...
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("Flirper1.0")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly...
mit
C#
1a70baa3b5460a095df5570e8b11f906f43b98c4
Modifica parametri long 'd', 'n' in Classe Frazione
Azzeccagarbugli/Frazionetor
Frazionetor/Frazione.cs
Frazionetor/Frazione.cs
using System; namespace Frazionetor { public class Frazione { private long numeratore = 1; private long denominatore = 1; public Frazione (long n, long d) { numeratore = n; denominatore = d; } public void Semplifica () { long i; if (numeratore > denominatore) { i = numeratore; ...
using System; namespace Frazionetor { public class Frazione { private long numeratore = 1; private long denominatore = 1; public Frazione (long num, long den) { numeratore = num; denominatore = den; } public void Semplifica () { long i; if (numeratore > denominatore) { i = numera...
mit
C#
81a0f60db37db3cced0467fa38e40815715462a8
Update LogSeverity to reflect cef_log_severity_t
dga711/CefSharp,ITGlobal/CefSharp,Livit/CefSharp,rover886/CefSharp,illfang/CefSharp,jamespearce2006/CefSharp,ruisebastiao/CefSharp,battewr/CefSharp,jamespearce2006/CefSharp,gregmartinhtc/CefSharp,AJDev77/CefSharp,Livit/CefSharp,wangzheng888520/CefSharp,Haraguroicha/CefSharp,VioletLife/CefSharp,NumbersInternational/CefS...
CefSharp/LogSeverity.cs
CefSharp/LogSeverity.cs
namespace CefSharp { public enum LogSeverity { /// <summary> /// Default logging (currently Info logging) /// </summary> Default = 0, /// <summary> /// Verbose logging. /// </summary> Verbose, /// <summary> /// Info logging ...
namespace CefSharp { public enum LogSeverity { Verbose, Info, Warning, Error, ErrorReport, Disable, }; }
bsd-3-clause
C#
56f3b806c73a1b1f5b276bb2a1f7724532150084
remove the manual overload. Now we get a sane error message.
Norgg/Principia,pleroy/Principia,pleroy/Principia,eggrobin/Principia,mockingbirdnest/Principia,eggrobin/Principia,Norgg/Principia,eggrobin/Principia,pleroy/Principia,mockingbirdnest/Principia,Norgg/Principia,mockingbirdnest/Principia,pleroy/Principia,Norgg/Principia,mockingbirdnest/Principia
ksp_plugin_adapter/interface.cs
ksp_plugin_adapter/interface.cs
using System; using System.Collections.Generic; using System.Runtime.InteropServices; namespace principia { namespace ksp_plugin_adapter { internal partial struct XYZ { public static explicit operator XYZ(Vector3d v) { return new XYZ{x = v.x, y = v.y, z = v.z}; } public static explicit operator Vector3d(XY...
using System; using System.Collections.Generic; using System.Runtime.InteropServices; namespace principia { namespace ksp_plugin_adapter { internal partial struct XYZ { public static explicit operator XYZ(Vector3d v) { return new XYZ{x = v.x, y = v.y, z = v.z}; } public static explicit operator Vector3d(XY...
mit
C#
9036016a470f1c397825870e10335262bd379224
Add IsToConfig.TrueStringArray{set;}
Kuick/IsTo
IsTo/Misc/IsToConfig.cs
IsTo/Misc/IsToConfig.cs
// Copyright (c) kuicker.org. All rights reserved. // Modified By YYYY-MM-DD // kevinjong 2016-02-11 - Creation using System.Collections.Generic; using System.Linq; namespace IsTo { public class IsToConfig { private static object _Lock = new object(); private static readonly string[] _D...
// Copyright (c) kuicker.org. All rights reserved. // Modified By YYYY-MM-DD // kevinjong 2016-02-11 - Creation using System.Collections.Generic; using System.Linq; namespace IsTo { public class IsToConfig { private static object _Lock = new object(); private static readonly string[] _D...
apache-2.0
C#
b87615990487b90a90dc24d6fc17c758fda3da19
Add code to load questions and images from zip
kiljacken/ProgrammingExamProject
Eksamensprojekt/Quiz.cs
Eksamensprojekt/Quiz.cs
using System; using System.Collections.Generic; using System.Drawing; using System.IO; using System.IO.Compression; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace Eksamensprojekt { [Serializable()] class Quiz { public String Name; ...
using System; using System.Collections.Generic; using System.IO; using System.IO.Compression; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace Eksamensprojekt { [Serializable()] class Quiz { public String Name; public String Desc...
mit
C#
851d070d39271a9017d6673c712c5564cb438c96
Remove redundancy method
evelasco85/PoEAA,evelasco85/PoEAA,evelasco85/PoEAA,evelasco85/PoEAA,evelasco85/PoEAA
Framework/Repository.cs
Framework/Repository.cs
using System.Collections.Generic; using System.Linq; using Framework.Data_Manipulation; using Framework.Domain; namespace Framework { public interface IRepository<TEntity> where TEntity : IDomainObject { IList<TEntity> Matching<TSearchInput>(TSearchInput criteria); } public class Repo...
using System.Collections.Generic; using System.Linq; using Framework.Data_Manipulation; using Framework.Domain; namespace Framework { public interface IRepository<TEntity> where TEntity : IDomainObject { IList<TEntity> Matching<TSearchInput>(TSearchInput criteria); } public class Repo...
mit
C#
5366973788ce8e9fe7a55aae61e05b7c469a1603
Add missing HW pixel format
ppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ppy/osu-framework
osu.Framework/Graphics/Video/FfmpegExtensions.cs
osu.Framework/Graphics/Video/FfmpegExtensions.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 FFmpeg.AutoGen; namespace osu.Framework.Graphics.Video { internal static class FfmpegExtensions { internal static double GetValue(this AVRational ...
// 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 FFmpeg.AutoGen; namespace osu.Framework.Graphics.Video { internal static class FfmpegExtensions { internal static double GetValue(this AVRational ...
mit
C#
ec2bb601876d48bee36869a7735ca9b8874ff15e
Format code
mstrother/BmpListener
BmpListener/Bgp/PathAttributeAggregator.cs
BmpListener/Bgp/PathAttributeAggregator.cs
using System.Net; namespace BmpListener.Bgp { public class PathAttributeAggregator : PathAttribute { public PathAttributeAggregator(byte[] data, int offset) : base(data, offset) { Decode(data, Offset); } public int AS { get; private set; } publi...
using System; using System.Net; namespace BmpListener.Bgp { public class PathAttributeAggregator : PathAttribute { public PathAttributeAggregator(byte[] data, int offset) : base(data, offset) { Decode(data, Offset); } public int AS { get; private set; } pub...
mit
C#
2c5995f045e733cfc13d2d123f97c5cc5548161e
Update DumpAllTheStuff.cs
overtools/OWLib
DataTool/ToolLogic/Dump/DumpAllTheStuff.cs
DataTool/ToolLogic/Dump/DumpAllTheStuff.cs
using System; using System.IO; using DataTool.JSON; using DataTool.Flag; using DataTool.ToolLogic.Extract; using DataTool.ToolLogic.List; using DataTool.ToolLogic.List.Misc; namespace DataTool.ToolLogic.Dump { [Tool("dump-all-stuff", CustomFlags = typeof(ExtractFlags), IsSensitive = true)] public class DumpAl...
using System; using System.IO; using DataTool.JSON; using DataTool.Flag; using DataTool.ToolLogic.Extract; using DataTool.ToolLogic.List; using DataTool.ToolLogic.List.Misc; namespace DataTool.ToolLogic.Dump { [Tool("dump-all-stuff", CustomFlags = typeof(ExtractFlags), IsSensitive = true)] public class DumpAl...
mit
C#
96de9d15e5be2b0586c5546482626fe87193b520
Add missing Include for CircleType
Trojaner25/Rocket-Safezone,Trojaner25/Rocket-Regions
Rocket_Safezone/Model/Safezone/SafeZoneType.cs
Rocket_Safezone/Model/Safezone/SafeZoneType.cs
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Xml.Serialization; using Rocket.Unturned.Player; namespace Safezone.Model { [XmlInclude(typeof(RectangleType))] [XmlInclude(typeof(CircleType))] public abstract class SafeZoneType { private stati...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Xml.Serialization; using Rocket.Unturned.Player; namespace Safezone.Model { [XmlInclude(typeof(RectangleType))] public abstract class SafeZoneType { private static readonly Dictionary<String, Type> R...
agpl-3.0
C#
5ec3ffddb6ea40c1c4ff9169e54fe1e97eb19754
Change Person.cs to use remapping again
Shaddix/realm-dotnet,realm/realm-dotnet,realm/realm-dotnet,Shaddix/realm-dotnet,Shaddix/realm-dotnet,Shaddix/realm-dotnet,realm/realm-dotnet
realm/Tests/IntegrationTests.Win32/Person.cs
realm/Tests/IntegrationTests.Win32/Person.cs
using System; using RealmNet; namespace IntegrationTests { public class Person : RealmObject { // Automatically implemented (overridden) properties public string FirstName { get; set; } public string LastName { get; set; } // Ignored property [Ignore] public bo...
using System; using RealmNet; namespace IntegrationTests { public class Person : RealmObject { // Automatically implemented (overridden) properties public string FirstName { get; set; } public string LastName { get; set; } // Ignored property [Ignore] public bo...
apache-2.0
C#
4fff08d241a2158da662863426e07fa1f1621f8a
Remove unused using
ppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipooo/osu,peppy/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,peppy/osu-new,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu
osu.Game.Tests/Visual/UserInterface/TestSceneNowPlayingOverlay.cs
osu.Game.Tests/Visual/UserInterface/TestSceneNowPlayingOverlay.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 NUnit.Framework; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Game.Beatmaps; using osu.Game.Overlays; using osu.Game.Rulesets.Osu; name...
// 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 NUnit.Framework; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Utils; using osu.Game.Beatmaps; using osu.Game.Overlays; using o...
mit
C#
5e911727418511e737b3aac491b709211f3fb770
Update CircleBounds.cs
wieslawsoltes/Draw2D,wieslawsoltes/Draw2D,wieslawsoltes/Draw2D
src/Draw2D.ViewModels/Bounds/CircleBounds.cs
src/Draw2D.ViewModels/Bounds/CircleBounds.cs
// Copyright (c) Wiesław Šoltés. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Runtime.Serialization; using Draw2D.Input; using Draw2D.ViewModels.Shapes; using Spatial; namespace Draw2D.ViewModels.Bounds { [Dat...
// Copyright (c) Wiesław Šoltés. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Runtime.Serialization; using Draw2D.Input; using Draw2D.ViewModels.Shapes; using Spatial; namespace Draw2D.ViewModels.Bounds { [Dat...
mit
C#
4a4476f5192438e64a5643b8ee9731b7fc0e678f
Add workaround for XS initialization issue
cra0zy/xwt,hamekoz/xwt,antmicro/xwt,lytico/xwt,hwthomas/xwt,mono/xwt,TheBrainTech/xwt
Xwt.XamMac/Xwt.Mac/NSApplicationInitializer.cs
Xwt.XamMac/Xwt.Mac/NSApplicationInitializer.cs
// // NSApplicationInitializer.cs // // Author: // Lluis Sanchez Gual <lluis@xamarin.com> // // Copyright (c) 2016 Xamarin, Inc (http://www.xamarin.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to d...
// // NSApplicationInitializer.cs // // Author: // Lluis Sanchez Gual <lluis@xamarin.com> // // Copyright (c) 2016 Xamarin, Inc (http://www.xamarin.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to d...
mit
C#
beadb77c2c24553090edb9dcf3ad4edafaaa5b5d
Clean Up AppDelegate
xamarin/monotouch-samples,xamarin/monotouch-samples,xamarin/monotouch-samples
ActivityRings/ActivityRings/AppDelegate.cs
ActivityRings/ActivityRings/AppDelegate.cs
using Foundation; using UIKit; using HealthKit; using System; namespace ActivityRings { // The UIApplicationDelegate for the application. This class is responsible for launching the // User Interface of the application, as well as listening (and optionally responding) to application events from iOS. [Register("Ap...
using Foundation; using UIKit; using HealthKit; using System; namespace ActivityRings { // The UIApplicationDelegate for the application. This class is responsible for launching the // User Interface of the application, as well as listening (and optionally responding) to application events from iOS. [Register("Ap...
mit
C#
bfbad5e792ade8fc73a07141c69d69d2275b228f
Update Setting.cs
LanguagePatches/LanguagePatches-Framework
LanguagePatches/LanguagePatches/Setting.cs
LanguagePatches/LanguagePatches/Setting.cs
/** * Language Patches * Copyright (C) 2015 Thomas P. (http://kerbalspaceprogram.de), simon56modder * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the Lic...
/** * Language Patches * Copyright (C) 2015 Thomas P. (http://kerbalspaceprogram.de), simon56modder * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the Lic...
mit
C#
28bd8cb6852d74c1a0ab8735ccf7c22d4feeb3cf
Fix invalidator offset
Glurmo/LiveSplit,Glurmo/LiveSplit,kugelrund/LiveSplit,ROMaster2/LiveSplit,LiveSplit/LiveSplit,kugelrund/LiveSplit,Glurmo/LiveSplit,ROMaster2/LiveSplit,kugelrund/LiveSplit,ROMaster2/LiveSplit
LiveSplit/LiveSplit.Core/UI/Invalidator.cs
LiveSplit/LiveSplit.Core/UI/Invalidator.cs
using System; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; namespace LiveSplit.UI { public class Invalidator : IInvalidator { public Form Form { get; protected set; } public Matrix Transform { get; set; } protected const double Offset = 0.535; ...
using System; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; namespace LiveSplit.UI { public class Invalidator : IInvalidator { public Form Form { get; protected set; } public Matrix Transform { get; set; } protected const double Offset = 0.035; ...
mit
C#
9ddc9f724d1898ca1c5d33b48a965abb30958ed7
Change destination for slack notifications
LykkeCity/EthereumApiDotNetCore,LykkeCity/EthereumApiDotNetCore,LykkeCity/EthereumApiDotNetCore
src/AzureRepositories/Notifiers/SlackNotifier.cs
src/AzureRepositories/Notifiers/SlackNotifier.cs
using AzureStorage.Queue; using Core; using Core.Notifiers; using Lykke.JobTriggers.Abstractions; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace AzureRepositories.Notifiers { public class SlackNotifier : ISlackNotifier, IPoisionQue...
using AzureStorage.Queue; using Core; using Core.Notifiers; using Lykke.JobTriggers.Abstractions; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace AzureRepositories.Notifiers { public class SlackNotifier : ISlackNotifier, IPoisionQue...
mit
C#
ddf914b317b12fe3af887f23bd0d445b834c4ccc
add default Guid value
frhagn/Typewriter
src/CodeModel/Extensions/Types/TypeExtensions.cs
src/CodeModel/Extensions/Types/TypeExtensions.cs
using System.Linq; using Type = Typewriter.CodeModel.Type; namespace Typewriter.Extensions.Types { /// <summary> /// Extension methods for working with types. /// </summary> public static class TypeExtensions { /// <summary> /// Returns the name of the type without [] /// <...
using System.Linq; using Type = Typewriter.CodeModel.Type; namespace Typewriter.Extensions.Types { /// <summary> /// Extension methods for working with types. /// </summary> public static class TypeExtensions { /// <summary> /// Returns the name of the type without [] /// <...
apache-2.0
C#
43c28d1ef1d998faacc520d9adb572938c2894b6
Remove unused code.
yojimbo87/ArangoDB-NET,kangkot/ArangoDB-NET
src/Arango/Arango.Client/API/ArangoDatabase.cs
src/Arango/Arango.Client/API/ArangoDatabase.cs
using System.Collections.Generic; using Arango.Client.Protocol; namespace Arango.Client { public class ArangoDatabase { private Connection _connection; public ArangoCollectionOperation Collection { get { return new ArangoCollectionOp...
using System.Collections.Generic; using Arango.Client.Protocol; namespace Arango.Client { public class ArangoDatabase { private Connection _connection; public ArangoCollectionOperation Collection { get { return new ArangoCollectionOp...
mit
C#
56f6bba03b90e0ca69c2525d3d4f6f5d8b5f6ea8
fix bug in client
corvusalba/my-little-lispy,corvusalba/my-little-lispy
src/CorvusAlba.MyLittleLispy.Client/Program.cs
src/CorvusAlba.MyLittleLispy.Client/Program.cs
using System.IO; using System.Linq; using CorvusAlba.MyLittleLispy.Runtime; using CorvusAlba.MyLittleLispy.Hosting; namespace CorvusAlba.MyLittleLispy.Client { internal class Program { private static int Main(string[] args) { if (!args.Any()) { return ne...
using System.IO; using System.Linq; using CorvusAlba.MyLittleLispy.Runtime; using CorvusAlba.MyLittleLispy.Hosting; namespace CorvusAlba.MyLittleLispy.Client { internal class Program { private static int Main(string[] args) { if (!args.Any()) { return ne...
mit
C#
930583b3c0e378239416256c4c1812c9b53c5fbc
Fix V3025
Insire/Maple,Insire/InsireBot-V2
src/Maple.Core/Extensions/GenericExtensions.cs
src/Maple.Core/Extensions/GenericExtensions.cs
using System; using System.Runtime.CompilerServices; using Maple.Localization.Properties; namespace Maple.Core.Extensions { public static class GenericExtensions { public static T ThrowIfNull<T>(this T obj, string objName, [CallerMemberName]string callerName = null) { if (obj == nu...
using System; using System.Runtime.CompilerServices; using Maple.Localization.Properties; namespace Maple.Core.Extensions { public static class GenericExtensions { public static T ThrowIfNull<T>(this T obj, string objName, [CallerMemberName]string callerName = null) { if (obj == nu...
mit
C#
d13cf5d3e2060b8a7715ceff5dde02bb7a5363ce
Add --base-tile option to Deserialize-Tilemap.
Prof9/PixelPet
PixelPet/Commands/DeserializeTilemapCmd.cs
PixelPet/Commands/DeserializeTilemapCmd.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PixelPet.Commands { internal class DeserializeTilemapCmd : CliCommand { public DeserializeTilemapCmd() : base("Deserialize-Tilemap", new Parameter[] { new Parameter("base-tile", "bt", false, new ParameterValue("i...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PixelPet.Commands { internal class DeserializeTilemapCmd : CliCommand { public DeserializeTilemapCmd() : base("Deserialize-Tilemap") { } public override void Run(Workbench workbench, Cli cli) { cli.Log("Deseria...
mit
C#
4474215c1e7826c27ad10939440a58939c8b0885
Update FlanGrab_ArmBehaviour.cs
uulltt/NitoriWare
Assets/Resources/Microgames/_Finished/FlanGrab/Scripts/FlanGrab_ArmBehaviour.cs
Assets/Resources/Microgames/_Finished/FlanGrab/Scripts/FlanGrab_ArmBehaviour.cs
using System.Collections; using System.Collections.Generic; using UnityEngine; public class FlanGrab_ArmBehaviour : MonoBehaviour { private Animator anim; // Use this for initialization void Start () { anim = this.GetComponent<Animator>(); } // Update is called once per frame void Update () { i...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class FlanGrab_ArmBehaviour : MonoBehaviour { private Animator anim; // Use this for initialization void Start () { anim = this.GetComponent<Animator>(); } // Update is called once per frame void Update () { i...
mit
C#
bf59a8261107c0dbf45bc356bcbdee2584a98d33
undo removing xml formatter
s093294/Thinktecture.AuthorizationServer,yfann/AuthorizationServer,IdentityModel/AuthorizationServer,s093294/Thinktecture.AuthorizationServer,IdentityModel/AuthorizationServer,yfann/AuthorizationServer
source/WebHost/App_Start/WebApiConfig.cs
source/WebHost/App_Start/WebApiConfig.cs
/* * Copyright (c) Dominick Baier, Brock Allen. All rights reserved. * see license.txt */ using Newtonsoft.Json.Serialization; using System.Net.Http.Formatting; using System.Web.Http; using Thinktecture.IdentityModel.Tokens.Http; namespace Thinktecture.AuthorizationServer.WebHost { public static class WebApi...
/* * Copyright (c) Dominick Baier, Brock Allen. All rights reserved. * see license.txt */ using Newtonsoft.Json.Serialization; using System.Net.Http.Formatting; using System.Web.Http; using Thinktecture.IdentityModel.Tokens.Http; namespace Thinktecture.AuthorizationServer.WebHost { public static class WebApi...
bsd-3-clause
C#
757b41f2e5584080583579bd7664eca687936ce7
Fix animation FrameDelay not being locale independent.
Damnae/storybrew
common/Storyboarding/OsbAnimation.cs
common/Storyboarding/OsbAnimation.cs
using System; using System.IO; namespace StorybrewCommon.Storyboarding { public class OsbAnimation : OsbSprite { public int FrameCount; public double FrameDelay; public OsbLoopType LoopType; public override string GetTexturePathAt(double time) { var dotInde...
using System; using System.IO; namespace StorybrewCommon.Storyboarding { public class OsbAnimation : OsbSprite { public int FrameCount; public double FrameDelay; public OsbLoopType LoopType; public override string GetTexturePathAt(double time) { var dotInde...
mit
C#
3a4960dd7517ef40a887601f5bc7078bcc9d41be
Remove full stops from player names.
paulbatum/Dominion,paulbatum/Dominion
Dominion.Web/Controllers/HomeController.cs
Dominion.Web/Controllers/HomeController.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Microsoft.Web.Mvc; using Dominion.GameHost; using System.Reflection; using Dominion.Cards.Actions; using Dominion.Rules; using Dominion.Cards.Treasure; using Dominion.Cards.Victory; using Domini...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Microsoft.Web.Mvc; using Dominion.GameHost; using System.Reflection; using Dominion.Cards.Actions; using Dominion.Rules; using Dominion.Cards.Treasure; using Dominion.Cards.Victory; using Domini...
mit
C#
94102ca525e37ba03d0cfba45261069b66c93c52
Convert this in a different way
bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity,bugsnag/bugsnag-unity
src/BugsnagUnity/DictionaryExtensions.cs
src/BugsnagUnity/DictionaryExtensions.cs
using System; using System.Collections.Generic; using BugsnagUnity.Payload; using UnityEngine; namespace BugsnagUnity { static class DictionaryExtensions { internal static void PopulateDictionaryFromAndroidData(this IDictionary<string, object> dictionary, AndroidJavaObject source) { using (var set = ...
using System; using System.Collections.Generic; using BugsnagUnity.Payload; using UnityEngine; namespace BugsnagUnity { static class DictionaryExtensions { private static IntPtr Arrays { get; } = AndroidJNI.FindClass("java/util/Arrays"); private static IntPtr ToStringMethod { get; } = AndroidJNIHelper.Get...
mit
C#
0cdcc98cd0e51d4fbe481bd72352b7fde1ee7d12
Remove filter. We filter for Xamarin per default
planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin
src/Firehose.Web/Authors/VijayAnandEG.cs
src/Firehose.Web/Authors/VijayAnandEG.cs
using Firehose.Web.Infrastructure; using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; namespace Firehose.Web.Authors { public class VijayAnandEG : IAmACommunityMember { public string FirstName => "Vijay Anand"; public string LastName => "E G"; public st...
using Firehose.Web.Infrastructure; using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; namespace Firehose.Web.Authors { public class VijayAnandEG : IAmACommunityMember, IFilterMyBlogPosts { public string FirstName => "Vijay Anand"; public string LastName =>...
mit
C#
2951f00e7fb02fc65b7ab65604d93b8002ef7eee
Revert "removed unused code"
ZA-PT/Obsidian,ZA-PT/Obsidian,ZA-PT/Obsidian,ZA-PT/Obsidian
src/Obsidian/Views/OAuth20/SignIn.cshtml
src/Obsidian/Views/OAuth20/SignIn.cshtml
@* For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 *@ @model Obsidian.Models.OAuthSignInModel @{ ViewData["Title"] = "Sign in"; } @section scripts{ <script src="~/js/OAuthBundle.js"></script> } <!-- <div class="main fullscreen"> <div class="bg c...
@* For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 *@ @model Obsidian.Models.OAuthSignInModel @{ ViewData["Title"] = "Sign in"; } @section scripts{ <script src="~/js/OAuthBundle.js"></script> } <div id="oauth"></div> <link href="~/css/SignIn.css" r...
apache-2.0
C#
bc8dbdec2185f6f428dda436023ed7b2c0885189
Stop using confiuration service in OWinStartup to load IdentityServerConfiguration
SkillsFundingAgency/das-employerusers,SkillsFundingAgency/das-employerusers,SkillsFundingAgency/das-employerusers
src/SFA.DAS.EmployerUsers.Web/Startup.cs
src/SFA.DAS.EmployerUsers.Web/Startup.cs
using Microsoft.Owin; using NLog; using Owin; using SFA.DAS.Configuration; using SFA.DAS.EmployerUsers.Domain.Data; using SFA.DAS.EmployerUsers.Infrastructure.Configuration; [assembly: OwinStartup(typeof(SFA.DAS.EmployerUsers.Web.Startup))] namespace SFA.DAS.EmployerUsers.Web { public partial class Star...
using Microsoft.Owin; using NLog; using Owin; using SFA.DAS.Configuration; using SFA.DAS.EmployerUsers.Domain.Data; using SFA.DAS.EmployerUsers.Infrastructure.Configuration; [assembly: OwinStartup(typeof(SFA.DAS.EmployerUsers.Web.Startup))] namespace SFA.DAS.EmployerUsers.Web { public partial class Star...
mit
C#
8f5804e15590151337bd974bffe8020a04ab6b16
Write help topics instruction
appharbor/appharbor-cli
src/AppHarbor/Program.cs
src/AppHarbor/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Castle.Windsor; namespace AppHarbor { class Program { static void Main(string[] args) { var container = new WindsorContainer() .Install(new AppHarborInstaller()); var commandDispatcher = container.Resolve<Comm...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Castle.Windsor; namespace AppHarbor { class Program { static void Main(string[] args) { var container = new WindsorContainer() .Install(new AppHarborInstaller()); var commandDispatcher = container.Resolve<Comm...
mit
C#
f58aaa3bd1cfa72422c70a33681c340fb3a0e864
Fix a typo (#8143)
hoopsomuah/orleans,dotnet/orleans,dotnet/orleans,hoopsomuah/orleans
samples/Presence/src/Grains/PresenceGrain.cs
samples/Presence/src/Grains/PresenceGrain.cs
using Orleans; using Orleans.Concurrency; using Presence.Grains.Models; namespace Presence.Grains; /// <summary> /// Stateless grain that decodes binary blobs and routes then to the appropriate game grains based on the blob content. /// Simulates how a cloud service receives raw data from a device and needs to prepro...
using Orleans; using Orleans.Concurrency; using Presence.Grains.Models; namespace Presence.Grains; /// <summary> /// Stateless grain that decodes binary blobs and routes then to the appropriate game grains based on the blob content. /// Simulates how a cloud service receives raw data from a device and needs to prepro...
mit
C#
f260156fabd28268b185da0ee751cf38c3703390
Fix image hash computing (PNG gives different results on different ms windows versions)
cezarypiatek/MaintainableSelenium,cezarypiatek/MaintainableSelenium,cezarypiatek/Tellurium,cezarypiatek/Tellurium,cezarypiatek/Tellurium,cezarypiatek/MaintainableSelenium
Src/MaintainableSelenium/MaintainableSelenium.MvcPages/Utils/ImageExtensions.cs
Src/MaintainableSelenium/MaintainableSelenium.MvcPages/Utils/ImageExtensions.cs
using System.Drawing; using System.Drawing.Imaging; using System.IO; namespace MaintainableSelenium.MvcPages.Utils { public static class ImageExtensions { public static Bitmap ToBitmap(this byte[] screenshot) { using (MemoryStream memoryStream = new MemoryStream(screenshot)) ...
using System.Drawing; using System.Drawing.Imaging; using System.IO; namespace MaintainableSelenium.MvcPages.Utils { public static class ImageExtensions { public static Bitmap ToBitmap(this byte[] screenshot) { using (MemoryStream memoryStream = new MemoryStream(screenshot)) ...
mit
C#
2d1e02102a5cebc9924501efa2d43cf8d3afb005
Fix Navigationlink
hotelde/regtesting,AlexEndris/regtesting
RegTesting.Mvc/Views/Shared/_Layout.cshtml
RegTesting.Mvc/Views/Shared/_Layout.cshtml
 <!DOCTYPE html> <html> <head> <title>UI-Testing</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> @*<link href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />*@ <!-- Bootstrap --> <link href="@Url.Content("~/Co...
 <!DOCTYPE html> <html> <head> <title>UI-Testing</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> @*<link href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />*@ <!-- Bootstrap --> <link href="@Url.Content("~/Co...
apache-2.0
C#
3b3aec8ae534604783d8428aae292e1008157872
Set focus on login control at page load.
cdrnet/Lokad.Cloud,cdrnet/Lokad.Cloud
Source/Lokad.Cloud.WebRole/Default.aspx.cs
Source/Lokad.Cloud.WebRole/Default.aspx.cs
#region Copyright (c) Lokad 2009 // This code is released under the terms of the new BSD licence. // URL: http://www.lokad.com/ #endregion using System; using System.Configuration; using DotNetOpenAuth.OpenId.RelyingParty; using Microsoft.ServiceHosting.ServiceRuntime; namespace Lokad.Cloud.Web { public p...
#region Copyright (c) Lokad 2009 // This code is released under the terms of the new BSD licence. // URL: http://www.lokad.com/ #endregion using System; using System.Configuration; using DotNetOpenAuth.OpenId.RelyingParty; using Microsoft.ServiceHosting.ServiceRuntime; namespace Lokad.Cloud.Web { public p...
bsd-3-clause
C#
f64d7e66b9d7ef3535848c4a37eca73efbe19466
Simplify expression
appharbor/appharbor-cli
src/AppHarbor.Tests/CommandDispatcherTest.cs
src/AppHarbor.Tests/CommandDispatcherTest.cs
using System; using System.Linq; using Castle.MicroKernel; using Moq; using Ploeh.AutoFixture.Xunit; using Xunit.Extensions; namespace AppHarbor.Tests { public class CommandDispatcherTest { private static Type FooCommandType = typeof(FooCommand); public class FooCommand : ICommand { public virtual void Ex...
using System; using System.Linq; using Castle.MicroKernel; using Moq; using Ploeh.AutoFixture.Xunit; using Xunit.Extensions; namespace AppHarbor.Tests { public class CommandDispatcherTest { private static Type FooCommandType = typeof(FooCommand); public class FooCommand : ICommand { public virtual void Ex...
mit
C#
1996f41574aebfafa0c732a524af76a35e1e802e
fix release build
Fody/Fielder
Tests/CheckForErrors.cs
Tests/CheckForErrors.cs
using System.Collections.Generic; using System.IO; using Mono.Cecil; using NUnit.Framework; [TestFixture] public class CheckForErrors { [Test] public void VerifyRefError() { var errors = new List<string>(); var assemblyPath = Path.GetFullPath(@"..\..\..\AssemblyToProcessWithErrors\bin\Debu...
using System.Collections.Generic; using System.IO; using Mono.Cecil; using NUnit.Framework; [TestFixture] public class CheckForErrors { [Test] public void VerifyRefError() { var errors = new List<string>(); var assemblyPath = Path.GetFullPath(@"..\..\..\AssemblyToProcessWithErrors\bin\Deb...
mit
C#
76e379198d9bcd302065e563843dbe351ef61103
remove array
Appleseed/base,Appleseed/base
Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Model/SolrResponseItem.cs
Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Model/SolrResponseItem.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Appleseed.Base.Alerts.Model { class SolrResponseItem { public string id { get; set; } public string item_type { get; set; } public string address_1 { get; set;...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Appleseed.Base.Alerts.Model { class SolrResponseItem { public string id { get; set; } public string item_type { get; set; } public string address_1 { get; set;...
apache-2.0
C#
312723dbba83669dfda24bb5e07829adaa4c7cac
Update Extensions to include new Functions for finding specific types of IVNodes in IEnumerables
BenVlodgi/VMFParser
VMFParser/Extensions.cs
VMFParser/Extensions.cs
using System; using System.Collections.Generic; using System.Linq; namespace VMFParser { public static class Extensions { /// <summary>Returns a new array from given index with the specified length. </summary> public static T[] SubArray<T>(this T[] data, int index, int length) { ...
using System; namespace VMFParser { public static class Extensions { /// <summary>Returns a new array from given index with the specified length. </summary> public static T[] SubArray<T>(this T[] data, int index, int length) { T[] result = new T[length]; Array.C...
mit
C#
94374f952997ba8d7efaa091796c70cbfadb8566
Bump version to 0.6.2
ar3cka/Journalist
src/SolutionInfo.cs
src/SolutionInfo.cs
// <auto-generated/> using System.Reflection; [assembly: AssemblyProductAttribute("Journalist")] [assembly: AssemblyVersionAttribute("0.6.2")] [assembly: AssemblyInformationalVersionAttribute("0.6.2")] [assembly: AssemblyFileVersionAttribute("0.6.2")] [assembly: AssemblyCompanyAttribute("Anton Mednonogov")] namespace...
// <auto-generated/> using System.Reflection; [assembly: AssemblyProductAttribute("Journalist")] [assembly: AssemblyVersionAttribute("0.6.1")] [assembly: AssemblyInformationalVersionAttribute("0.6.1")] [assembly: AssemblyFileVersionAttribute("0.6.1")] [assembly: AssemblyCompanyAttribute("Anton Mednonogov")] namespace...
apache-2.0
C#
a68383a1b0f1c67ed2d449f1d99a8f6389806454
Bump version to 0.14.0
ar3cka/Journalist
src/SolutionInfo.cs
src/SolutionInfo.cs
// <auto-generated/> using System.Reflection; [assembly: AssemblyProductAttribute("Journalist")] [assembly: AssemblyVersionAttribute("0.14.0")] [assembly: AssemblyInformationalVersionAttribute("0.14.0")] [assembly: AssemblyFileVersionAttribute("0.14.0")] [assembly: AssemblyCompanyAttribute("Anton Mednonogov")] namesp...
// <auto-generated/> using System.Reflection; [assembly: AssemblyProductAttribute("Journalist")] [assembly: AssemblyVersionAttribute("0.13.6")] [assembly: AssemblyInformationalVersionAttribute("0.13.6")] [assembly: AssemblyFileVersionAttribute("0.13.6")] [assembly: AssemblyCompanyAttribute("Anton Mednonogov")] namesp...
apache-2.0
C#
d4ac9cd58fd5ead806ea3a6d229b20e41e51aabd
Add properties for tracked data
sakapon/Samples-2016,sakapon/Samples-2016
Wpf3DSample/DiceOrientationWpf/AppModel.cs
Wpf3DSample/DiceOrientationWpf/AppModel.cs
using System; using System.Collections.Generic; using System.Linq; using System.Reactive.Linq; using System.Threading; using System.Windows.Media.Media3D; using Reactive.Bindings; using Windows.Devices.Sensors; namespace DiceOrientationWpf { public class AppModel { public Transform3D Cube...
using System; using System.Collections.Generic; using System.Linq; using System.Reactive.Linq; using System.Threading; using System.Windows.Media.Media3D; using Reactive.Bindings; using Windows.Devices.Sensors; namespace DiceOrientationWpf { public class AppModel { public Transform3D Cube...
mit
C#
f4a9801e2d94015d4cbbb86f42981a95db6fe5f8
Use debug verbosity by default instead of info, since console now scales to it
kamsar/Unicorn,kamsar/Unicorn
src/Unicorn/ControlPanel/Controls/Heading.cs
src/Unicorn/ControlPanel/Controls/Heading.cs
using System.Web.UI; using Unicorn.ControlPanel.Headings; using Unicorn.Data.Dilithium; namespace Unicorn.ControlPanel.Controls { internal class Heading : IControlPanelControl { private readonly bool _isAuthenticated; public Heading(bool isAuthenticated) { _isAuthenticated = isAuthenticated; } public...
using System.Web.UI; using Unicorn.ControlPanel.Headings; using Unicorn.Data.Dilithium; namespace Unicorn.ControlPanel.Controls { internal class Heading : IControlPanelControl { private readonly bool _isAuthenticated; public Heading(bool isAuthenticated) { _isAuthenticated = isAuthenticated; } public...
mit
C#
3ba7426e0f3be1695f97fc99dee6e9593d13b13c
Remove obsolete ifdefs and property
Xablu/Xablu.WebApiClient
src/Xablu.WebApiClient/CrossRestApiClient.cs
src/Xablu.WebApiClient/CrossRestApiClient.cs
using System; using Xablu.WebApiClient.Exceptions; namespace Xablu.WebApiClient { public class CrossRestApiClient { private static Action<RestApiClientOptions> _configureRestApiClient; private static Lazy<IRestApiClient> _restApiClientImplementation = new Lazy<IRestApiClient>(() => CreateRestAp...
using System; using Xablu.WebApiClient.Exceptions; namespace Xablu.WebApiClient { public class CrossRestApiClient { private static Action<RestApiClientOptions> _configureRestApiClient; private static Lazy<IRestApiClient> _restApiClientImplementation = new Lazy<IRestApiClient>(() => CreateRestAp...
mit
C#
0394d27ae17f8e30e660ba4a5cce1176957f0a7c
Update assembly copyright
mminns/xwt,hamekoz/xwt,iainx/xwt,sevoku/xwt,mono/xwt,TheBrainTech/xwt,steffenWi/xwt,akrisiun/xwt,directhex/xwt,cra0zy/xwt,antmicro/xwt,lytico/xwt,residuum/xwt,hwthomas/xwt,mminns/xwt
Xwt.WPF/AssemblyInfo.cs
Xwt.WPF/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("Xwt.WPF")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [as...
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("Xwt.WPF")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [as...
mit
C#
6108e0e84a36db8963ac5ae9dc6bb0d671a281aa
fix registration for UnityCodeInsight Higlighting
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/Rider/CodeInsights/UnityInspectorCodeInsightsHighlighting.cs
resharper/resharper-unity/src/Rider/CodeInsights/UnityInspectorCodeInsightsHighlighting.cs
using JetBrains.Annotations; using JetBrains.DocumentModel; using JetBrains.ReSharper.Daemon.CodeInsights; using JetBrains.ReSharper.Feature.Services.Daemon; using JetBrains.ReSharper.Plugins.Unity.CSharp.Daemon.Stages.Highlightings; using JetBrains.ReSharper.Psi; using JetBrains.Rider.Model; using JetBrains.TextContro...
using System.Collections.Generic; using System.Linq; using JetBrains.Annotations; using JetBrains.Application.UI.Controls.BulbMenu.Items; using JetBrains.DocumentModel; using JetBrains.ReSharper.Daemon.CodeInsights; using JetBrains.ReSharper.Feature.Services.Daemon; using JetBrains.ReSharper.Plugins.Unity.CSharp.Daemon...
apache-2.0
C#
bb706e0aef53188c2deb41bc9135d75f77b998d1
Fix installments to use the correct type
stripe/stripe-dotnet
src/Stripe.net/Entities/PaymentIntents/PaymentIntentPaymentMethodOptionsCard.cs
src/Stripe.net/Entities/PaymentIntents/PaymentIntentPaymentMethodOptionsCard.cs
namespace Stripe { using System; using Newtonsoft.Json; using Stripe.Infrastructure; public class PaymentIntentPaymentMethodOptionsCard : StripeEntity<PaymentIntentPaymentMethodOptionsCard> { /// <summary> /// Installment details for this payment (Mexico only). /// </summary...
namespace Stripe { using System; using Newtonsoft.Json; using Stripe.Infrastructure; public class PaymentIntentPaymentMethodOptionsCard : StripeEntity<PaymentIntentPaymentMethodOptionsCard> { /// <summary> /// Installment details for this payment (Mexico only). /// </summary...
apache-2.0
C#
56975f3675121702a2c6437b7881a6004cc1bab0
Update Index.cshtml
swcurran/hets,bcgov/hets,swcurran/hets,swcurran/hets,swcurran/hets,bcgov/hets,bcgov/hets,bcgov/hets,swcurran/hets,asanchezr/hets,asanchezr/hets,asanchezr/hets,asanchezr/hets
PDF/src/PDF.Server/Views/Home/Index.cshtml
PDF/src/PDF.Server/Views/Home/Index.cshtml
@{ViewBag.Title = "PDFAPI - Api Home";}<!DOCTYPE html><html><head>    <meta charset="utf-8" />    <meta name="viewport" content="width=device-width, initial-scale=1.0" />    <title>@ViewData["Title"]</title>            <style>        body {            background-color: #fff;            padding: 10px;            font-f...
temp
apache-2.0
C#
63128c9465669cda7e699d608cc33aeb46b8c844
Extend mouse hiding in catch to include catcher area
UselessToucan/osu,johnneijzen/osu,ppy/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,EVAST9919/osu,smoogipooo/osu,UselessToucan/osu,2yangk23/osu,NeoAdonis/osu,smoogipoo/osu,smoogipoo/osu,ppy/osu,ppy/osu,johnneijzen/osu,peppy/osu,smoogipoo/osu,2yangk23/osu,NeoAdonis/osu,peppy/osu-new,EVAST9919/osu
osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs
osu.Game.Rulesets.Catch/UI/CatchPlayfield.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.Containers; using osu.Game.Beatmaps; using osu.Game.Rulesets.Catch.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 osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game.Beatmaps; using osu.Game.Rulesets.Catch.Objects; using osu.Game.Rules...
mit
C#
8e7c16e8e8690378f4f8484911d49b1ab8916360
Add namespace to Utils.
Zonr0/SealsOfFate,legitbiz/SealsOfFate,connorkuehl/SealsOfFate
Assets/Scripts/LevelGeneration/FeatureOption.cs
Assets/Scripts/LevelGeneration/FeatureOption.cs
using System; using Utility; /// <summary> /// The "rule book" for level generation. This class serves as a reference /// for the level; a range of chunks to generate (at least and at most), /// as well as weights for how richly populated certain feature representations /// are (walls, enemies, loot, etc.) ///</summ...
using System; /// <summary> /// The "rule book" for level generation. This class serves as a reference /// for the level; a range of chunks to generate (at least and at most), /// as well as weights for how richly populated certain feature representations /// are (walls, enemies, loot, etc.) ///</summary> public cla...
mit
C#
31fe257ec85d7fa7ad25f997b0491daac4c6c0fe
test clear the cache for the LockingInMemoryCache
modulexcite/lokad-cqrs
Cqrs.Portable.Tests/TapeStorage/LockingInMemoryCacheTests/when_clearing_cache.cs
Cqrs.Portable.Tests/TapeStorage/LockingInMemoryCacheTests/when_clearing_cache.cs
using System.IO; using System.Linq; using System.Text; using System.Threading; using Lokad.Cqrs; using Lokad.Cqrs.TapeStorage; using NUnit.Framework; namespace Cqrs.Portable.Tests.TapeStorage.LockingInMemoryCacheTests { [TestFixture] public sealed class when_clearing_cache : fixture_with_cache_helpers { ...
using System.IO; using System.Text; using Lokad.Cqrs; using Lokad.Cqrs.TapeStorage; using NUnit.Framework; namespace Cqrs.Portable.Tests.TapeStorage.LockingInMemoryCacheTests { [TestFixture] public sealed class when_clearing_cache : fixture_with_cache_helpers { [Test] public void given_emp...
bsd-3-clause
C#
9f5ad8c561e2de8509b0f78896dbc603edb9085a
Update version number.
spacechase0/StardewValleyMP,blommers/StardewValleyMP
StardewValleyMP/Properties/AssemblyInfo.cs
StardewValleyMP/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("St...
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("St...
mit
C#
61c6e661b35a49b2c54e1bcd499079d323d41fc3
Fix warning for CI
LordMike/TMDbLib
TMDbLibTests/TestClasses/EnumTestStruct.cs
TMDbLibTests/TestClasses/EnumTestStruct.cs
namespace TMDbLibTests.TestClasses { struct EnumTestStruct { } }
namespace TMDbLibTests.TestClasses { struct EnumTestStruct { public int A; } }
mit
C#
023ae3372d61cef6ed9de526f289accacb1795e1
Add TODOs
fredatgithub/PaperBoy
PaperBoy/Program.cs
PaperBoy/Program.cs
/* The MIT License(MIT) Copyright(c) 2015 Freddy Juhel 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, modify, merge, pub...
/* The MIT License(MIT) Copyright(c) 2015 Freddy Juhel 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, modify, merge, pub...
mit
C#
bc9eb11ebdfdf481ea2b98343c1d818682daff1c
更新版本1.8.6.5
herix001/ElectronicObserver,kanonmelodis/ElectronicObserver,CNA-Bld/ElectronicObserver,tsanie/ElectronicObserver
ElectronicObserver/Properties/AssemblyInfo.cs
ElectronicObserver/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // アセンブリに関する一般情報は以下の属性セットをとおして制御されます。 // アセンブリに関連付けられている情報を変更するには、 // これらの属性値を変更してください。 [assembly: AssemblyTitle( "ElectronicObserver" )] [assembly: AssemblyDescription( "" )] [assembly: AssemblyConfiguratio...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // アセンブリに関する一般情報は以下の属性セットをとおして制御されます。 // アセンブリに関連付けられている情報を変更するには、 // これらの属性値を変更してください。 [assembly: AssemblyTitle( "ElectronicObserver" )] [assembly: AssemblyDescription( "" )] [assembly: AssemblyConfiguratio...
mit
C#
a48d17e5bd2d22c6fbbef55959f768e5808b2804
add add-barbershop and getAll
psyun/HDO2O-RestfulAPI
HDO2O.API/Controllers/BarbershopController.cs
HDO2O.API/Controllers/BarbershopController.cs
using HDO2O.DTO; using HDO2O.IServices; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; namespace HDO2O.API.Controllers { [RoutePrefix("rest/barbershop")] public class BarbershopController : ApiController { private ...
using HDO2O.DTO; using HDO2O.IServices; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; namespace HDO2O.API.Controllers { [RoutePrefix("rest/barbershop")] public class BarbershopController : ApiController { private ...
apache-2.0
C#
e6ef03bd966fa2a48c20deaf534c0bd60d0162ba
Add assertions checking file existence
nuke-build/nuke,nuke-build/nuke,nuke-build/nuke,nuke-build/nuke
source/Nuke.Common/IO/TextTasks.cs
source/Nuke.Common/IO/TextTasks.cs
// Copyright 2018 Maintainers of NUKE. // Distributed under the MIT License. // https://github.com/nuke-build/nuke/blob/master/LICENSE using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using JetBrains.Annotations; namespace Nuke.Common.IO { [PublicAPI] publ...
// Copyright 2018 Maintainers of NUKE. // Distributed under the MIT License. // https://github.com/nuke-build/nuke/blob/master/LICENSE using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using JetBrains.Annotations; namespace Nuke.Common.IO { [PublicAPI] publ...
mit
C#
9fc6231e18e12eaa4269e2fe75071ac469473cf4
add some events to Button and IsPressed var
jpbruyere/Crow,jpbruyere/Crow
src/GraphicObjects/Button.cs
src/GraphicObjects/Button.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; //using OpenTK.Graphics.OpenGL; using System.Diagnostics; using System.Xml.Serialization; using Cairo; using System.ComponentModel; namespace Crow { [DefaultStyle("#Crow.Styles.Button.style")] [DefaultTemplate("#Crow.Templates.B...
using System; using System.Collections.Generic; using System.Linq; using System.Text; //using OpenTK.Graphics.OpenGL; using System.Diagnostics; using System.Xml.Serialization; using Cairo; using System.ComponentModel; namespace Crow { [DefaultStyle("#Crow.Styles.Button.style")] [DefaultTemplate("#Crow.Templates.B...
mit
C#
7e039a36bba6113d332db58eca04dc3963ca6921
Fix ControlList_CheckBox test
atata-framework/atata,YevgeniyShunevych/Atata,YevgeniyShunevych/Atata,atata-framework/atata
src/Atata.Tests/ControlListTest.cs
src/Atata.Tests/ControlListTest.cs
using NUnit.Framework; namespace Atata.Tests { public class ControlListTest : AutoTest { [Test] public void ControlList_CheckBox() { CheckBoxListPage page = Go.To<CheckBoxListPage>(); page. AllItems.Should.HaveCount(6). ...
using NUnit.Framework; namespace Atata.Tests { public class ControlListTest : AutoTest { [Test] public void ControlList_CheckBox() { CheckBoxListPage page = Go.To<CheckBoxListPage>(); page. AllItems.Should.HaveCount(6). ...
apache-2.0
C#
c5aacaea2f78cefcdd39e3079e6c7fef7fe552bb
resolve the code analysis
jwChung/Experimentalism,jwChung/Experimentalism
src/Experiment/TheoremAttribute.cs
src/Experiment/TheoremAttribute.cs
using System; using System.Collections.Generic; using Xunit; using Xunit.Extensions; using Xunit.Sdk; namespace Jwc.Experiment { /// <summary> /// 이 attribute는 method위에 선언되어 해당 method가 test-case라는 것을 /// 지칭하게 되며, non-parameterized test 뿐 아니라 parameterized test에도 /// 사용될 수 있다. /// </summary> [A...
using System; using System.Collections.Generic; using Xunit; using Xunit.Extensions; using Xunit.Sdk; namespace Jwc.Experiment { /// <summary> /// 이 attribute는 method위에 선언되어 해당 method가 test-case라는 것을 /// 지칭하게 되며, non-parameterized test 뿐 아니라 parameterized test에도 /// 사용될 수 있다. /// </summary> [A...
mit
C#
2a958907918d820e67b55d83e1796a78ff506819
Print full exception name.
GunioRobot/sdb-cli,GunioRobot/sdb-cli
Mono.Debugger.Cli/Debugging/ExceptionPrinter.cs
Mono.Debugger.Cli/Debugging/ExceptionPrinter.cs
using System.Collections.Generic; using Mono.Debugger.Cli.Logging; using Mono.Debugger.Soft; namespace Mono.Debugger.Cli.Debugging { public static class ExceptionPrinter { public static void Print(ThreadMirror thread, ObjectMirror ex) { // We disregard thread safety here, since an e...
using System.Collections.Generic; using Mono.Debugger.Cli.Logging; using Mono.Debugger.Soft; namespace Mono.Debugger.Cli.Debugging { public static class ExceptionPrinter { public static void Print(ThreadMirror thread, ObjectMirror ex) { // We disregard thread safety here, since an e...
mit
C#
637132a7d8abec76a469ea0357313ac6bf81ba49
Allow for null callbacks in Notifications
orand/Xamarin.Mobile,xamarin/Xamarin.Mobile,nexussays/Xamarin.Mobile,xamarin/Xamarin.Mobile,moljac/Xamarin.Mobile,haithemaraissia/Xamarin.Mobile
MonoTouch/MonoMobile.Extensions/Notification.cs
MonoTouch/MonoMobile.Extensions/Notification.cs
using System; using MonoTouch.UIKit; using MonoTouch.AudioToolbox; namespace MonoMobile.Extensions { public class Notification { public Notification () { } public void Alert (string message, Action alertCallback) { Alert(message, alertCallback, "Alert", "OK"); } public void Alert (string message,...
using System; using MonoTouch.UIKit; using MonoTouch.AudioToolbox; namespace MonoMobile.Extensions { public class Notification { public Notification () { } public void Alert (string message, Action alertCallback) { Alert(message, alertCallback, "Alert", "OK"); } public void Alert (string message,...
apache-2.0
C#
377d171750cc3f2c5ba6e600027eb54cc3318e04
delete extra license comment.
StephenBonikowsky/wcf,mconnew/wcf,StephenBonikowsky/wcf,mconnew/wcf,mconnew/wcf,dotnet/wcf,imcarolwang/wcf,dotnet/wcf,imcarolwang/wcf,dotnet/wcf,imcarolwang/wcf
src/System.ServiceModel.Security/tests/ServiceModel/SecutityBindingElementTest.cs
src/System.ServiceModel.Security/tests/ServiceModel/SecutityBindingElementTest.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.ServiceModel.Channels; using System.ServiceModel.Security.Tokens; using Infrastructure.Common; using ...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you un...
mit
C#
4aa046d62922cf5d5ff5288a9acb2cd3d7334124
Test for ColumnConstraintCollection.
msallin/SQLiteCodeFirst
SQLite.CodeFirst/Statement/ColumnStatement.cs
SQLite.CodeFirst/Statement/ColumnStatement.cs
using System.Text; using SQLite.CodeFirst.Statement.ColumnConstraint; namespace SQLite.CodeFirst.Statement { internal class ColumnStatement : IStatement { private const string Template = "[{column-name}] {type-name} {column-constraint}"; public string ColumnName { get; set; } public s...
using System.Text; using SQLite.CodeFirst.Statement.ColumnConstraint; namespace SQLite.CodeFirst.Statement { internal class ColumnStatement : IStatement { private const string Template = "[{column-name}] {type-name} {column-constraint}"; public string ColumnName { get; set; } public s...
apache-2.0
C#
8b27684976df4fc33006b6e7a02e0aae7cfebde4
fix typo
DeonHeyns/Metrics.NET,ntent-ad/Metrics.NET,cvent/Metrics.NET,mnadel/Metrics.NET,mnadel/Metrics.NET,Recognos/Metrics.NET,DeonHeyns/Metrics.NET,ntent-ad/Metrics.NET,etishor/Metrics.NET,MetaG8/Metrics.NET,MetaG8/Metrics.NET,Liwoj/Metrics.NET,MetaG8/Metrics.NET,huoxudong125/Metrics.NET,etishor/Metrics.NET,alhardy/Metrics.N...
Samples/Metrics.StupidBenchmarks/Benchmark.cs
Samples/Metrics.StupidBenchmarks/Benchmark.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.Threading; using System.Threading.Tasks; namespace Metrics.StupidBenchmarks { public static class Benchmark { public struct Result { public TimeSpan Elapsed; public long Total; ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Threading; using System.Threading.Tasks; namespace Metrics.StupidBenchmarks { public static class Benchmark { public struct Result { public TimeSpan Elapsed; public long Total; ...
apache-2.0
C#
52a409ea25bd249618cd89fe3188d3092dcfc015
remove method parameter
bradwestness/SecretSanta,bradwestness/SecretSanta
SecretSanta/Controllers/WishlistController.cs
SecretSanta/Controllers/WishlistController.cs
using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using SecretSanta.Models; using SecretSanta.Utilities; namespace SecretSanta.Controllers; [Authorize] public class WishlistController : Controller { [HttpGet] [ResponseCache(VaryByQueryKeys = new[] { "t" } )] public IActionResult I...
using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using SecretSanta.Models; using SecretSanta.Utilities; namespace SecretSanta.Controllers; [Authorize] public class WishlistController : Controller { [HttpGet] [ResponseCache(VaryByQueryKeys = new[] { "t" } )] public IActionResult I...
apache-2.0
C#
fa9a11afe9f8aed40003466587d580447e8d2bb2
deploy test
dreanor/StreamCompanion
src/app/Properties/AssemblyInfo.cs
src/app/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; using System.Windows; [assembly: AssemblyTitle("App")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("App")] [assembly: AssemblyCopyright("Copyright © Dreanor 2013")] [...
using System.Reflection; using System.Runtime.InteropServices; using System.Windows; [assembly: AssemblyTitle("App")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("App")] [assembly: AssemblyCopyright("Copyright © Dreanor 2013")] [...
mit
C#
442cde265e4c9059970cdb4b1e157c418ab2d720
Remove unnecessary submit method from WebForm
cezarypiatek/MaintainableSelenium,cezarypiatek/Tellurium,cezarypiatek/Tellurium,cezarypiatek/MaintainableSelenium,cezarypiatek/Tellurium,cezarypiatek/MaintainableSelenium
Src/MaintainableSelenium/MaintainableSelenium.Toolbox/WebPages/WebForms/WebForm.cs
Src/MaintainableSelenium/MaintainableSelenium.Toolbox/WebPages/WebForms/WebForm.cs
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Web.Mvc; using OpenQA.Selenium; using OpenQA.Selenium.Remote; using OpenQA.Selenium.Support.UI; namespace MaintainableSelenium.Toolbox.WebPages.WebForms { /// <summary> /// Strongly typed adapter for ...
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Web.Mvc; using OpenQA.Selenium; using OpenQA.Selenium.Remote; using OpenQA.Selenium.Support.UI; namespace MaintainableSelenium.Toolbox.WebPages.WebForms { /// <summary> /// Strongly typed adapter for ...
mit
C#
1ee87a33ca278ff9af254b1e4eedf678341e3ca3
Copy IsRequired to Action
CrOrc/Cr.ArgParse
src/Cr.ArgParse/ArgumentAction.cs
src/Cr.ArgParse/ArgumentAction.cs
using System.Collections.Generic; namespace Cr.ArgParse { public abstract class ArgumentAction { public Argument Argument { get; private set; } public ActionContainer Container { get; set; } public IList<string> OptionStrings { get; private set; } public bool IsRequi...
using System.Collections.Generic; namespace Cr.ArgParse { public abstract class ArgumentAction { public Argument Argument { get; private set; } public ActionContainer Container { get; set; } public IList<string> OptionStrings { get; private set; } public bool IsRequi...
mit
C#
66608aa70879269f9ca656c26df4ca31f7785a2c
Allow Runnable to be comparable
bigbearstudios/sharp-test
SharpTest/Source/Internal/Runnable.cs
SharpTest/Source/Internal/Runnable.cs
using System; using System.Text; using SharpTest.Reporters; using SharpTest.Results; namespace SharpTest.Internal { public abstract class Runnable : IComparable<Runnable> { private String name = null; private String description = null; private TestFormat format = TestFormat.Run; private UInt32 order = 100;...
using System; using System.Text; namespace SharpTest.Internal { public class Runnable : IComparable<Runnable> { private String name = null; private String description = null; private TestFormat format = TestFormat.Run; private UInt32 order = 0; public String Name { get { return this.name; } inter...
mit
C#
bace6d1bb9c7a5ed00dc096cd71e7f73c03a163a
fix url format str
dhawalharsora/connectedcare-sdk,SnapMD/connectedcare-sdk
SnapMD.VirtualCare.Sdk/PaymentsApi.cs
SnapMD.VirtualCare.Sdk/PaymentsApi.cs
// Copyright 2016 SnapMD, Inc. // 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 ag...
// Copyright 2016 SnapMD, Inc. // 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 ag...
apache-2.0
C#
af62c96c770f08ede2383894512f94b7e5f4276e
Update WMR camera settings to use base class
killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity
Assets/MixedRealityToolkit.Providers/WindowsMixedReality/WindowsMixedRealityCameraSettings.cs
Assets/MixedRealityToolkit.Providers/WindowsMixedReality/WindowsMixedRealityCameraSettings.cs
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Microsoft.MixedReality.Toolkit.CameraSystem; using Microsoft.MixedReality.Toolkit.Utilities; #if UNITY_WSA using UnityEngine.XR.WSA; #endif // UNITY_WSA namespace Microsoft.MixedReality.Toolkit.WindowsMixedReality { /// <summary> ...
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Microsoft.MixedReality.Toolkit.CameraSystem; using Microsoft.MixedReality.Toolkit.Utilities; using UnityEngine; #if UNITY_WSA using UnityEngine.XR.WSA; #endif // UNITY_WSA namespace Microsoft.MixedReality.Toolkit.WindowsMixedReality { ...
mit
C#
c2ab3fee11f9bdd185a4cba0c9d6d378396ab5e9
Resolve broken xmldoc
smoogipooo/osu-framework,ZLima12/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework
osu.Framework/Input/StateChanges/TouchInput.cs
osu.Framework/Input/StateChanges/TouchInput.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.Events; using osu.Framework.Input.States; namespace osu.Framework.Input.StateChanges { /// <summary> /// Denotes a change ...
// 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.Events; using osu.Framework.Input.States; namespace osu.Framework.Input.StateChanges { /// <summary> /// Denotes a change ...
mit
C#
421c95156b420c5eda20807419c19393646cc9ab
Fix ClickableText test case
peppy/osu,ZLima12/osu,UselessToucan/osu,EVAST9919/osu,smoogipooo/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,peppy/osu-new,UselessToucan/osu,ZLima12/osu,smoogipoo/osu,smoogipoo/osu,johnneijzen/osu,peppy/osu,2yangk23/osu,NeoAdonis/osu,EVAST9919/osu,johnneijzen/osu,smoogipoo/osu,ppy/osu,2yangk23/osu,UselessToucan/o...
osu.Game.Tests/Visual/TestCaseClickableText.cs
osu.Game.Tests/Visual/TestCaseClickableText.cs
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Graphics.Containers; using osu.Game.Graphics.UserInterface; using System; using System.Collections.Generic; namespace osu.Game.Tests.Visual { p...
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Graphics.Containers; using osu.Game.Graphics.UserInterface; using System; using System.Collections.Generic; namespace osu.Game.Tests.Visual { p...
mit
C#
f747956026d74f02bd6dd59c4ee7e86752c76805
Use {0:c} rather than ToString("c") where possible.
bleroy/Nwazet.Commerce,bleroy/Nwazet.Commerce
Views/Parts/Product.PriceTiers.cshtml
Views/Parts/Product.PriceTiers.cshtml
@using System.Linq; @using Nwazet.Commerce.Models; @{ var priceTiers = new List<PriceTier>(Model.PriceTiers); var discountedPriceTiers = new List<PriceTier>(Model.DiscountedPriceTiers); } @if (Model.PriceTiers != null && Enumerable.Count(Model.PriceTiers) > 0) { <table class="tiered-prices"> <tr> ...
@using System.Linq; @using Nwazet.Commerce.Models; @{ var priceTiers = new List<PriceTier>(Model.PriceTiers); var discountedPriceTiers = new List<PriceTier>(Model.DiscountedPriceTiers); } @if (Model.PriceTiers != null && Enumerable.Count(Model.PriceTiers) > 0) { <table class="tiered-prices"> <tr> ...
bsd-3-clause
C#
ecedb81e0e570cce01bc6a3ae892ac3ae4479999
Add missing properties to IActionViewMessage
zanetdev/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,Glimpse/Glimpse.Prototype,Glimpse/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,zanetdev/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,peterblazejewicz/Gli...
src/Glimpse.Agent.Web/Providers/Mvc/Messages/IActionViewMessage.cs
src/Glimpse.Agent.Web/Providers/Mvc/Messages/IActionViewMessage.cs
using System.Collections.Generic; namespace Glimpse.Agent.AspNet.Mvc.Messages { public interface IActionViewMessage { string ActionId { get; set; } string ViewName { get; set; } bool DidFind { get; set; } IEnumerable<string> SearchedLocations { get; set; } string Pa...
using System.Collections.Generic; namespace Glimpse.Agent.AspNet.Mvc.Messages { public interface IActionViewMessage { string ActionId { get; set; } string ViewName { get; set; } bool DidFind { get; set; } ViewResult ViewData { get; set; } } }
mit
C#
1a137844c2691c1364319991ebd0543f9a62aa42
Make same connect.dll work for debug and release (with different destinations on Parse.com)
gmartin7/myBloomFork,StephenMcConnel/BloomDesktop,BloomBooks/BloomDesktop,JohnThomson/BloomDesktop,BloomBooks/BloomDesktop,JohnThomson/BloomDesktop,andrew-polk/BloomDesktop,gmartin7/myBloomFork,andrew-polk/BloomDesktop,andrew-polk/BloomDesktop,StephenMcConnel/BloomDesktop,StephenMcConnel/BloomDesktop,StephenMcConnel/Bl...
src/BloomExe/WebLibraryIntegration/KeyManager.cs
src/BloomExe/WebLibraryIntegration/KeyManager.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Text; using Palaso.Extensions; using Palaso.IO; namespace Bloom.WebLibraryIntegration { /// <summary> /// This class is responsible for the key bits of information that are needed to access our ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Text; using Palaso.Extensions; using Palaso.IO; namespace Bloom.WebLibraryIntegration { /// <summary> /// This class is responsible for the key bits of information that are needed to access our ...
mit
C#
a8f8e84dfdc41f60860f05cdee4226bf3b4b6b4e
Edit it
2Toad/websocket-sharp,jogibear9988/websocket-sharp,2Toad/websocket-sharp,2Toad/websocket-sharp,jogibear9988/websocket-sharp,sta/websocket-sharp,2Toad/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp,jogibear9988/websocket-sharp,jogibear9988/websocket-sharp
websocket-sharp/Net/HttpBasicIdentity.cs
websocket-sharp/Net/HttpBasicIdentity.cs
#region License /* * HttpBasicIdentity.cs * * This code is derived from System.Net.HttpListenerBasicIdentity.cs of Mono * (http://www.mono-project.com). * * The MIT License * * Copyright (c) 2005 Novell, Inc. (http://www.novell.com) * Copyright (c) 2014 sta.blockhead * * Permission is hereby granted, free of...
#region License /* * HttpBasicIdentity.cs * * This code is derived from System.Net.HttpListenerBasicIdentity.cs of Mono * (http://www.mono-project.com). * * The MIT License * * Copyright (c) 2005 Novell, Inc. (http://www.novell.com) * Copyright (c) 2014 sta.blockhead * * Permission is hereby granted, free of...
mit
C#
0e4cef7caa64070d6b1fb9c42206f0a6b8864ae2
clean up
dkataskin/bstrkr
bstrkr.mobile/bstrkr.android/Views/MapView.cs
bstrkr.mobile/bstrkr.android/Views/MapView.cs
using System; using Android.Gms.Common; using Android.Gms.Maps; using Android.OS; using Android.Views; using Cirrious.MvvmCross.Binding.BindingContext; using Cirrious.MvvmCross.Binding.Droid.BindingContext; using Cirrious.MvvmCross.Droid.Fragging.Fragments; using Xamarin; using bstrkr.core.android.extensions; usin...
using System; using Android.Gms.Common; using Android.Gms.Maps; using Android.OS; using Android.Views; using Cirrious.MvvmCross.Binding.BindingContext; using Cirrious.MvvmCross.Binding.Droid.BindingContext; using Cirrious.MvvmCross.Droid.Fragging.Fragments; using Xamarin; using bstrkr.core.android.extensions; usin...
bsd-2-clause
C#
2ee4fb0fa5b9eb815cb7bd7fb57a6d50608face1
Rename variable for funzies
substantial/mapify-example
app/Assets/Scripts/GameInitializer.cs
app/Assets/Scripts/GameInitializer.cs
using UnityEngine; using System.Collections; using Substantial; public class GameInitializer : MonoBehaviour { public TextAsset LevelAsset; public TileRepository TileRepository; public Transform LevelContainer; public float TileSize = 1.0f; private void Start() { Mapify.Generate(LevelAsset.text, LevelC...
using UnityEngine; using System.Collections; using Substantial; public class GameInitializer : MonoBehaviour { public TextAsset LevelAsset; public TileRepository TileRepository; public Transform LevelContainer; public float TileOffset = 1.0f; private void Start() { Mapify.Generate(LevelAsset.text, Leve...
mit
C#
2f9bd51e03ed1dead00bfe9abc108b59ad9c38f0
refactor to use map and traverse instead of match
louthy/language-ext,StefanBertels/language-ext,StanJav/language-ext
Samples/Contoso/Contoso.Application/Instructors/Commands/CreateInstructorHandler.cs
Samples/Contoso/Contoso.Application/Instructors/Commands/CreateInstructorHandler.cs
using System; using System.Threading; using System.Threading.Tasks; using Contoso.Core; using Contoso.Core.Domain; using Contoso.Core.Interfaces.Repositories; using LanguageExt; using MediatR; using static Contoso.Validators; using static LanguageExt.Prelude; namespace Contoso.Application.Instructors.Commands { p...
using System; using System.Threading; using System.Threading.Tasks; using Contoso.Core; using Contoso.Core.Domain; using Contoso.Core.Interfaces.Repositories; using LanguageExt; using MediatR; using static Contoso.Validators; using static LanguageExt.Prelude; namespace Contoso.Application.Instructors.Commands { p...
mit
C#
86dfed38584e664b956c3df9f816873b7e2faa8a
bump version
raml-org/raml-dotnet-parser,raml-org/raml-dotnet-parser
source/AMF.Parser/Properties/AssemblyInfo.cs
source/AMF.Parser/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: AssemblyTit...
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: AssemblyTit...
apache-2.0
C#
1e66f1c4b0a8435c6ffd9dcc47e416f504034edf
fix running tests from within VS. No idea if this is the correct fix and what 'SideBySideSpecification' is.
rflechner/FAKE,MichalDepta/FAKE,MichalDepta/FAKE,MichalDepta/FAKE,MichalDepta/FAKE,Kazark/FAKE,MiloszKrajewski/FAKE,Kazark/FAKE,MiloszKrajewski/FAKE,beeker/FAKE,MiloszKrajewski/FAKE,rflechner/FAKE,beeker/FAKE,rflechner/FAKE,rflechner/FAKE,Kazark/FAKE,MiloszKrajewski/FAKE,Kazark/FAKE,beeker/FAKE,beeker/FAKE
src/test/Test.FAKECore/TestData.cs
src/test/Test.FAKECore/TestData.cs
using System; using System.IO; namespace Test.FAKECore { public static class TestData { public static string SideBySideFolder; static TestData() { try { BaseDir = Directory.GetCurrentDirectory(); InitializeFromBase(); ...
using System; using System.IO; namespace Test.FAKECore { public static class TestData { public static readonly string SideBySideFolder = new DirectoryInfo(Path.Combine(Environment.CurrentDirectory, "SideBySideSpecification")).FullName; static TestData() { BaseDi...
apache-2.0
C#
1d737d0b1867d238fd8d62967214fb48a2beac0c
Bump version to 0.6.5
quisquous/cactbot,quisquous/cactbot,sqt/cactbot,quisquous/cactbot,sqt/cactbot,sqt/cactbot,sqt/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,sqt/cactbot
CactbotOverlay/Properties/AssemblyInfo.cs
CactbotOverlay/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("CactbotOverlay")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("CactbotOverlay")] [assembly: AssemblyC...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("CactbotOverlay")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("CactbotOverlay")] [assembly: AssemblyC...
apache-2.0
C#
0e6fab4149c967a86b0bfd7e7ab408f4a2f8d189
add total
lderache/LeTruck,lderache/LeTruck,lderache/LeTruck
src/mvc5/TheTruck.Web/Views/Cart/ShowCart.cshtml
src/mvc5/TheTruck.Web/Views/Cart/ShowCart.cshtml
@model IEnumerable<TheTruck.Web.Models.CartViewModel> <table class="table"> <tr> <th> @Html.DisplayNameFor(model => model.Category) </th> <th> @Html.DisplayNameFor(model => model.Name) </th> <th> @Html.DisplayNameFor(model => model.Price)...
@model IEnumerable<TheTruck.Web.Models.CartViewModel> <table class="table"> <tr> <th> @Html.DisplayNameFor(model => model.Category) </th> <th> @Html.DisplayNameFor(model => model.Name) </th> <th> @Html.DisplayNameFor(model => model.Price)...
mit
C#
67df96c63d2ed5bd5d2a3606eae8fa63a08cf961
fix reyes voicelines not extracting
overtools/OWLib
DataTool/ToolLogic/Extract/ExtractNPCVoice.cs
DataTool/ToolLogic/Extract/ExtractNPCVoice.cs
using System; using System.Collections.Generic; using System.IO; using DataTool.FindLogic; using DataTool.Flag; using DataTool.Helper; using DataTool.JSON; using TankLib.STU.Types; using static DataTool.Helper.STUHelper; using static DataTool.Helper.IO; namespace DataTool.ToolLogic.Extract { [Tool("extract-npc-vo...
using System; using System.Collections.Generic; using System.IO; using DataTool.FindLogic; using DataTool.Flag; using DataTool.Helper; using DataTool.JSON; using TankLib.STU.Types; using static DataTool.Helper.STUHelper; using static DataTool.Helper.IO; namespace DataTool.ToolLogic.Extract { [Tool("extract-npc-vo...
mit
C#
ea10907f6e927a0dab596159dfa28200720603d1
Update AccessTokenResponse.cs
Q42/Q42.HueApi
src/Q42.HueApi/Models/AccessTokenResponse.cs
src/Q42.HueApi/Models/AccessTokenResponse.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Q42.HueApi.Models { public class AccessTokenResponse { public DateTimeOffset CreatedDate { get; set; } public string Access_token { get; set; } public int Expires_in { get; se...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Q42.HueApi.Models { public class AccessTokenResponse { public DateTimeOffset CreatedDate { get; set; } public string Access_token { get; set; } public int Access_token_expires...
mit
C#
67e39d6181a3d5f7ece310c264dca1fcb2580edb
Remove unnecessary null check from TriggerWrapperComparator.GetHashCode() (#1466)
sean-gilliam/quartznet,quartznet/quartznet,quartznet/quartznet,quartznet/quartznet,quartznet/quartznet,sean-gilliam/quartznet,sean-gilliam/quartznet,sean-gilliam/quartznet,quartznet/quartznet,sean-gilliam/quartznet
src/Quartz/Simpl/TriggerWrapperComparator.cs
src/Quartz/Simpl/TriggerWrapperComparator.cs
using System; using System.Collections.Generic; namespace Quartz.Simpl { /// <summary> /// Comparer for trigger wrappers. /// </summary> internal class TriggerWrapperComparator : IComparer<TriggerWrapper>, IEquatable<TriggerWrapperComparator> { private readonly TriggerTimeComparator ttc = n...
using System; using System.Collections.Generic; namespace Quartz.Simpl { /// <summary> /// Comparer for trigger wrappers. /// </summary> internal class TriggerWrapperComparator : IComparer<TriggerWrapper>, IEquatable<TriggerWrapperComparator> { private readonly TriggerTimeComparator ttc = n...
apache-2.0
C#
d6753f6f65c5fb5a2ac1c74de51a51b40c22100c
Implement AddHostnameCommand#Execute
appharbor/appharbor-cli
src/AppHarbor/Commands/AddHostnameCommand.cs
src/AppHarbor/Commands/AddHostnameCommand.cs
using System; namespace AppHarbor.Commands { public class AddHostnameCommand : ICommand { private readonly IApplicationConfiguration _applicationConfiguration; private readonly IAppHarborClient _appharborClient; public AddHostnameCommand(IApplicationConfiguration applicationConfiguration, IAppHarborClient ap...
using System; namespace AppHarbor.Commands { public class AddHostnameCommand : ICommand { private readonly IApplicationConfiguration _applicationConfiguration; private readonly IAppHarborClient _appharborClient; public AddHostnameCommand(IApplicationConfiguration applicationConfiguration, IAppHarborClient ap...
mit
C#