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
9f4fdc467ddd039a5a41b40177200e1c2636463b
test UnitOfWork class
DatabaseApp-Team-Linnaeus/DatabasesApp,DatabaseApp-Team-Linnaeus/DatabasesApp
SupermarketsChain/SupermarketsChain.ConsoleClient/AppMain.cs
SupermarketsChain/SupermarketsChain.ConsoleClient/AppMain.cs
namespace SupermarketsChain.ConsoleClient { using SupermarketsChain.Data; using SupermarketsChain.Models; public class AppMain { public static void Main(string[] args) { var context = new SupermarketsChainDbContext(); var data = new SupermarketsChainDa...
namespace SupermarketsChain.ConsoleClient { using SupermarketsChain.Data; using SupermarketsChain.Models; public class AppMain { public static void Main(string[] args) { var context = new SupermarketsChainDbContext(); // this throws exeption - use only...
mit
C#
0bb882a910f7768a585da743c0ce4208b6f97c81
Call extension method as extension method.
github/VisualStudio,github/VisualStudio,github/VisualStudio
src/GitHub.TeamFoundation.14/Services/VSGitExt.cs
src/GitHub.TeamFoundation.14/Services/VSGitExt.cs
using System; using System.Collections.Generic; using System.ComponentModel.Composition; using System.Linq; using GitHub.Extensions; using GitHub.Models; using GitHub.Services; using Microsoft.VisualStudio.TeamFoundation.Git.Extensibility; namespace GitHub.VisualStudio.Base { [Export(typeof(IVSGitExt))] [PartC...
using System; using System.Collections.Generic; using System.ComponentModel.Composition; using System.Linq; using GitHub.Extensions; using GitHub.Models; using GitHub.Services; using Microsoft.VisualStudio.TeamFoundation.Git.Extensibility; namespace GitHub.VisualStudio.Base { [Export(typeof(IVSGitExt))] [PartC...
mit
C#
1e8b8feee85eac0478470855148adc0d2849cb2b
Make ContainerControllerFactory exceptions more explicit
KevinJump/Umbraco-CMS,marcemarc/Umbraco-CMS,umbraco/Umbraco-CMS,marcemarc/Umbraco-CMS,KevinJump/Umbraco-CMS,NikRimington/Umbraco-CMS,leekelleher/Umbraco-CMS,KevinJump/Umbraco-CMS,abjerner/Umbraco-CMS,dawoe/Umbraco-CMS,leekelleher/Umbraco-CMS,umbraco/Umbraco-CMS,robertjf/Umbraco-CMS,rasmuseeg/Umbraco-CMS,dawoe/Umbraco-C...
src/Umbraco.Web/Mvc/ContainerControllerFactory.cs
src/Umbraco.Web/Mvc/ContainerControllerFactory.cs
using System; using System.Web.Mvc; using System.Web.Routing; using Umbraco.Core.Composing; namespace Umbraco.Web.Mvc { public class ContainerControllerFactory : DefaultControllerFactory { private readonly IFactory _container; public ContainerControllerFactory(IFactory container) { ...
using System; using System.Web.Mvc; using System.Web.Routing; using Umbraco.Core.Composing; namespace Umbraco.Web.Mvc { public class ContainerControllerFactory : DefaultControllerFactory { private readonly IFactory _container; public ContainerControllerFactory(IFactory container) { ...
mit
C#
46e6c5412b9b441332ecda2693b3ccc8d34bafe4
implement a guard for checking list items on null or empty.
lehmamic/EnterpriseApplicationConfigurationManager,lehmamic/EnterpriseApplicationConfigurationManager,lehmamic/EnterpriseApplicationConfigurationManager,lehmamic/EnterpriseApplicationConfigurationManager
src/Zuehlke.Eacm.Web.Backend/Diagnostics/Guard.cs
src/Zuehlke.Eacm.Web.Backend/Diagnostics/Guard.cs
using System; using System.Collections.Generic; using System.Linq; namespace Zuehlke.Eacm.Web.Backend.Diagnostics { public static class Guard { public static T ArgumentNotNull<T>(this T source, string parameterName) { if (source == null) { throw new Argu...
using System; using System.Collections.Generic; namespace Zuehlke.Eacm.Web.Backend.Diagnostics { public static class Guard { public static T ArgumentNotNull<T>(this T source, string parameterName) { if (source == null) { throw new ArgumentNullException(p...
mit
C#
c8eadf1f7dd906e1cb429021c36c3ae0bf3cda0b
Add index.percolator.map_unmapped_fields_as_text index setting (#3850)
elastic/elasticsearch-net,elastic/elasticsearch-net
src/Nest/IndexModules/IndexSettings/Settings/FixedIndexSettings.cs
src/Nest/IndexModules/IndexSettings/Settings/FixedIndexSettings.cs
namespace Nest { /// <summary> /// const string collection of known Elasticsearch index settings that can only be provided at /// index creation time /// </summary> public static class FixedIndexSettings { public const string NumberOfRoutingShards = "index.number_of_routing_shards"; public const string Number...
namespace Nest { /// <summary> /// const string collection of known Elasticsearch index settings that can only be provided at /// index creation time /// </summary> public static class FixedIndexSettings { public const string NumberOfRoutingShards = "index.number_of_routing_shards"; public const string Number...
apache-2.0
C#
a78cab7a7e53de1ea1dcb2bea0f98aa982de4d50
Update RadialLookupCollection.cs
ADAPT/ADAPT
source/ADAPT/Prescriptions/RadialLookupCollection.cs
source/ADAPT/Prescriptions/RadialLookupCollection.cs
/******************************************************************************* * Copyright (C) 2015, 2018 AgGateway and ADAPT Contributors * Copyright (C) 2015 Deere and Company * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public Li...
/******************************************************************************* * Copyright (C) 2015 AgGateway and ADAPT Contributors * Copyright (C) 2015 Deere and Company * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License ...
epl-1.0
C#
fdc06fcbd0f472927cdac7c4d77e480fdb9505c8
Update LinkedResource to inherit Link
aliencube/Aliencube.WebApi.Hal,aliencube/Aliencube.WebApi.Hal
src/Aliencube.WebApi.Hal/Resources/LinkedResource.cs
src/Aliencube.WebApi.Hal/Resources/LinkedResource.cs
using System.Collections.Generic; namespace Aliencube.WebApi.Hal.Resources { /// <summary> /// This represents the entity for resources containing links. This must be inherited. /// </summary> public abstract class LinkedResource : Link { /// <summary> /// Initialises a new instanc...
using System.Collections.Generic; namespace Aliencube.WebApi.Hal.Resources { /// <summary> /// This represents the entity for resources containing links. This must be inherited. /// </summary> public abstract class LinkedResource { /// <summary> /// Gets or sets the list of <see cr...
mit
C#
226fd6a41b5cdcfb2c3a8254f7648d506f3b86e3
Fix potential bug with FileSystemName comparison.
chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium
src/Server/FileSystemNames/FileSystemNameComparer.cs
src/Server/FileSystemNames/FileSystemNameComparer.cs
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. using System; using System.Collections.Generic; namespace VsChromium.Server.FileSystemNames { public class FileSystemNameComparer : IComparer<...
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. using System; using System.Collections.Generic; namespace VsChromium.Server.FileSystemNames { public class FileSystemNameComparer : IComparer<...
bsd-3-clause
C#
4d1b767edc15390834b479757ea51919beca4a99
Add GetNextResultAsync to CollectionResponse
solomobro/Instagram,solomobro/Instagram,solomobro/Instagram
src/Solomobro.Instagram/Models/CollectionResponse.cs
src/Solomobro.Instagram/Models/CollectionResponse.cs
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Threading.Tasks; using Solomobro.Instagram.Interfaces; namespace Solomobro.Instagram.Models { [DataContract] class CollectionResponse<T> : ObjectCollection<T>, IRespons...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Threading.Tasks; using Solomobro.Instagram.Interfaces; namespace Solomobro.Instagram.Models { [DataContract] class CollectionResponse<T> : ObjectCollection<T>, IRespons...
apache-2.0
C#
e6dadb276e17b5245a3a2d6520826022413c8082
add NeoFS alphabet node role (#2377)
AntShares/AntShares
src/neo/SmartContract/Native/Role.cs
src/neo/SmartContract/Native/Role.cs
namespace Neo.SmartContract.Native { public enum Role : byte { StateValidator = 4, Oracle = 8, NeoFSAlphabetNode = 16 } }
namespace Neo.SmartContract.Native { public enum Role : byte { StateValidator = 4, Oracle = 8 } }
mit
C#
47696eba99cd408f80b51f5e54a70a3950f70ea1
Bump version to 1.3
kevinkuszyk/FluentAssertions.Ioc.Ninject,kevinkuszyk/FluentAssertions.Ioc.Ninject
src/FluentAssertions.Ioc.Ninject/Properties/AssemblyInfo.cs
src/FluentAssertions.Ioc.Ninject/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("Fl...
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("Fl...
apache-2.0
C#
a1286ffec2a43cdeb993b7deaeb70e59fbd5eb14
Remove custom data from Application Insights
martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site
src/LondonTravel.Site/Telemetry/SiteTelemetryInitializer.cs
src/LondonTravel.Site/Telemetry/SiteTelemetryInitializer.cs
// Copyright (c) Martin Costello, 2017. All rights reserved. // Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information. namespace MartinCostello.LondonTravel.Site.Telemetry { using Extensions; using Microsoft.ApplicationInsights.Channel; using Microsof...
// Copyright (c) Martin Costello, 2017. All rights reserved. // Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information. namespace MartinCostello.LondonTravel.Site.Telemetry { using Extensions; using Microsoft.ApplicationInsights.Channel; using Microsof...
apache-2.0
C#
11c42d7817b840935104677aff61b2c7599f26de
Update SDKVersion
gzepeda/ApplicationInsights-aspnetcore,Microsoft/ApplicationInsights-aspnet5,Microsoft/ApplicationInsights-aspnetcore,hackathonvixion/ApplicationInsights-aspnet5,hackathonvixion/ApplicationInsights-aspnet5,Microsoft/ApplicationInsights-aspnetcore,gzepeda/ApplicationInsights-aspnetcore,hackathonvixion/ApplicationInsight...
src/Microsoft.ApplicationInsights.AspNet/SdkVersionUtils.cs
src/Microsoft.ApplicationInsights.AspNet/SdkVersionUtils.cs
namespace Microsoft.ApplicationInsights.AspNet { using System.Linq; using System.Reflection; internal class SdkVersionUtils { internal const string VersionPrefix = "aspnet5: "; internal static string GetAssemblyVersion() { return typeof(SdkVersionUtils).GetTypeInf...
namespace Microsoft.ApplicationInsights.AspNet { using System.Linq; using System.Reflection; internal class SdkVersionUtils { internal const string VersionPrefix = "aspnet5: "; internal static string GetAssemblyVersion() { return typeof(SdkVersionUtils).GetTypeInf...
mit
C#
d5e0feaa10a9593f554b78eedbffb4b45c23b229
Add doc and contracts.
yonglehou/msgpack-rpc-cli,yfakariya/msgpack-rpc-cli
src/MsgPack.Rpc/Rpc/Protocols/IContextBoundableTransport.cs
src/MsgPack.Rpc/Rpc/Protocols/IContextBoundableTransport.cs
#region -- License Terms -- // // MessagePack for CLI // // Copyright (C) 2010 FUJIWARA, Yusuke // // 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.or...
#region -- License Terms -- // // MessagePack for CLI // // Copyright (C) 2010 FUJIWARA, Yusuke // // 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.or...
apache-2.0
C#
912de367762a8acf9fa3a9a1f67714e6f8fba3f0
Update BotConfig.cs
Azahet/XenBot
WebStuff/BotConfig.cs
WebStuff/BotConfig.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using XenForo_Bot_AntiLeech.XenForoStuff; namespace XenForo_Bot_AntiLeech.WebStuff { internal class BotConfig { public static string ForumsUrl = ""; public static str...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using XenForo_Bot_AntiLeech.XenForoStuff; namespace XenForo_Bot_AntiLeech.WebStuff { internal class BotConfig { public static string Pseudo = ""; public static string...
mit
C#
0fb7a3c9080e20c725b5a1d18e2ed125d899ab60
Build and publish nuget package
RockFramework/Rock.StaticDependencyInjection,bfriesen/Rock.StaticDependencyInjection
src/Properties/AssemblyInfo.cs
src/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("Ro...
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("Ro...
mit
C#
d70549005f4e62ad491619d6f0f1a84375513d9b
Fix bug with boolean generation
daryllabar/DLaB.Xrm.XrmToolBoxTools
EarlyBoundSettingsGenerator.SettingsUpdater/ExtensionConfigLogic.cs
EarlyBoundSettingsGenerator.SettingsUpdater/ExtensionConfigLogic.cs
using System; using System.IO; namespace EarlyBoundSettingsGenerator.SettingsUpdater { public class ExtensionConfigLogic: FileUpdateBase { public const string FileName = @"ExtensionConfig.cs"; public ExtensionConfigLogic(PropertyInfo property) : base(property) { } public over...
using System; using System.IO; namespace EarlyBoundSettingsGenerator.SettingsUpdater { public class ExtensionConfigLogic: FileUpdateBase { public const string FileName = @"ExtensionConfig.cs"; public ExtensionConfigLogic(PropertyInfo property) : base(property) { } public over...
mit
C#
07489902cf22a8c3d2d34fd9526c263898de1219
Update ApplicationInsightsEventTelemeter.cs
tiksn/TIKSN-Framework
TIKSN.Core/Analytics/Telemetry/ApplicationInsightsEventTelemeter.cs
TIKSN.Core/Analytics/Telemetry/ApplicationInsightsEventTelemeter.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.Threading.Tasks; using Microsoft.ApplicationInsights.DataContracts; namespace TIKSN.Analytics.Telemetry { public class ApplicationInsightsEventTelemeter : IEventTelemeter { [Obsolete] public Task TrackEventAs...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Threading.Tasks; using Microsoft.ApplicationInsights.DataContracts; namespace TIKSN.Analytics.Telemetry { public class ApplicationInsightsEventTelemeter : IEventTelemeter { public Task TrackEvent(string name) ...
mit
C#
91c0f1881c32f4780aa14ae2131148daf07a6391
Update MongoRepositoryTests.cs
tiksn/TIKSN-Framework
TIKSN.Framework.IntegrationTests/Data/Mongo/MongoRepositoryTests.cs
TIKSN.Framework.IntegrationTests/Data/Mongo/MongoRepositoryTests.cs
using System; using System.Threading.Tasks; using FluentAssertions; using Microsoft.Extensions.DependencyInjection; using Xunit; namespace TIKSN.Framework.IntegrationTests.Data.Mongo { [Collection("ServiceProviderCollection")] public class MongoRepositoryTests { private readonly ServiceProviderFixt...
using System; using System.Threading.Tasks; using FluentAssertions; using Microsoft.Extensions.DependencyInjection; using Xunit; namespace TIKSN.Framework.IntegrationTests.Data.Mongo { [Collection("ServiceProviderCollection")] public class MongoRepositoryTests { private readonly ServiceProviderFixt...
mit
C#
14dc26d29c8e4a916ae8196115ff1e783170b88b
add contentheaders to ApiResponse
paulcbetts/refit,paulcbetts/refit,PKRoma/refit
Refit/ApiResponse.cs
Refit/ApiResponse.cs
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Threading.Tasks; namespace Refit { static class ApiResponse { internal static T Create<T>(HttpResponseMessage resp, object content, ApiException error...
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Threading.Tasks; namespace Refit { static class ApiResponse { internal static T Create<T>(HttpResponseMessage resp, object content, ApiException error...
mit
C#
121b92385d1680c8898a9bd8e51f61a3187d1833
Fix bulk perstat update
mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander
Battery-Commander.Web/Views/Reports/PERSTAT.cshtml
Battery-Commander.Web/Views/Reports/PERSTAT.cshtml
@model BatteryCommander.Web.Controllers.ReportsController.StatusListModel @{ ViewBag.Title = "Batch Update PERSTAT"; } <div class="page-header"> <h1>@ViewBag.Title <span class="badge">@Model.Rows.Count</span></h1> </div> <div class="btn-group"> <button id="reset-perstat">Reset PERSTAT</button> </div> @...
@model BatteryCommander.Web.Controllers.ReportsController.StatusListModel @{ ViewBag.Title = "Batch Update PERSTAT"; } <div class="page-header"> <h1>@ViewBag.Title <span class="badge">@Model.Rows.Count</span></h1> </div> <div class="btn-group"> <button id="reset-perstat">Reset PERSTAT</button> </div> @...
mit
C#
df47072b0229c2a2d0209e986efca2e96b8c2667
fix compile error
kheiakiyama/speech-eng-functions
SentenceScraping/run.csx
SentenceScraping/run.csx
#r "System.Configuration" #r "System.Collections" #r "System.Linq.Expressions" #load "../QuestionEntity.csx" using System.Net; using System.Net.Http; using System.Configuration; using System.Linq; using Newtonsoft.Json; using Microsoft.Azure; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.T...
#r "System.Configuration" #r "System.Collections" #r "System.Linq.Expressions" #load "../QuestionEntity.csx" using System.Net; using System.Net.Http; using System.Configuration; using System.Linq; using Newtonsoft.Json; using Microsoft.Azure; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.T...
mit
C#
524776a8362a22c49e4a392e8b8f188fb06e633e
Split IEither.Value into Left or Right
Miruken-DotNet/Miruken
Source/Miruken/Either.cs
Source/Miruken/Either.cs
namespace Miruken { using System; public interface IEither { object Left { get; set; } object Right { get; set; } } public class Either<TL, TR> : IEither { private bool _isLeft; public Either(TL left) { Left = left; _isLeft ...
namespace Miruken { using System; public class Either<TL, TR> { private readonly bool _isLeft; public Either(TL left) { Left = left; _isLeft = true; } public Either(TR right) { Right = right; _isLeft = fal...
mit
C#
25021d628a54ec269657e188cb485ba153466b01
test 1
MatthewKapteyn/SubmoduleTest
SubmoduleTest/Program.cs
SubmoduleTest/Program.cs
using System; //using Huawei_Unlock; namespace SubmoduleTest { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); //Test.HW_ALGO_SELECTOR("This_is_a_15_digit_imei_jk"); Console.WriteLine("Made second change to SubmoduleTes...
using System; //using Huawei_Unlock; namespace SubmoduleTest { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); //Test.HW_ALGO_SELECTOR("This_is_a_15_digit_imei_jk"); Console.WriteLine("Made second change to SubmoduleTes...
unlicense
C#
7178fa5c6f74bbf52f62e77b9ae6f4f119b65602
add timezone check for future builds
RPCS3/discord-bot
Tests/TimeParserTests.cs
Tests/TimeParserTests.cs
using System; using CompatBot.Utils; using NUnit.Framework; namespace Tests; [TestFixture] public class TimeParserTests { [TestCase("2019-8-19 6:00 PT", "2019-08-19T13:00Z")] [TestCase("2019-8-19 17:00 cest", "2019-08-19T15:00Z")] [TestCase("2019-9-1 22:00 jst", "2019-09-01T13:00Z")] public void Time...
using System; using CompatBot.Utils; using NUnit.Framework; namespace Tests; [TestFixture] public class TimeParserTests { [TestCase("2019-8-19 6:00 PT", "2019-08-19T13:00Z")] [TestCase("2019-8-19 17:00 cest", "2019-08-19T15:00Z")] [TestCase("2019-9-1 22:00 jst", "2019-09-01T13:00Z")] public void Time...
lgpl-2.1
C#
6e6edbc909cab4c98061297b2e252bb11fff0939
Update BodyBuilder.cs
jstedfast/MailKit,jamie-dainton/MailKit
Documentation/Examples/BodyBuilder.cs
Documentation/Examples/BodyBuilder.cs
using MimeKit; namespace BodyBuilderExamples { public class Program { public static void Complex () { #region Complex var message = new MimeMessage (); message.From.Add (new MailboxAddress ("Joey", "joey@friends.com")); message.To.Add (new MailboxAddress ("Alice", "alice@wonderland.com")); messag...
using MimeKit; namespace BodyBuilderExamples { public class Program { public static void Complex () { #region Complex var message = new MimeMessage (); message.From.Add (new MailboxAddress ("Joey", "joey@friends.com")); message.To.Add (new MailboxAddress ("Alice", "alice@wonderland.com")); messag...
mit
C#
ae4dab6e4d8ede98cfb3d3a4d4dfb106ad8de4dd
fix namespace
ProtoTest/ProtoTest.Golem,ProtoTest/ProtoTest.Golem
Golem.PageObjects.Cael/Assessments/DeclineAssessmentPopup.cs
Golem.PageObjects.Cael/Assessments/DeclineAssessmentPopup.cs
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Remoting.Messaging; using System.Text; using System.Threading.Tasks; using Golem.Framework; using OpenQA.Selenium; namespace Golem.PageObjects.Cael { class DeclineAssessmentPopup : BasePageObject { public Element C...
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Remoting.Messaging; using System.Text; using System.Threading.Tasks; using Golem.Framework; using OpenQA.Selenium; namespace Golem.PageObjects.Cael.Assessments { class DeclineAssessmentPopup : BasePageObject { publ...
apache-2.0
C#
68bcdd3782d85dce3ce8ee8866c0271aa4fb0aa4
Update version to 1.5.2
RazorGenerator/RazorGenerator,wizzardmr42/RazorGenerator,RazorGenerator/RazorGenerator
CommonAssemblyInfo.cs
CommonAssemblyInfo.cs
using System.Reflection; [assembly: AssemblyVersion("1.5.2")] [assembly: AssemblyProduct("RazorGenerator")] [assembly: AssemblyCompany("RazorGenerator contributors")]
using System.Reflection; [assembly: AssemblyVersion("1.5.1")] [assembly: AssemblyProduct("RazorGenerator")] [assembly: AssemblyCompany("RazorGenerator contributors")]
apache-2.0
C#
a1ffa016a40ea1edfbc829a50196c3c13a546735
Bump version to 0.14
nmaier/simpleDLNA,antonio-bakula/simpleDLNA,bra1nb3am3r/simpleDLNA
GlobalAssemblyInfo.cs
GlobalAssemblyInfo.cs
using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; #if DEBUG [assembly: AssemblyConfiguration("Debug")] #else [assembly: AssemblyConfiguration("Release")] #endif [assembly: AssemblyCompany("Nils Maier")] [assembly: AssemblyProduct("SimpleDLNA")] [assembly: AssemblyCo...
using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; #if DEBUG [assembly: AssemblyConfiguration("Debug")] #else [assembly: AssemblyConfiguration("Release")] #endif [assembly: AssemblyCompany("Nils Maier")] [assembly: AssemblyProduct("SimpleDLNA")] [assembly: AssemblyCo...
bsd-2-clause
C#
a2b43c81bd0d810e17111f062a1583cd7a21dea6
Fix potential nullref due to missing lambda
EVAST9919/osu-framework,naoey/osu-framework,DrabWeb/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ppy/osu-framework,peppy/osu-framework,default0/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,paparony03/osu-framework,Nabile-Rahmani/osu-framework,DrabWeb/osu-framework,paparony...
osu.Framework/Graphics/Containers/FocusedOverlayContainer.cs
osu.Framework/Graphics/Containers/FocusedOverlayContainer.cs
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE using System.Linq; using osu.Framework.Input; using OpenTK.Input; using osu.Framework.Allocation; namespace osu.Framework.Graphics.Containers { ...
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE using System.Linq; using osu.Framework.Input; using OpenTK.Input; using osu.Framework.Allocation; namespace osu.Framework.Graphics.Containers { ...
mit
C#
e356cc8d9ef288056745f4b0b1899c0503284ee5
Refactor MatchBeatmapPanel for thread safety
NeoAdonis/osu,EVAST9919/osu,ZLima12/osu,ppy/osu,ZLima12/osu,NeoAdonis/osu,2yangk23/osu,peppy/osu-new,smoogipoo/osu,peppy/osu,smoogipooo/osu,UselessToucan/osu,johnneijzen/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,johnneijzen/osu,peppy/osu,2yangk23/osu,UselessToucan/osu,ppy/osu,EVAST9919/osu,smo...
osu.Game/Screens/Multi/Match/Components/MatchBeatmapPanel.cs
osu.Game/Screens/Multi/Match/Components/MatchBeatmapPanel.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.Threading; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Game.Beatmaps; using osu.Game.Online.API; using osu.Game.Online.API.Reque...
// 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.Game.Online.API; using osu.Game.Online.API.Requests; using osu.Game.Overlays.Direct; using osu.Ga...
mit
C#
9b925cc29b35289b8d24bf1608fb3b65778e7dd0
Add King valid move logic
setthetempo/ConsoleChess
ConsoleChess/King.cs
ConsoleChess/King.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleChess { class King : Piece { public King(bool isBlack) : base(isBlack) { this.appearance = '$'; } public override bool isLegalMove(T...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleChess { class King : Piece { public King(bool isBlack) : base(isBlack) { this.appearance = '$'; } } }
mit
C#
cb10711f55ee7ea05491e28ede046b072d3415c8
Fix sampler update when connected
id144/dx11-vvvv,id144/dx11-vvvv,id144/dx11-vvvv
Core/VVVV.DX11.Lib/Effects/Pins/Resources/SamplerShaderPin.cs
Core/VVVV.DX11.Lib/Effects/Pins/Resources/SamplerShaderPin.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using VVVV.DX11.Internals.Effects.Pins; using VVVV.PluginInterfaces.V2; using SlimDX.Direct3D11; using VVVV.PluginInterfaces.V1; using VVVV.Hosting.Pins; using VVVV.DX11.Lib.Effects.Pins; using FeralTic.DX11; namespace VVVV.DX11.Int...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using VVVV.DX11.Internals.Effects.Pins; using VVVV.PluginInterfaces.V2; using SlimDX.Direct3D11; using VVVV.PluginInterfaces.V1; using VVVV.Hosting.Pins; using VVVV.DX11.Lib.Effects.Pins; using FeralTic.DX11; namespace VVVV.DX11.Int...
bsd-3-clause
C#
2e630c42fda59e41f11b14d871e0e0fec2bc376a
Debug build fixed
OPEXGroup/ITCC.Library
ITCC.HTTP.Server/Files/Preprocess/FilePreprocessController.cs
ITCC.HTTP.Server/Files/Preprocess/FilePreprocessController.cs
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using ITCC.Logging.Core; namespace ITCC.HTTP.Server.Files.Preprocess { internal static class FilePreprocessController { #region public public static bool Start(int ...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using ITCC.Logging.Core; namespace ITCC.HTTP.Server.Files.Preprocess { internal static class FilePreprocessController { #region public public static bool Start(int ...
bsd-2-clause
C#
4c88ee438c6c2f3f8c8bf0416a7ce2a114a86b79
Print supported routes in console app.
maxcutler/wp-api-csharp
ApiConsole/Program.cs
ApiConsole/Program.cs
using System; using System.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; using Newtonsoft.Json; using PortableWordPressApi; using PortableWordPressApi.Resources; namespace ApiConsole { class Program { static void Main(string[] args) { Task.WaitAll(AsyncMain()); Console.WriteLi...
using System; using System.Net.Http; using System.Threading.Tasks; using Newtonsoft.Json; using PortableWordPressApi; using PortableWordPressApi.Resources; namespace ApiConsole { class Program { static void Main(string[] args) { Task.WaitAll(AsyncMain()); Console.WriteLine("Press any key to close."); ...
mit
C#
cf038a908b363a90c2a2b7d3eb1f8054cbf2695c
Remove commas.
jamiehumphries/FakeItEasy.Auto,jamiehumphries/FakeItEasy.Auto
FakeItEasy.Auto/An.cs
FakeItEasy.Auto/An.cs
namespace FakeItEasy.Auto { using System; using System.Collections.Generic; using System.Linq; using System.Reflection; public static class An { private static readonly MethodInfo FakeMethod = typeof(A).GetMethod("Fake", new Type[0]); public static T AutoFaked<T>() ...
namespace FakeItEasy.Auto { using System; using System.Collections.Generic; using System.Linq; using System.Reflection; public static class An { private static readonly MethodInfo FakeMethod = typeof(A).GetMethod("Fake", new Type[0]); public static T AutoFaked<T>() ...
mit
C#
ade55f5a7d42d5e21566c4c122642a9099d4ac45
Add data types for primitives Add fixed pointer flag and start address of object table to TMD struct
Figglewatts/LBD2OBJ
LBD2OBJ/Types/TMD.cs
LBD2OBJ/Types/TMD.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LBD2OBJ.Types { struct TMDHEADER { public int ID; // should be 0x41 public uint flags; // 0 if addresses are relative from top of block, 1 if from start of file public uint numObjects;...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LBD2OBJ.Types { struct TMDHEADER { public uint ID; // should be 0x41 public uint flags; // 0 if addresses are relative from top of block, 1 if from start of file public uint numObjects...
mit
C#
967d862528dcdc86fd4997d4ef6867d21adeb11a
Update Index.cshtml
TheScienceOfCode/Sibelius.Web,TheScienceOfCode/Sibelius.Web,TheScienceOfCode/Sibelius.Web
Sibelius.Web/Views/Posts/Index.cshtml
Sibelius.Web/Views/Posts/Index.cshtml
@{ ViewBag.bodyclass = "dark-body"; ViewBag.ContainerClass = "body-content"; } <br /> <div class="row"> <div class="col-xs-12"> <center> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <script> (adsbygoogle ...
@{ ViewBag.bodyclass = "dark-body"; ViewBag.ContainerClass = "body-content"; } <br /> <div class="row"> <div class="col-xs-12"> <center> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- Post show --> <ins cla...
mit
C#
ae4d9f4f0a58e70e51e5af949c2561c3df1168f0
Change build script to using `dotnet` CLI tooling
agc93/Cake.BuildSystems.Module,agc93/Cake.BuildSystems.Module
build.cake
build.cake
//#tool "nuget:?package=GitVersion.CommandLine" /////////////////////////////////////////////////////////////////////////////// // ARGUMENTS /////////////////////////////////////////////////////////////////////////////// var target = Argument("target", "Default"); var configuration = Argument("configuration", "Releas...
//#tool "nuget:?package=GitVersion.CommandLine" /////////////////////////////////////////////////////////////////////////////// // ARGUMENTS /////////////////////////////////////////////////////////////////////////////// var target = Argument("target", "Default"); var configuration = Argument("configuration", "Releas...
mit
C#
47ce95e702e3791b870cb84954b267fc73103cf8
Simplify GetEnumerator
SolrNet/SolrNet,SolrNet/SolrNet,mausch/SolrNet,mausch/SolrNet,mausch/SolrNet
StructureMap.SolrNetIntegration/Config/SolrServerElements.cs
StructureMap.SolrNetIntegration/Config/SolrServerElements.cs
using System.Collections.Generic; using System.Configuration; using System.Linq; namespace StructureMap.SolrNetIntegration.Config { public class SolrServerElements : ConfigurationElementCollection, IEnumerable<ISolrServer> { public void Add(SolrServerElement configurationElement) { ...
using System.Collections.Generic; using System.Configuration; using System.Linq; namespace StructureMap.SolrNetIntegration.Config { public class SolrServerElements : ConfigurationElementCollection, IEnumerable<ISolrServer> { public void Add(SolrServerElement configurationElement) { ...
apache-2.0
C#
0a29daba6596739ab44be6bbfdda7bb77b08385a
Remove unused field
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Fluent/ViewModels/Dialogs/TestDialogViewModel.cs
WalletWasabi.Fluent/ViewModels/Dialogs/TestDialogViewModel.cs
using System.Reactive.Linq; using System.Windows.Input; using ReactiveUI; namespace WalletWasabi.Fluent.ViewModels.Dialogs { public class TestDialogViewModel : DialogViewModelBase<bool> { private string _message; public TestDialogViewModel(NavigationStateViewModel navigationState, NavigationTarget navigationTar...
using System.Reactive.Linq; using System.Windows.Input; using ReactiveUI; namespace WalletWasabi.Fluent.ViewModels.Dialogs { public class TestDialogViewModel : DialogViewModelBase<bool> { private NavigationStateViewModel _navigationState; private string _message; public TestDialogViewModel(NavigationStateView...
mit
C#
f2634d17ce4d50b2a1e33fd5ba5cc287920308b3
Fix a mistaken edit to SirCachealot/Runner.cs.
jstammers/EDMSuite,jstammers/EDMSuite,jstammers/EDMSuite,jstammers/EDMSuite,Stok/EDMSuite,ColdMatter/EDMSuite,ColdMatter/EDMSuite,Stok/EDMSuite,ColdMatter/EDMSuite,ColdMatter/EDMSuite,jstammers/EDMSuite
SirCachealot/Runner.cs
SirCachealot/Runner.cs
using System; using System.Runtime.Remoting; using System.Runtime.Remoting.Channels; using System.Runtime.Remoting.Channels.Tcp; using System.Windows.Forms; namespace SirCachealot { static class Runner { /// <summary> /// The main entry point for the application. /// </summa...
using System; using System.Runtime.Remoting; using System.Runtime.Remoting.Channels; using System.Runtime.Remoting.Channels.Tcp; using System.Windows.Forms; namespace SirCachealot { static class Runner { /// <summary> /// The main entry point for the application. /// </summa...
mit
C#
85cd3f53b15232355a5534b2332f9156689cb5ba
remove Sonar warning about double blank line
fluffynuts/PeanutButter,fluffynuts/PeanutButter,fluffynuts/PeanutButter
source/Utils/PeanutButter.Utils/ByteArrayExtensions.cs
source/Utils/PeanutButter.Utils/ByteArrayExtensions.cs
using System.Linq; using System.Text; namespace PeanutButter.Utils { /// <summary> /// Provides some extensions useful for byte arrays /// </summary> public static class ByteArrayExtensions { /// <summary> /// Calculates the md5sum for the provided binary data /// </summary...
using System.Linq; using System.Text; namespace PeanutButter.Utils { /// <summary> /// Provides some extensions useful for byte arrays /// </summary> public static class ByteArrayExtensions { /// <summary> /// Calculates the md5sum for the provided binary data /// </summary...
bsd-3-clause
C#
d2574b383a1880bdd3aebfc94b9ee26ce653629d
Use FuncDataTemplate
wieslawsoltes/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,akrisiun/Perspex,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,grokys/Perspex,Perspex/Perspex,grokys/Perspex,SuperJMN/Avalonia,AvaloniaU...
src/Avalonia.ReactiveUI/AutoDataTemplateBindingHook.cs
src/Avalonia.ReactiveUI/AutoDataTemplateBindingHook.cs
using System; using System.Linq; using Avalonia.Controls; using Avalonia.Controls.Templates; using Avalonia.Layout; using Avalonia.Markup.Xaml; using Avalonia.Markup.Xaml.Templates; using ReactiveUI; namespace Avalonia.ReactiveUI { /// <summary> /// AutoDataTemplateBindingHook is a binding hook that checks Ite...
using System; using System.Linq; using Avalonia.Controls; using Avalonia.Markup.Xaml; using Avalonia.Markup.Xaml.Templates; using ReactiveUI; namespace Avalonia.ReactiveUI { /// <summary> /// AutoDataTemplateBindingHook is a binding hook that checks ItemsControls /// that don't have DataTemplates, and assi...
mit
C#
8cd88982e54763e8fb135a181d1b8836ec56e267
Fix up provider name.
DimensionDataResearch/cloudcontrol-powershell-core
src/DD.CloudControl.Powershell/CloudControlProvider.cs
src/DD.CloudControl.Powershell/CloudControlProvider.cs
using System; using System.Management.Automation; using System.Management.Automation.Provider; namespace DD.CloudControl.Powershell { /// <summary> /// The Powershell provider for Dimension Data CloudControl. /// </summary> /// <remarks> /// This provider is used to centralise access to mod...
using System; using System.Management.Automation; using System.Management.Automation.Provider; namespace DD.CloudControl.Powershell { /// <summary> /// The Powershell provider for Dimension Data CloudControl. /// </summary> /// <remarks> /// This provider is used to centralise access to mod...
mit
C#
28508c69dc6a10f6ae8fd80712c161778a7379ed
fix authorize attributes to use custom
NHSChoices/location-service,NHSChoices/location-service
src/GoatTrip.RestApi/Controllers/LocationController.cs
src/GoatTrip.RestApi/Controllers/LocationController.cs
using System.Web.Http; using GoatTrip.RestApi.Services; namespace GoatTrip.RestApi.Controllers { [RoutePrefix("location")] public class LocationController : ApiController { public LocationController(ILocationQueryValidator queryValidator, ILocationService service) { _queryVal...
using System.Web.Http; using GoatTrip.RestApi.Services; namespace GoatTrip.RestApi.Controllers { [RoutePrefix("location")] public class LocationController : ApiController { public LocationController(ILocationQueryValidator queryValidator, ILocationService service) { _queryVal...
apache-2.0
C#
5a5656b20fb03443afe5e456ebae045058ed8dd8
Revert "Removed XML summary"
SpatialFocus/nabble.io,SpatialFocus/nabble.io
src/Nabble.Core/Badge.cs
src/Nabble.Core/Badge.cs
// <copyright file="Badge.cs" company="Spatial Focus GmbH"> // Copyright (c) Spatial Focus GmbH. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // </copyright> namespace Nabble.Core { using System.IO; /// <summary> /// A class representin...
// <copyright file="Badge.cs" company="Spatial Focus GmbH"> // Copyright (c) Spatial Focus GmbH. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // </copyright> namespace Nabble.Core { using System.IO; public class Badge { /// <summary> ...
mit
C#
e058638943b34060507e645e5e560f55eed6320a
Update RandomLoadBalance.cs
hprose/hprose-dotnet
src/Hprose.RPC.Plugins/LoadBalance/RandomLoadBalance.cs
src/Hprose.RPC.Plugins/LoadBalance/RandomLoadBalance.cs
/*--------------------------------------------------------*\ | | | hprose | | | | Official WebSite: https://hprose.com | | ...
/*--------------------------------------------------------*\ | | | hprose | | | | Official WebSite: https://hprose.com | | ...
mit
C#
75908b011b0d7a456182129799a8aa7d0db4e649
fix config retrieving in db admin area
JetBrains/ReSharperGallery,JetBrains/ReSharperGallery,JetBrains/ReSharperGallery
src/NuGetGallery/Areas/Admin/DynamicData/Site.master.cs
src/NuGetGallery/Areas/Admin/DynamicData/Site.master.cs
using System; using System.Net; using System.Web.UI; using Ninject; using NuGetGallery; using NuGetGallery.Configuration; namespace NuGetGallery.Areas.Admin.DynamicData { public partial class Site : MasterPage { protected IAppConfiguration Config; protected override void OnInit(EventArgs e) ...
using System; using System.Net; using System.Web.UI; using Ninject; using NuGetGallery; using NuGetGallery.Configuration; namespace NuGetGallery.Areas.Admin.DynamicData { public partial class Site : MasterPage { protected IAppConfiguration Config; protected override void OnInit(EventArgs e) ...
apache-2.0
C#
96dc6d2fd80f29dcf3e88570c30f07f094b1840d
Increment assembly version.
MatthewKing/ObservableWinFormsEvents
src/ObservableWinFormsEvents/Properties/AssemblyInfo.cs
src/ObservableWinFormsEvents/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("ObservableWinFormsEvents")] [assembly: AssemblyDescription("A set of extension methods on the System.Windows.Forms namespace that convert standard .NET event handlers into observable sequences.")] [assembly: AssemblyProduct("Obse...
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("ObservableWinFormsEvents")] [assembly: AssemblyDescription("A set of extension methods on the System.Windows.Forms namespace that convert standard .NET event handlers into observable sequences.")] [assembly: AssemblyProduct("Obse...
mit
C#
481de08ec812983f0f4b273109716ade5098ed78
Add plug for LStat
CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos
source/Cosmos.Core_Plugs/Interop/SysImpl.cs
source/Cosmos.Core_Plugs/Interop/SysImpl.cs
using IL2CPU.API.Attribs; using System; namespace Cosmos.Core_Plugs.Interop { [Plug("Interop+Sys, System.Private.CoreLib", IsOptional = true)] class SysImpl { [PlugMethod(Signature = "System_IntPtr__Interop_Sys_GetUnixNamePrivate__")] public static IntPtr GetUnixNamePrivate() { ...
using IL2CPU.API.Attribs; using System; namespace Cosmos.Core_Plugs.Interop { [Plug("Interop+Sys, System.Private.CoreLib", IsOptional = true)] class SysImpl { [PlugMethod(Signature = "System_IntPtr__Interop_Sys_GetUnixNamePrivate__")] public static IntPtr GetUnixNamePrivate() { ...
bsd-3-clause
C#
9a1f9797205a0385701b6988c09e56ef33124d8b
Convert some Vector methods to internal
MHeasell/TAUtil,MHeasell/TAUtil
TAUtil/3do/Vector.cs
TAUtil/3do/Vector.cs
namespace TAUtil._3do { using System.IO; public struct Vector { public int X; public int Y; public int Z; internal static void Read(Stream s, ref Vector v) { Read(new BinaryReader(s), ref v); } internal static void Re...
namespace TAUtil._3do { using System.IO; public struct Vector { public int X; public int Y; public int Z; public static void Read(Stream s, ref Vector v) { Read(new BinaryReader(s), ref v); } public static void Read(B...
mit
C#
df793a64712ea3e78cda6f57350f456ca9dfa3b5
Mark StorageProviderBase as EditorBrowsableState.Never
yufeih/Nine.Storage,studio-nine/Nine.Storage
src/Portable/Storage/StorageProviderBase.cs
src/Portable/Storage/StorageProviderBase.cs
namespace Nine.Storage { using System; using System.Collections.Concurrent; using System.ComponentModel; using System.Threading.Tasks; [EditorBrowsable(EditorBrowsableState.Never)] public abstract class StorageProviderBase : IStorageProvider { private readonly ConcurrentDictionary<...
namespace Nine.Storage { using System; using System.Collections.Concurrent; using System.Threading.Tasks; public abstract class StorageProviderBase : IStorageProvider { private readonly ConcurrentDictionary<Type, LazyAsync<object>> values = new ConcurrentDictionary<Type, LazyAsync<object>>...
mit
C#
e26947b4160a61fda028716fcf805bab450b9bd5
Adjust xmldoc to mention "immediate" consumer
ppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework
osu.Framework/Allocation/LongRunningLoadAttribute.cs
osu.Framework/Allocation/LongRunningLoadAttribute.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.Containers; namespace osu.Framework.Allocation { /// <summary> /// Denotes a component which performs long-running tas...
// 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.Containers; namespace osu.Framework.Allocation { /// <summary> /// Denotes a component which performs long-running tas...
mit
C#
f7e13e835fb428c21d697513162a79e9718ea221
reduce number of arrays
ruarai/Trigrad,ruarai/Trigrad
Trigrad/DataTypes/Compression/FileDecompression.cs
Trigrad/DataTypes/Compression/FileDecompression.cs
using System; using System.Collections.Generic; using System.Drawing; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using ICSharpCode.SharpZipLib.BZip2; namespace Trigrad.DataTypes.Compression { public partial class TrigradCompressed { /// <summary> Loads a Trigr...
using System; using System.Collections.Generic; using System.Drawing; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using ICSharpCode.SharpZipLib.BZip2; namespace Trigrad.DataTypes.Compression { public partial class TrigradCompressed { /// <summary> Loads a Trigr...
mit
C#
1bf2f4f32114fb97d6bc252e149bf078e4f9b8f4
Fix Connector render
MasterOfSomeTrades/CommentEverythingDotNetControlsExtended
CEControls/Display/Connector.cs
CEControls/Display/Connector.cs
using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; namespace CEControls.Display { public class Connector : DisplayGraphic { public Point p1 { get; set; } public Point p2 { get; set; } public override void Render() { Grap...
using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; namespace CEControls.Display { class Connector : DisplayGraphic { public Point p1 { get; set; } public Point p2 { get; set; } public override void Render() { Graphics re...
mit
C#
8b9cf6fc52e84ba1cd0f3ceac2c9561f3e6d0c3c
Remove default value in Storagemgr
smoogipooo/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,smoogipoo/osu,ppy/osu,ppy/osu,UselessToucan/osu,peppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu-new,smoogipoo/osu
osu.Game.Tournament/Configuration/TournamentStorageManager.cs
osu.Game.Tournament/Configuration/TournamentStorageManager.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.Configuration; using osu.Framework.Platform; namespace osu.Game.Tournament.Configuration { public class TournamentStorageManager : IniConfigManag...
// 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.Configuration; using osu.Framework.Platform; namespace osu.Game.Tournament.Configuration { public class TournamentStorageManager : IniConfigManag...
mit
C#
7746f956a89ed00cb7495dcd218cab6af182b822
add xml comments
jkoritzinsky/Avalonia,wieslawsoltes/Perspex,grokys/Perspex,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,jkoritzinsky/Perspex,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,Perspex/Perspex,SuperJMN/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,wi...
src/Avalonia.Controls/Platform/ExtendClientAreaChromeHints.cs
src/Avalonia.Controls/Platform/ExtendClientAreaChromeHints.cs
using System; namespace Avalonia.Platform { /// <summary> /// Hint for Window Chrome when ClientArea is Extended. /// </summary> [Flags] public enum ExtendClientAreaChromeHints { /// <summary> /// The will be no chrome at all. /// </summary> NoChrome, /...
using System; namespace Avalonia.Platform { [Flags] public enum ExtendClientAreaChromeHints { NoChrome, Default = SystemChrome, SystemChrome = 0x01, PreferSystemChrome = 0x02, OSXThickTitleBar = 0x08, } }
mit
C#
c40770a400d18371051f5df87b25929de9e7d94e
Make MessageTransportException internal
MikhailArkhipov/RTVS,karthiknadig/RTVS,karthiknadig/RTVS,AlexanderSher/RTVS,karthiknadig/RTVS,karthiknadig/RTVS,AlexanderSher/RTVS,MikhailArkhipov/RTVS,AlexanderSher/RTVS,AlexanderSher/RTVS,MikhailArkhipov/RTVS,karthiknadig/RTVS,AlexanderSher/RTVS,karthiknadig/RTVS,MikhailArkhipov/RTVS,AlexanderSher/RTVS,MikhailArkhipo...
src/Host/Client/Impl/Definitions/MessageTransportException.cs
src/Host/Client/Impl/Definitions/MessageTransportException.cs
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System; namespace Microsoft.R.Host.Client { [Serializable] internal class MessageTransportException : Exception { public MessageTransportExcep...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System; namespace Microsoft.R.Host.Client { [Serializable] public class MessageTransportException : Exception { public MessageTransportExcepti...
mit
C#
4eeff1d5c700c42ef2c37e7be7ec770fbaca6a56
comment delete button only shows for owner
BCITer/Jabber,BCITer/Jabber,BCITer/Jabber
JabberBCIT/JabberBCIT/Views/Forum/CommentPartial.cshtml
JabberBCIT/JabberBCIT/Views/Forum/CommentPartial.cshtml
@using Microsoft.AspNet.Identity @model JabberBCIT.Models.CommentViewModel <tr> <td valign="top" style="width:40px"> <a href="/Vote/Comment/@Model.comment.CommentID/1" class="voteButton"> <div class="vote"> <span class="glyphicon glyphicon-chevron-up vote-icon"></span> ...
@model JabberBCIT.Models.CommentViewModel <tr> <td valign="top" style="width:40px"> <a href="/Vote/Comment/@Model.comment.CommentID/1" class="voteButton"> <div class="vote"> <span class="glyphicon glyphicon-chevron-up vote-icon"></span> </div> </a> <...
mit
C#
defc68afc0f2715fe7e72f99e689f172848930a0
Fix secured controller.
aziel/azure-mobile-apps-net-server,aziel/azure-mobile-apps-net-server,dhei/azure-mobile-apps-net-server,aziel/azure-mobile-apps-net-server,Azure/azure-mobile-apps-net-server,brettsam/azure-mobile-apps-net-server,brettsam/azure-mobile-apps-net-server,brettsam/azure-mobile-apps-net-server,dhei/azure-mobile-apps-net-serve...
samples/SampleApp/Controllers/SecuredController.cs
samples/SampleApp/Controllers/SecuredController.cs
// ---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. // ---------------------------------------------------------------------------- using System.ComponentModel; using System.Web.Http; using System.Security.Claims; using Microso...
// ---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. // ---------------------------------------------------------------------------- using System.ComponentModel; using System.Web.Http; using System.Security.Claims; using Microso...
apache-2.0
C#
5c9beb10cb3b4fbe60ddaa71bfb9ca4b472afe87
add basic ET generation for function calls
maul-esel/CobaltAHK,maul-esel/CobaltAHK
CobaltAHK/ExpressionTree/Generator.cs
CobaltAHK/ExpressionTree/Generator.cs
using System; using System.Collections.Generic; using DLR = System.Linq.Expressions; using CobaltAHK.Expressions; namespace CobaltAHK.ExpressionTree { public static class Generator { public static DLR.Expression Generate(Expression expr, Scope scope, ScriptSettings settings) { if (expr is DirectiveExpression)...
using System; using System.Collections.Generic; using DLR = System.Linq.Expressions; using CobaltAHK.Expressions; namespace CobaltAHK.ExpressionTree { public static class Generator { public static DLR.Expression Generate(Expression expr, Scope scope, ScriptSettings settings) { if (expr is DirectiveExpression)...
mit
C#
58f96fa355a8da1d8a7b8665a558a6a980ddc62d
Fix OpenFileDialog.OpenButton on Win10.
JohanLarsson/Gu.Wpf.UiAutomation
Gu.Wpf.UiAutomation/AutomationElements/OpenFileDialog.cs
Gu.Wpf.UiAutomation/AutomationElements/OpenFileDialog.cs
namespace Gu.Wpf.UiAutomation { using System.Windows.Automation; public class OpenFileDialog : Dialog { private static readonly Condition OpenButtonCondition = WindowsVersion.IsWindows10() ? new AndCondition( Conditions.ByClassName("Button"), Conditions.B...
namespace Gu.Wpf.UiAutomation { using System.Windows.Automation; public class OpenFileDialog : Dialog { public OpenFileDialog(AutomationElement automationElement) : base(automationElement) { } public TextBoxBase FileTextBox => this.FindTextBoxBase("File name:");...
mit
C#
16b114c34b9fa0332dfadf807f84f3d5e0a67a1d
Fix that ticket numbers where double shown
michael-reichenauer/GitMind
GitMind/GitModel/Private/Converter.cs
GitMind/GitModel/Private/Converter.cs
using System.Linq; using GitMind.Common; namespace GitMind.GitModel.Private { internal class Converter { public static Branch ToBranch(Repository repository, MBranch branch) { return new Branch( repository, branch.Id, branch.Name, branch.TipCommitId, branch.FirstCommitId, branch.Pare...
using System.Linq; using GitMind.Common; namespace GitMind.GitModel.Private { internal class Converter { public static Branch ToBranch(Repository repository, MBranch branch) { return new Branch( repository, branch.Id, branch.Name, branch.TipCommitId, branch.FirstCommitId, branch.Pare...
mit
C#
7d81be3d8d486481a16249baa3be6e4335fbb22c
add JsonValidationError
ojraqueno/vstemplates,ojraqueno/vstemplates,ojraqueno/vstemplates
MVC5_R/MVC5_R.WebApp/Infrastructure/Mvc/AppController.cs
MVC5_R/MVC5_R.WebApp/Infrastructure/Mvc/AppController.cs
using System.Collections.Generic; using System.Linq; using System.Web.Mvc; namespace MVC5_R.WebApp.Infrastructure.Mvc { public class AppController : Controller { protected string BaseUrl { get { return $"{Request.Url.Scheme}://{Request.Url.Authority}{Req...
using System.Web.Mvc; namespace MVC5_R.WebApp.Infrastructure.Mvc { public class AppController : Controller { protected string BaseUrl { get { return $"{Request.Url.Scheme}://{Request.Url.Authority}{Request.ApplicationPath.TrimEnd('/')}"; } ...
mit
C#
dd065cd225a21ce22a2566ee61f217b0bdbcf383
Add canonicalization support for array methods
yizhang82/corert,botaberg/corert,kyulee1/corert,yizhang82/corert,yizhang82/corert,sandreenko/corert,tijoytom/corert,shrah/corert,gregkalapos/corert,kyulee1/corert,gregkalapos/corert,shrah/corert,tijoytom/corert,shrah/corert,gregkalapos/corert,tijoytom/corert,kyulee1/corert,botaberg/corert,krytarowski/corert,sandreenko/...
src/Common/src/TypeSystem/Canon/ArrayType.Canon.cs
src/Common/src/TypeSystem/Canon/ArrayType.Canon.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. namespace Internal.TypeSystem { // Implements canonicalization for arrays partial class ArrayType { ...
// 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. namespace Internal.TypeSystem { // Implements canonicalization for arrays partial class ArrayType { ...
mit
C#
6472007ed50195ca4a9df2d0b3d50a8b6e912059
Fix hiding DebugUI on not development releases
matiasbeckerle/breakout,matiasbeckerle/arkanoid,matiasbeckerle/perspektiva
source/Assets/Scripts/UI/DebugUI.cs
source/Assets/Scripts/UI/DebugUI.cs
using UnityEngine; using UnityEngine.UI; using System.Collections; public class DebugUI : MonoBehaviour { /// <summary> /// Static instance of the class. /// </summary> public static DebugUI Instance = null; /// <summary> /// Frames per second text reference. /// </summary> ...
using UnityEngine; using UnityEngine.UI; using System.Collections; public class DebugUI : MonoBehaviour { /// <summary> /// Static instance of the class. /// </summary> public static DebugUI Instance = null; /// <summary> /// Frames per second text reference. /// </summary> ...
unknown
C#
59df3d49c78dc804feae8ed3c73c5657a0912170
Fix exception when configuration is read
robbihun/NStatsD.Client
NStatsD/StatsDConfigurationSection.cs
NStatsD/StatsDConfigurationSection.cs
using System.Configuration; namespace NStatsD { public class StatsDConfigurationSection : ConfigurationSection { [ConfigurationProperty("enabled", DefaultValue = "true", IsRequired = false)] public bool Enabled { get { return (bool) this["enabled"]; } set { this...
using System.Configuration; namespace NStatsD { public class StatsDConfigurationSection : ConfigurationSection { [ConfigurationProperty("enabled", DefaultValue = "true", IsRequired = false)] public bool Enabled { get { return (bool) this["enabled"]; } set { this...
mit
C#
f5e3d3cc5db3c3c53a977581fe205f41a43d371f
add check of board exists in attempt websockets connection
PedDavid/qip,PedDavid/qip,PedDavid/qip
Server/WebSockets/Controllers/WebSocketsController.cs
Server/WebSockets/Controllers/WebSocketsController.cs
using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using WebSockets.Extensions; using WebSockets.StringWebSockets; using WebSockets.Operations; using API.Interfaces.IRepositories; using API.Services; using Microsoft.Extensions.Caching.Memory; namespace WebSockets.Contro...
using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using WebSockets.Extensions; using WebSockets.StringWebSockets; using WebSockets.Operations; using API.Interfaces.IRepositories; using API.Services; using Microsoft.Extensions.Caching.Memory; namespace WebSockets.Contro...
mit
C#
fd9612ee1781fd0acd2c25b4f8ceeb1c670f60b3
Update LanguageFeatures.cs
DEVSENSE/Parsers,DEVSENSE/Parsers
Source/Devsense.PHP.Parser/Syntax/LanguageFeatures.cs
Source/Devsense.PHP.Parser/Syntax/LanguageFeatures.cs
// Copyright(c) DEVSENSE s.r.o. // 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. You may obtain a copy of the // License at http://www.apache.org/licenses/LICENSE-2.0 // // THIS CODE IS PROVIDED ON AN *AS IS...
// Copyright(c) DEVSENSE s.r.o. // 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. You may obtain a copy of the // License at http://www.apache.org/licenses/LICENSE-2.0 // // THIS CODE IS PROVIDED ON AN *AS IS...
apache-2.0
C#
0fed4e85fb193ff4d604b00b70b09042197ee6c8
Fix tests.
ForNeVeR/Pash,ForNeVeR/Pash,Jaykul/Pash,ForNeVeR/Pash,WimObiwan/Pash,mrward/Pash,Jaykul/Pash,sillvan/Pash,ForNeVeR/Pash,Jaykul/Pash,WimObiwan/Pash,Jaykul/Pash,WimObiwan/Pash,sillvan/Pash,mrward/Pash,sburnicki/Pash,sburnicki/Pash,sburnicki/Pash,sillvan/Pash,WimObiwan/Pash,mrward/Pash,sillvan/Pash,sburnicki/Pash,mrward/P...
Source/TestHost/FileSystemTests/ShellExecutionTest.cs
Source/TestHost/FileSystemTests/ShellExecutionTest.cs
// Copyright (C) Pash Contributors. License GPL/BSD. See https://github.com/Pash-Project/Pash/ using System; using System.IO; using NUnit.Framework; namespace TestHost.FileSystemTests { class ShellExecutionTest : FileSystemTestBase { [Test] [Platform("Win")] [TestCase("file.bat", "123"...
// Copyright (C) Pash Contributors. License GPL/BSD. See https://github.com/Pash-Project/Pash/ using System; using System.IO; using NUnit.Framework; namespace TestHost.FileSystemTests { class ShellExecutionTest : FileSystemTestBase { [Test] [TestCase("file.bat", "123")] public void Fil...
bsd-3-clause
C#
c7f2a6da57eb04cf54e7c32172e863972f3be2d8
remove unused variable
zmira/abremir.AllMyBricks
abremir.AllMyBricks.Data/Extensions/EnumExtensions.cs
abremir.AllMyBricks.Data/Extensions/EnumExtensions.cs
using System; using System.ComponentModel; using System.Reflection; namespace abremir.AllMyBricks.Data.Extensions { public static class EnumExtensions { public static string GetDescription(this Enum value) { FieldInfo fi = value.GetType().GetField(value.ToString()); var...
using System; using System.ComponentModel; using System.Reflection; namespace abremir.AllMyBricks.Data.Extensions { public static class EnumExtensions { public static string GetDescription(this Enum value) { string description = value.ToString(); FieldInfo fi = value.Ge...
mit
C#
00d392d518f17bbb6b58515b65e3d4999d35b325
Fix Input.cshtml
YevgeniyShunevych/Atata,atata-framework/atata,YevgeniyShunevych/Atata,atata-framework/atata
src/Atata.TestApp/Pages/Input.cshtml
src/Atata.TestApp/Pages/Input.cshtml
@page @{ ViewBag.Title = "Input"; } <div class="row"> <div class="col-md-6 col-md-offset-3"> <div class="form-group"> <label for="text-input">Text Input</label> <input id="text-input" type="text" class="form-control" /> </div> <div class="form-group"> ...
@page @{ ViewBag.Title = "Input"; } <div class="row"> <div class="col-md-6 col-md-offset-3"> <div class="form-group"> <label for="text-input">Text Input</label> <input id="text-input" type="text" class="form-control" /> </div> <div class="form-group"> ...
apache-2.0
C#
dddc668ca49cfaabc78da29807f10c896b6e7a68
bump version since dependencies changed
aranasoft/cobweb
src/Azure/Properties/AssemblyInfo.cs
src/Azure/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("Co...
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("Co...
bsd-3-clause
C#
cb387b775cba56c9ff1e3d1642694f88431a8c3c
Use dotnet pack
jeyjeyemem/Xer.Cqrs
setup.cake
setup.cake
#load nuget:https://www.myget.org/F/cake-contrib/api/v2?package=Cake.Recipe&prerelease Environment.SetVariableNames(); BuildParameters.SetParameters(context: Context, buildSystem: BuildSystem, sourceDirectoryPath: "./", title: "Xer.Cq...
#load nuget:https://www.myget.org/F/cake-contrib/api/v2?package=Cake.Recipe&prerelease Environment.SetVariableNames(); BuildParameters.SetParameters(context: Context, buildSystem: BuildSystem, sourceDirectoryPath: "./", title: "Xer.Cq...
mit
C#
bca713f1bbf6b1409c3a26e3c5e6ea48f6b7b643
Update GetTempDirectoryName method to use Path.GetRandomFileName() instead of Path.GetTempFileName() to remove the extra file deletion previously required.
slashdotdash/Duplicity
src/Duplicity.Specifications/Path.cs
src/Duplicity.Specifications/Path.cs
using System.IO; namespace Duplicity.Specifications { internal static class TempPath { /// <summary> /// Creates a uniquely named directory in the current system's temporary folder and returns the full path of that directory. /// </summary> public static string GetTempDirectory...
using System.IO; namespace Duplicity.Specifications { internal static class TempPath { /// <summary> /// Returns a unique temporary directory name. /// </summary> public static string GetTempDirectoryName() { var path = Path.Combine(Path.GetTempPath(), Path....
mit
C#
74b5f03933c8abd7903ee6c1c5d862d6a8f8237c
Fix a few typos is Cms.Format
mono/f-spot,mono/f-spot,mono/f-spot,mono/f-spot,mono/f-spot,mono/f-spot
src/Core/FSpot/Cms/Format.cs
src/Core/FSpot/Cms/Format.cs
// // Format.cs // // Author: // Stephane Delcroix <sdelcroix@src.gnome.org> // // Copyright (C) 2008 Novell, Inc. // Copyright (C) 2008 Stephane Delcroix // // Licensed under the MIT License. See LICENSE file in the project root for full license information. namespace FSpot.Cms { public enum Format : uint { Rgb...
// // Format.cs // // Author: // Stephane Delcroix <sdelcroix@src.gnome.org> // // Copyright (C) 2008 Novell, Inc. // Copyright (C) 2008 Stephane Delcroix // // 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#
93a02a65f489e9934ccdab50942edac9f15568a4
bump to 2.0.1-alpha
rpetz/SharpNetSH
SharpNetSH/Properties/AssemblyInfo.cs
SharpNetSH/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("Sh...
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("Sh...
mit
C#
20ad4bee003cdea0f6d3cc2e3dd79ed02d317dbf
delete unused variable
joevdh/HoloToolkit-Unity,out-of-pixel/HoloToolkit-Unity,paseb/HoloToolkit-Unity,davesmits/HoloToolkit-Unity,ForrestTrepte/HoloToolkit-Unity,HoloFan/HoloToolkit-Unity,CameronVetter/HoloToolkit-Unity,vbandi/HoloToolkit-Unity,dbastienMS/HoloToolkit-Unity,HattMarris1/HoloToolkit-Unity,darax/HoloToolkit-Unity,NeerajW/HoloTo...
Assets/HoloToolkit-Examples/GazeRuler/Scripts/Test/LineTest.cs
Assets/HoloToolkit-Examples/GazeRuler/Scripts/Test/LineTest.cs
using UnityEngine; using System.Collections; /// <summary> /// it's a test case, we try create line correctly between two points /// </summary> public class LineTest : MonoBehaviour { public GameObject start; public GameObject end; public GameObject line; public GameObject text; // Update is cal...
using UnityEngine; using System.Collections; /// <summary> /// it's a test case, we try create line correctly between two points /// </summary> public class LineTest : MonoBehaviour { public GameObject start; public GameObject end; public GameObject line; public GameObject text; private bool cre...
mit
C#
a7e59f03f9e58ea4c8724096a4ecd7994c32c4fb
Remove unecessary SuppressMessage.
chtoucas/Narvalo.NET,chtoucas/Narvalo.NET
src/Narvalo.Fx/Applicative/Result.cs
src/Narvalo.Fx/Applicative/Result.cs
// Copyright (c) Narvalo.Org. All rights reserved. See LICENSE.txt in the project root for license information. namespace Narvalo.Applicative { using System; using System.Diagnostics.CodeAnalysis; public static partial class Result { [SuppressMessage("Microsoft.Design", "CA1034:NestedTypesSho...
// Copyright (c) Narvalo.Org. All rights reserved. See LICENSE.txt in the project root for license information. namespace Narvalo.Applicative { using System; using System.Diagnostics.CodeAnalysis; public static partial class Result { [SuppressMessage("Microsoft.Design", "CA1034:NestedTypesSho...
bsd-2-clause
C#
50e98b0b8cd935bcbd387cca0aa34ce124685192
Add subtask processing
abstractspoon/ToDoList_Plugins,abstractspoon/ToDoList_Plugins,abstractspoon/ToDoList_Plugins
ImportExport/SampleImpExp/SampleImpExpCore/SampleImpExpCore.cs
ImportExport/SampleImpExp/SampleImpExpCore/SampleImpExpCore.cs
 using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using Abstractspoon.Tdl.PluginHelpers; namespace SampleImpExp { public class SampleImpExpCore { public bool Export(TaskList srcTasks, string sDestFilePath, bool bSilent, Preferences prefs, string sKey) ...
 using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using Abstractspoon.Tdl.PluginHelpers; namespace SampleImpExp { public class SampleImpExpCore { public bool Export(TaskList srcTasks, string sDestFilePath, bool bSilent, Preferences prefs, string sKey) ...
epl-1.0
C#
a7094382efae836371acd8fe4f513c11f2431b92
Fix for https://github.com/DigDes/SoapCore/issues/306
DigDes/SoapCore
src/SoapCore.Tests/Wsdl/WsdlTests.cs
src/SoapCore.Tests/Wsdl/WsdlTests.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.Net.Http; using System.Text; using System.Threading; using System.Threading.Tasks; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.DependencyInjection; using Microsoft.VisualStudio.TestTools.UnitTesting; using SoapCore...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Net.Http; using System.Text; using System.Threading; using System.Threading.Tasks; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.DependencyInjection; using Microsoft.VisualStudio.TestTools.UnitTesting; using SoapCore...
mit
C#
33e40d43c4049ed3726ad555ae49c662b26ec94a
Fix cancelling the setup wizard crashing the program
tgstation/tgstation-server,tgstation/tgstation-server,tgstation/tgstation-server-tools
src/Tgstation.Server.Host/Program.cs
src/Tgstation.Server.Host/Program.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; using Tgstation.Server.Host.Core; using Tgstation.Server.Host.System; namespace Tgstation.Server.Host { /// <summary> /// Entrypoint for the <see cref="Process"/> /// </summ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; using Tgstation.Server.Host.Core; using Tgstation.Server.Host.System; namespace Tgstation.Server.Host { /// <summary> /// Entrypoint for the <see cref="Process"/> /// </summ...
agpl-3.0
C#
e9d75bbeba894b538bcedf7c198aba166fdf40b4
Fix bug in case expression syntax that causes null reference
terrajobst/nquery-vnext
NQuery.Language/CaseExpressionSyntax.cs
NQuery.Language/CaseExpressionSyntax.cs
using System; using System.Collections.Generic; using System.Collections.ObjectModel; namespace NQuery.Language { public sealed class CaseExpressionSyntax : ExpressionSyntax { private readonly SyntaxToken _caseKeyword; private readonly ExpressionSyntax _inputExpression; private readonly...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; namespace NQuery.Language { public sealed class CaseExpressionSyntax : ExpressionSyntax { private readonly SyntaxToken _caseKeyword; private readonly ExpressionSyntax _inputExpression; private readonly...
mit
C#
4d0c4545600b0a8a617be221406cf4b58c66aacc
Fix crash on loading hasted player.
AndrewBaker/magecrawl,jeongroseok/magecrawl
Trunk/GameEngine/Affects/Haste.cs
Trunk/GameEngine/Affects/Haste.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Magecrawl.GameEngine.Actors; using Magecrawl.Utilities; namespace Magecrawl.GameEngine.Affects { internal class Haste : AffectBase { private double m_modifier; public Haste() : base(0) ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Magecrawl.GameEngine.Actors; using Magecrawl.Utilities; namespace Magecrawl.GameEngine.Affects { internal class Haste : AffectBase { private double m_modifier; public Haste() : base(0) ...
bsd-2-clause
C#
59ca6fe95ddfda4098c071b618fe11ceb14280c2
add PatientId to AppointmentReponse
dhawalharsora/connectedcare-sdk,SnapMD/connectedcare-sdk
SnapMD.VirtualCare.ApiModels/Scheduling/AppointmentResponse.cs
SnapMD.VirtualCare.ApiModels/Scheduling/AppointmentResponse.cs
using System; using System.Collections.Generic; namespace SnapMD.VirtualCare.ApiModels.Scheduling { /// <summary> /// Appointment response model. /// </summary> public class AppointmentResponse : AppointmentRequest { /// <summary> /// Appointment id. /// </summary> ...
using System; using System.Collections.Generic; namespace SnapMD.VirtualCare.ApiModels.Scheduling { /// <summary> /// Appointment response model. /// </summary> public class AppointmentResponse : AppointmentRequest { /// <summary> /// Appointment id. /// </summary> ...
apache-2.0
C#
bd62c84379730646298e4a6c2fa204915027c5e7
Add check for Standard Id in CloneEntity, and add a CopyEntityProperties method to allow calling it separately
ngaller/OpenSlx,ngaller/OpenSlx,nicocrm/OpenSlx,nicocrm/OpenSlx
OpenSlx.Lib/Utility/SlxEntityUtility.cs
OpenSlx.Lib/Utility/SlxEntityUtility.cs
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using Sage.Platform; using Sage.Platform.Orm.Attributes; using Sage.Platform.Orm.Interfaces; using Sage.Platform.Orm.Services; namespace OpenSlx.Lib.Utility { /// <summary> /// Miscellan...
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using Sage.Platform; using Sage.Platform.Orm.Attributes; using Sage.Platform.Orm.Interfaces; namespace OpenSlx.Lib.Utility { /// <summary> /// Miscellaneous utilities dealing with SLX ent...
apache-2.0
C#
df9e28487c3c8a45e3b6e8bab7619a2a6389b492
remove version from header
AppSpaceIT/RedCapped,petrhaus/RedCapped
src/RedCapped.Core/Header.cs
src/RedCapped.Core/Header.cs
using System; using MongoDB.Bson.Serialization.Attributes; namespace RedCapped.Core { public class Header<T> { [BsonElement("t")] public string Type => typeof(T).FullName; [BsonElement("q")] public QoS QoS { get; set; } [BsonElement("s")] public DateTime SentA...
using System; using MongoDB.Bson.Serialization.Attributes; namespace RedCapped.Core { public class Header<T> { [BsonElement("v")] public string Version => "1"; [BsonElement("t")] public string Type => typeof(T).FullName; [BsonElement("q")] public QoS QoS { get...
apache-2.0
C#
915bde6f9638dd7ece25f1e5cbb51dbc4cacd9e5
Remove unnecessary `MatchServerEvent` mapping
ppy/osu,peppy/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,ppy/osu,smoogipooo/osu,peppy/osu
osu.Game/Online/SignalRWorkaroundTypes.cs
osu.Game/Online/SignalRWorkaroundTypes.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 osu.Game.Online.Multiplayer; using osu.Game.Online.Multiplayer.MatchTypes.TeamVersus; namespace osu.Game.Online { ...
// 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 osu.Game.Online.Multiplayer; using osu.Game.Online.Multiplayer.MatchTypes.TeamVersus; namespace osu.Game.Online { ...
mit
C#
18f72bec9fdf871bdfa6d8dec63173e39f2e5d3a
Add debugging info
holance/helix-toolkit,chrkon/helix-toolkit,helix-toolkit/helix-toolkit,JeremyAnsel/helix-toolkit,Iluvatar82/helix-toolkit
Source/HelixToolkit.SharpDX.Shared/Utilities/ResourceSharedObject.cs
Source/HelixToolkit.SharpDX.Shared/Utilities/ResourceSharedObject.cs
#define DEBUG_REF #if !NETFX_CORE namespace HelixToolkit.Wpf.SharpDX #else namespace HelixToolkit.UWP #endif { #if DEBUG_REF using System.Diagnostics; #endif using System.Threading; public abstract class ResourceSharedObject : DisposeObject, IResourceSharing { private int referenceCount = 0; ...
#if !NETFX_CORE namespace HelixToolkit.Wpf.SharpDX #else namespace HelixToolkit.UWP #endif { using System; using System.Threading; public abstract class ResourceSharedObject : DisposeObject, IResourceSharing { private int referenceCount = 0; /// <summary> /// Manually increase/d...
mit
C#
de08893260c6110ca1b17b5d44e59599c9ed3529
Set Proxy to null when sending the No-Ip DNS Update request
quasar/QuasarRAT,quasar/QuasarRAT
Server/Core/Misc/NoIpUpdater.cs
Server/Core/Misc/NoIpUpdater.cs
using System; using System.Net; using System.Text; using System.Threading; using xServer.Settings; namespace xServer.Core.Misc { public static class NoIpUpdater { private static bool _running; public static void Start() { if (_running) return; Thread updateThre...
using System; using System.Net; using System.Text; using System.Threading; using xServer.Settings; namespace xServer.Core.Misc { public static class NoIpUpdater { private static bool _running; public static void Start() { if (_running) return; Thread updateThre...
mit
C#
f35d3679d9f36d863be107f3fb7ff36b1b102506
Check to see if merge worked
revaturelabs/revashare-svc-webapi
revashare-svc-webapi/revashare-svc-webapi.Tests/FlagTests.cs
revashare-svc-webapi/revashare-svc-webapi.Tests/FlagTests.cs
using revashare_svc_webapi.Logic; using revashare_svc_webapi.Logic.Models; using revashare_svc_webapi.Logic.RevaShareServiceReference; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Xunit; namespace revashare_svc_webapi.Tests { public cla...
using revashare_svc_webapi.Logic; using revashare_svc_webapi.Logic.Models; using revashare_svc_webapi.Logic.RevaShareServiceReference; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Xunit; namespace revashare_svc_webapi.Tests { public cla...
mit
C#
966fdb03f0600f57fbb153273520f197e4e1593a
Update EmployerAgreementStatus.cs
SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice
src/SFA.DAS.EAS.Account.Api.Types/EmployerAgreementStatus.cs
src/SFA.DAS.EAS.Account.Api.Types/EmployerAgreementStatus.cs
using System.ComponentModel; namespace SFA.DAS.EAS.Account.Api.Types { public enum EmployerAgreementStatus { [Description("Not signed")] Pending = 1, [Description("Signed")] Signed = 2, [Description("Expired")] Expired = 3, [Description("Super...
using System.ComponentModel; namespace SFA.DAS.EAS.Account.Api.Types { public enum EmployerAgreementStatus { [Description("Not signed")] Pending = 1, [Description("Signed")] Signed = 2, [Description("Expired")] Expired = 3, [Description("Super...
mit
C#
36b38a4d1d678965688ffdeb7e55bd84b4022585
Make sure RequestTimeout == PingTimeout for Ping requests
RossLieberman/NEST,KodrAus/elasticsearch-net,wawrzyn/elasticsearch-net,geofeedia/elasticsearch-net,jonyadamit/elasticsearch-net,UdiBen/elasticsearch-net,abibell/elasticsearch-net,adam-mccoy/elasticsearch-net,ststeiger/elasticsearch-net,robertlyson/elasticsearch-net,junlapong/elasticsearch-net,gayancc/elasticsearch-net,...
src/Nest/ElasticClient-Ping.cs
src/Nest/ElasticClient-Ping.cs
using Elasticsearch.Net; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Nest { using PingConverter = Func<IElasticsearchResponse, Stream, PingResponse>; public partial class ElasticClient { /// <inheritdoc /> publi...
using Elasticsearch.Net; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Nest { using PingConverter = Func<IElasticsearchResponse, Stream, PingResponse>; public partial class ElasticClient { /// <inheritdoc /> publi...
apache-2.0
C#
300f639c605c76431f5b373431f5cc3ace9eadf5
Add comment to help find CAS url setting
IUCrimson/AspNet.Security.CAS
samples/CookieSample/Startup.cs
samples/CookieSample/Startup.cs
using AspNetCore.Security.CAS; using Microsoft.AspNetCore.Authentication.Cookies; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; namespace CookieSample { public class...
using AspNetCore.Security.CAS; using Microsoft.AspNetCore.Authentication.Cookies; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; namespace CookieSample { public class...
mit
C#
38a2d3061c5c89447ceb66e8c913ab74ba517836
Change to InputObject naming convention
pimanac/RedditSharp.PowerShell
src/RedditSharp.PowerShell/Cmdlets/Posts/EditPost.cs
src/RedditSharp.PowerShell/Cmdlets/Posts/EditPost.cs
using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using System.Runtime.InteropServices.WindowsRuntime; using System.Text; using System.Threading.Tasks; using RedditSharp.Things; namespace RedditSharp.PowerShell.Cmdlets.Posts { /// <summary> /// <para type="...
using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using System.Runtime.InteropServices.WindowsRuntime; using System.Text; using System.Threading.Tasks; using RedditSharp.Things; namespace RedditSharp.PowerShell.Cmdlets.Posts { /// <summary> /// <para type="...
mit
C#
3c677970cda1da0d8d2d5ea39f861e77f3ba72a5
Add menu background skinning for supporters
naoey/osu,smoogipoo/osu,smoogipooo/osu,EVAST9919/osu,johnneijzen/osu,johnneijzen/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,peppy/osu-new,ppy/osu,DrabWeb/osu,naoey/osu,UselessToucan/osu,NeoAdonis/osu,DrabWeb/osu,ZLima12/osu,EVAST9919/osu,UselessToucan/osu,peppy/osu,2yangk23/osu,DrabWeb/osu,NeoAdonis/osu,ppy/osu,2yangk23/o...
osu.Game/Screens/Backgrounds/BackgroundScreenDefault.cs
osu.Game/Screens/Backgrounds/BackgroundScreenDefault.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.Allocation; using osu.Framework.Configuration; using osu.Framework.Graphics; using osu.Framework.MathUtils; using osu.Framework.Threading; using osu...
// 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.Allocation; using osu.Framework.Graphics; using osu.Framework.MathUtils; using osu.Framework.Threading; using osu.Game.Graphics.Backgrounds; namesp...
mit
C#
1d85d63d749fd92582efbe017fb51f043980ff13
Set VisualC warning level that a warning free compile occurs
markfinal/bam-boost,markfinal/bam-boost,markfinal/bam-boost
packages/boost_1_60_0/bam/Scripts/GenericBoostModule.cs
packages/boost_1_60_0/bam/Scripts/GenericBoostModule.cs
using Bam.Core; namespace boost { abstract class GenericBoostModule : C.StaticLibrary { protected GenericBoostModule( string name) { this.Name = name; } private string Name { get; set; } protected C...
using Bam.Core; namespace boost { abstract class GenericBoostModule : C.StaticLibrary { protected GenericBoostModule( string name) { this.Name = name; } private string Name { get; set; } protected C...
bsd-3-clause
C#
b1d9d02dc7acdc77e27804e3c741682419a82acf
Bump version number
adz21c/miles
VersionInfo.cs
VersionInfo.cs
using System.Reflection; // 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: AssemblyCompany("Adam Burton")] [assembly: AssemblyProduct("Miles")] [assembly: AssemblyCopyri...
using System.Reflection; // 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: AssemblyCompany("Adam Burton")] [assembly: AssemblyProduct("Miles")] [assembly: AssemblyCopyri...
apache-2.0
C#
2ae88ec48b7e28ec3939ed6ba9130df5c84f9bff
Bump the version to v4.1.3
RachelTucker/ds3_net_sdk,SpectraLogic/ds3_net_sdk,SpectraLogic/ds3_net_sdk,RachelTucker/ds3_net_sdk,SpectraLogic/ds3_net_sdk,RachelTucker/ds3_net_sdk,shabtaisharon/ds3_net_sdk,shabtaisharon/ds3_net_sdk,shabtaisharon/ds3_net_sdk
VersionInfo.cs
VersionInfo.cs
/* * ****************************************************************************** * Copyright 2014-2017 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 i...
/* * ****************************************************************************** * Copyright 2014-2017 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 i...
apache-2.0
C#