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 |
|---|---|---|---|---|---|---|---|---|
fad730441ab107d60c39495205b7e984ac54f0df | Fix Assembly Info | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Microsoft.AspNetCore.Rewrite/Properties/AssemblyInfo.cs | src/Microsoft.AspNetCore.Rewrite/Properties/AssemblyInfo.cs | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Reflection;
using System.Resources;
[assembly: AssemblyMetadata("Serviceable", "True")]
[assembly: NeutralResourcesLanguage("en-us")]
[as... | 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: AssemblyConfigurat... | apache-2.0 | C# |
06255967d261bfbc0fb1f6e122561317a01538aa | Store the inner exception. Fixes #575 | mysql-net/MySqlConnector,mysql-net/MySqlConnector | src/MySqlConnector/MySql.Data.MySqlClient/MySqlException.cs | src/MySqlConnector/MySql.Data.MySqlClient/MySqlException.cs | using System;
using System.Data.Common;
namespace MySql.Data.MySqlClient
{
public sealed class MySqlException : DbException
{
public int Number { get; }
public string SqlState { get; }
internal MySqlException(string message)
: this(message, null)
{
}
internal MySqlException(string message, Exception... | using System;
using System.Data.Common;
namespace MySql.Data.MySqlClient
{
public sealed class MySqlException : DbException
{
public int Number { get; }
public string SqlState { get; }
internal MySqlException(string message)
: this(message, null)
{
}
internal MySqlException(string message, Exception... | mit | C# |
3366eabebd7ae8eb146709778b35f1b6d697275d | Update ResourceController | openiddict/openiddict-core,PinpointTownes/core,openiddict/openiddict-core,joshcomley/openiddict-core,openiddict/openiddict-core,PinpointTownes/core,openiddict/openiddict-core,vyfster/openiddict-core,joshcomley/openiddict-core,PinpointTownes/openiddict-core,openiddict/core,PinpointTownes/openiddict-core,vyfster/openiddi... | samples/Mvc.Server/Controllers/ResourceController.cs | samples/Mvc.Server/Controllers/ResourceController.cs | using System.Threading.Tasks;
using AspNet.Security.OAuth.Validation;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Mvc;
using Mvc.Server.Models;
namespace Mvc.Server.Controllers {
[Route("api")]
public class ResourceController : Controller {
... | using System.Security.Claims;
using AspNet.Security.OAuth.Validation;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace Mvc.Server.Controllers {
[Route("api")]
public class ResourceController : Controller {
[Authorize(ActiveAuthenticationSchemes = OAuthValidationDefau... | apache-2.0 | C# |
0990c9f98a54f2b219254aa7faf862f202859873 | Fix broken test | appharbor/appharbor-cli | src/AppHarbor.Tests/Commands/CreateAppCommandTest.cs | src/AppHarbor.Tests/Commands/CreateAppCommandTest.cs | using System.IO;
using System.Linq;
using AppHarbor.Commands;
using AppHarbor.Model;
using Moq;
using Ploeh.AutoFixture.Xunit;
using Xunit;
using Xunit.Extensions;
namespace AppHarbor.Tests.Commands
{
public class CreateAppCommandTest
{
[Theory, AutoCommandData]
public void ShouldThrowWhenNoArguments(CreateAppC... | using System.IO;
using System.Linq;
using AppHarbor.Commands;
using AppHarbor.Model;
using Moq;
using Ploeh.AutoFixture.Xunit;
using Xunit;
using Xunit.Extensions;
namespace AppHarbor.Tests.Commands
{
public class CreateAppCommandTest
{
[Theory, AutoCommandData]
public void ShouldThrowWhenNoArguments(CreateAppC... | mit | C# |
2d2d58cb230aadf922224450b615ed50a340b38c | Make ConsoleHost/AssemblyInfo portable | JamesWTruher/PowerShell-1,JamesWTruher/PowerShell-1,bmanikm/PowerShell,TravisEz13/PowerShell,kmosher/PowerShell,bmanikm/PowerShell,kmosher/PowerShell,bingbing8/PowerShell,PaulHigin/PowerShell,jsoref/PowerShell,bingbing8/PowerShell,bmanikm/PowerShell,daxian-dbw/PowerShell,KarolKaczmarek/PowerShell,bmanikm/PowerShell,Jam... | src/Microsoft.PowerShell.ConsoleHost/AssemblyInfo.cs | src/Microsoft.PowerShell.ConsoleHost/AssemblyInfo.cs | using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
#if !CORECLR
using System.Runtime.ConstrainedExecution;
using System.Security.Permissions;
#endif
[assembly:AssemblyCulture("")]
[assembly:NeutralResourcesLanguage("en-US")]
#if !CORECLR
[ass... | using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.ConstrainedExecution;
using System.Security.Permissions;
[assembly:AssemblyCulture("")]
[assembly:NeutralResourcesLanguage("en-US")]
[assembly:AssemblyConfiguration("")]
... | mit | C# |
db92441330f6338e3e8a715be1b7ce479f3f11c9 | make copy work as method | WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common | src/WeihanLi.Common/Logging/LogHelperLoggingEvent.cs | src/WeihanLi.Common/Logging/LogHelperLoggingEvent.cs | using System;
using System.Collections.Generic;
namespace WeihanLi.Common.Logging
{
public class LogHelperLoggingEvent : ICloneable
{
public string CategoryName { get; set; }
public DateTimeOffset DateTime { get; set; }
public string MessageTemplate { get; set; }
public stri... | using System;
using System.Collections.Generic;
namespace WeihanLi.Common.Logging
{
public class LogHelperLoggingEvent : ICloneable
{
public string CategoryName { get; set; }
public DateTimeOffset DateTime { get; set; }
public string MessageTemplate { get; set; }
public stri... | mit | C# |
5567d2b15132ccc90553178565c3bede894a0f0d | use generic collections wherever possible | hmah/boo,KingJiangNet/boo,rmartinho/boo,KidFashion/boo,boo-lang/boo,rmboggs/boo,wbardzinski/boo,KingJiangNet/boo,scottstephens/boo,hmah/boo,bamboo/boo,KingJiangNet/boo,KidFashion/boo,scottstephens/boo,scottstephens/boo,wbardzinski/boo,KidFashion/boo,rmboggs/boo,rmboggs/boo,BITechnologies/boo,Unity-Technologies/boo,scot... | src/Boo.Lang.Compiler/TypeSystem/Services/MemberCollector.cs | src/Boo.Lang.Compiler/TypeSystem/Services/MemberCollector.cs | using System.Collections.Generic;
using System.Linq;
namespace Boo.Lang.Compiler.TypeSystem.Services
{
public static class MemberCollector
{
public static IEntity[] CollectAllMembers(INamespace entity)
{
var members = new List<IEntity>();
CollectAllMembers(members, entity);
return members.To... | using System.Linq;
namespace Boo.Lang.Compiler.TypeSystem.Services
{
public static class MemberCollector
{
public static IEntity[] CollectAllMembers(INamespace entity)
{
List members = new List();
CollectAllMembers(members, entity);
return (IEntity[])members.ToArray(new IEntity[members.Count]... | bsd-3-clause | C# |
b68e6bea1a90519099cce16f9f424be23dfeb46a | remove comma | AnthonyDGreen/roslyn,jcouv/roslyn,tannergooding/roslyn,AlekseyTs/roslyn,abock/roslyn,amcasey/roslyn,AmadeusW/roslyn,zooba/roslyn,davkean/roslyn,CaptainHayashi/roslyn,VSadov/roslyn,amcasey/roslyn,VSadov/roslyn,agocke/roslyn,heejaechang/roslyn,srivatsn/roslyn,sharwell/roslyn,tmeschter/roslyn,KirillOsenkov/roslyn,robinsed... | src/Workspaces/Core/Portable/Editing/DeclarationKind.cs | src/Workspaces/Core/Portable/Editing/DeclarationKind.cs | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.CodeAnalysis.Editing
{
public enum DeclarationKind
{
None,
CompilationUnit,
Class,
Struct,
... | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.CodeAnalysis.Editing
{
public enum DeclarationKind
{
None,
CompilationUnit,
Class,
Struct,
... | apache-2.0 | C# |
e7c86dc7c535e2e99d313e104a24eee64151c2d4 | Use SetUp for tests, add test for clearing children | ppy/osu-framework,peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework | osu.Framework.Tests/Visual/Containers/TestSceneEnumerator.cs | osu.Framework.Tests/Visual/Containers/TestSceneEnumerator.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.
#nullable disable
using System;
using NUnit.Framework;
using osu.Framework.Graphics.Containers;
namespace osu.Framework.Tests.Visual.Containers
{
public class Test... | // 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.
#nullable disable
using System;
using NUnit.Framework;
using osu.Framework.Graphics.Containers;
namespace osu.Framework.Tests.Visual.Containers
{
public class Test... | mit | C# |
dced6a2e682a9902f43e1901e2ae1912bb637016 | Add extended test coverage for desired input handling | peppy/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,ppy/osu,smoogipooo/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu | osu.Game.Tests/Visual/Settings/TestSceneSettingsNumberBox.cs | osu.Game.Tests/Visual/Settings/TestSceneSettingsNumberBox.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.Linq;
using NUnit.Framework;
using osu.Framework.Testing;
using osu.Game.Graphics.UserInterface;
using osu.Game.Overlays.Settings;
namespace osu.Game.Tests.... | // 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.Linq;
using NUnit.Framework;
using osu.Framework.Testing;
using osu.Game.Graphics.UserInterface;
using osu.Game.Overlays.Settings;
namespace osu.Game.Tests.... | mit | C# |
eb26f6f4273c638fac4be82a7a8535bcdf42a820 | Add failing test case | smoogipoo/osu,peppy/osu,UselessToucan/osu,UselessToucan/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,smoogipooo/osu,UselessToucan/osu,peppy/osu,ppy/osu,peppy/osu-new,ppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu | osu.Game.Tournament.Tests/Screens/TestSceneGameplayScreen.cs | osu.Game.Tournament.Tests/Screens/TestSceneGameplayScreen.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.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Testing;
using osu.Game.Tournament.Components;
using osu.Game.Tournament.Scr... | // 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.Game.Tournament.Components;
using osu.Game.Tournament.Screens.Gameplay;
namespace osu.Game.Tournament.Tests.Screens
{
publi... | mit | C# |
977b4049a4b9704227dbd410696f66a189ead0bf | Handle Keyboard events rather than polling | smoogipooo/osu-framework,naoey/osu-framework,DrabWeb/osu-framework,ppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,paparony03/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,Tom94/osu-framework,peppy/osu-framework,naoey/osu-framework,Nabile-Rahman... | osu.Framework.Desktop/Input/Handlers/Keyboard/OpenTKKeyboardHandler.cs | osu.Framework.Desktop/Input/Handlers/Keyboard/OpenTKKeyboardHandler.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;
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Input;
using osu.Framework.Input.Handlers;
using osu.Framework.... | // 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;
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Input;
using osu.Framework.Input.Handlers;
using osu.Framework.... | mit | C# |
1f21b41eb6e893f5a594f525144523d55903f3a9 | move try/catch down | danielgerlag/workflow-core | src/WorkflowCore/Services/LifeCycleEventPublisher.cs | src/WorkflowCore/Services/LifeCycleEventPublisher.cs | using Microsoft.Extensions.Logging;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using WorkflowCore.Interface;
using WorkflowCore.Models.LifeCycleEvents;
namespace WorkflowCore.Services
{
public class LifeCycleEventPubli... | using Microsoft.Extensions.Logging;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using WorkflowCore.Interface;
using WorkflowCore.Models.LifeCycleEvents;
namespace WorkflowCore.Services
{
public class LifeCycleEventPubli... | mit | C# |
a2722dd4035ef2e8305d82061cb3fca63af4cdfe | Fix Unity 5.2 errors | redbluegames/unity-bulk-rename,redbluegames/unity-mulligan-renamer | Assets/RedBlueGames/MulliganRenamer/Editor/ObjectNameDelta.cs | Assets/RedBlueGames/MulliganRenamer/Editor/ObjectNameDelta.cs | /* MIT License
Copyright (c) 2016 Edward Rowe, RedBlueGames
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, mer... | /* MIT License
Copyright (c) 2016 Edward Rowe, RedBlueGames
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, mer... | mit | C# |
f2aee98a14453e51d673007153611eaac525c29c | Change some comments on IWithdrawal (#3556) | Neurosploit/StratisBitcoinFullNode,quantumagi/StratisBitcoinFullNode,quantumagi/StratisBitcoinFullNode,fassadlr/StratisBitcoinFullNode,fassadlr/StratisBitcoinFullNode,Neurosploit/StratisBitcoinFullNode,stratisproject/StratisBitcoinFullNode,stratisproject/StratisBitcoinFullNode,Neurosploit/StratisBitcoinFullNode | src/Stratis.Features.FederatedPeg/Interfaces/IWithdrawal.cs | src/Stratis.Features.FederatedPeg/Interfaces/IWithdrawal.cs | using NBitcoin;
using Newtonsoft.Json;
using Stratis.Bitcoin.Utilities.JsonConverters;
namespace Stratis.Features.FederatedPeg.Interfaces
{
/// <summary>
/// Represents a withdrawal made from a source chain to a target chain.
/// </summary>
public interface IWithdrawal
{
/// <summary>
... | using NBitcoin;
using Newtonsoft.Json;
using Stratis.Bitcoin.Utilities.JsonConverters;
namespace Stratis.Features.FederatedPeg.Interfaces
{
/// <summary>
/// Represents a withdrawals made from a sidechain mutlisig, with the aim of realising
/// a cross chain transfer.
/// </summary>
public interfa... | mit | C# |
e4a2c027431c66d4815c33fef08147ae868bf2eb | Update Lombiq.HelpfulExtensions.Tests.UI/Constants/XPathSelectors.cs | Lombiq/Helpful-Extensions,Lombiq/Helpful-Extensions | Lombiq.HelpfulExtensions.Tests.UI/Constants/XPathSelectors.cs | Lombiq.HelpfulExtensions.Tests.UI/Constants/XPathSelectors.cs | namespace Lombiq.HelpfulExtensions.Tests.UI.Constants;
public static class XPathSelectors
{
public const string AddWidgetButtonGroup = "//div[contains(@class, 'btn-widget-add-below-wrapper')]"
+ "/div/div[@class='btn-group']";
public const string AddWidgetButton = $"{AddWidgetButtonGroup}/button[@title... | namespace Lombiq.HelpfulExtensions.Tests.UI.Constants;
public static class XPathSelectors
{
public const string AddWidgetButtonGroup = "//div[contains(@class, 'btn-widget-add-below-wrapper')]"
+ "/div/div[@class='btn-group']";
public const string AddWidgetButton = $"{AddWidgetButtonGroup}/button[@title... | bsd-3-clause | C# |
58c2736361674eb4752394b3694cee344ac1e6df | Enable pattern helper as equivalent of component helper | namics/NitroNet,namics/NitroNet | NitroNet.ViewEngine.TemplateHandler/ComponentHelperHandler.cs | NitroNet.ViewEngine.TemplateHandler/ComponentHelperHandler.cs | using System;
using System.Collections.Generic;
using System.Linq;
using Veil;
using Veil.Helper;
namespace NitroNet.ViewEngine.TemplateHandler
{
internal class ComponentHelperHandler : IHelperHandler
{
private readonly INitroTemplateHandler _handler;
public ComponentHelperHandler(INitroTempla... | using System;
using System.Collections.Generic;
using System.Linq;
using Veil;
using Veil.Helper;
namespace NitroNet.ViewEngine.TemplateHandler
{
internal class ComponentHelperHandler : IHelperHandler
{
private readonly INitroTemplateHandler _handler;
public ComponentHelperHandler(INitroTempla... | mit | C# |
3a56c2344c9cf213f8736805c0888fe76892b1f4 | Update SiteController.cs | gnalvesteffer/StoreManagement,gnalvesteffer/StoreManagement | StoreManagement/StoreManagement/Controllers/SiteController.cs | StoreManagement/StoreManagement/Controllers/SiteController.cs | using StoreManagement.Models.Services;
using System.Web.Mvc;
namespace StoreManagement.Controllers
{
public class SiteController : Controller
{
private readonly StoreService _storeService = new StoreService();
public ActionResult Index()
{
return View();... | using StoreManagement.Models.Services;
using System.Web.Mvc;
namespace StoreManagement.Controllers
{
public class SiteController : Controller
{
private readonly StoreService _storeService = new StoreService();
// GET: Home
public ActionResult Index()
{
... | mit | C# |
867f383028514af3dfa928e70fad14cc1b92f6c9 | Fix refcount issue disposing sampler state pins | 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.I... | bsd-3-clause | C# |
6429574fff991a9e6bdd9efc578aa41e29f580da | Fix verbosity tests | dasMulli/cli,svick/cli,harshjain2/cli,livarcocc/cli-1,harshjain2/cli,Faizan2304/cli,Faizan2304/cli,blackdwarf/cli,EdwardBlair/cli,Faizan2304/cli,johnbeisner/cli,blackdwarf/cli,livarcocc/cli-1,ravimeda/cli,svick/cli,ravimeda/cli,EdwardBlair/cli,EdwardBlair/cli,johnbeisner/cli,harshjain2/cli,blackdwarf/cli,svick/cli,blac... | test/dotnet-msbuild.Tests/GivenDotnetCleanInvocation.cs | test/dotnet-msbuild.Tests/GivenDotnetCleanInvocation.cs | // Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.DotNet.Tools.Clean;
using FluentAssertions;
using Xunit;
using System;
namespace Microsoft.DotNet.Cli.MSBuild.Tests
{
publi... | // Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.DotNet.Tools.Clean;
using FluentAssertions;
using Xunit;
using System;
namespace Microsoft.DotNet.Cli.MSBuild.Tests
{
publi... | mit | C# |
441feb43225cdf9a813f283657cce7ad4a21d3b7 | add application version to EnvironmentApi | reinterpretcat/utymap,reinterpretcat/utymap,reinterpretcat/utymap | unity/demo/Assets/Scripts/Environment/EnvironmentApi.cs | unity/demo/Assets/Scripts/Environment/EnvironmentApi.cs | namespace Assets.Scripts.Environment
{
internal static class EnvironmentApi
{
/// <summary> Returns application version. </summary>
public static string Version { get { return "0.1"; } }
/// <summary> Returns directory where UtyMap stores files. </summary>
/// <remarks> Read/wr... | namespace Assets.Scripts.Environment
{
internal static class EnvironmentApi
{
/// <summary> Returns directory where UtyMap stores files. </summary>
/// <remarks> Read/write access is required. </remarks>
public static string ExternalDataPath
{
get
{
#if U... | apache-2.0 | C# |
b80beffad4960c498f73ecaf4057ab81e6855ad5 | Rename Type parameters | inputfalken/Sharpy | GeneratorAPI/Generation.cs | GeneratorAPI/Generation.cs | using System;
using System.Collections.Generic;
using System.Linq;
namespace GeneratorAPI {
public class Generation<T> {
private readonly IEnumerable<T> _infiniteEnumerable;
public Generation(IEnumerable<T> infiniteEnumerable) => _infiniteEnumerable = infiniteEnumerable;
public Generatio... | using System;
using System.Collections.Generic;
using System.Linq;
namespace GeneratorAPI {
public class Generation<TResult> {
private readonly IEnumerable<TResult> _infiniteEnumerable;
public Generation(IEnumerable<TResult> infiniteEnumerable) => _infiniteEnumerable = infiniteEnumerable;
... | mit | C# |
0b95e36675b2131ae7eb0ca5185678f8d432a627 | Fix RelativeChildSize error temporarily | DrabWeb/osu,johnneijzen/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,peppy/osu,johnneijzen/osu,ppy/osu,naoey/osu,DrabWeb/osu,peppy/osu,peppy/osu-new,EVAST9919/osu,Nabile-Rahmani/osu,2yangk23/osu,NeoAdonis/osu,naoey/osu,NeoAdonis/osu,2yangk23/osu,smoogipoo/osu,DrabWeb/osu,EVAST9919/osu,smoogipooo/... | osu.Game/Screens/Edit/Components/Timelines/Summary/Parts/TimelinePart.cs | osu.Game/Screens/Edit/Components/Timelines/Summary/Parts/TimelinePart.cs | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using OpenTK;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
... | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using OpenTK;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
... | mit | C# |
a6bbbd510c51d31f758fcce746eab08b998e940e | revert change made in error | luiseduardohdbackup/SevenDigital.Api.Wrapper,minkaotic/SevenDigital.Api.Wrapper,AnthonySteele/SevenDigital.Api.Wrapper,emashliles/SevenDigital.Api.Wrapper,bnathyuw/SevenDigital.Api.Wrapper,bettiolo/SevenDigital.Api.Wrapper,danhaller/SevenDigital.Api.Wrapper,gregsochanik/SevenDigital.Api.Wrapper,danbadge/SevenDigital.Ap... | src/SevenDigital.Api.Wrapper.Integration.Tests/AppSettingsCredentials.cs | src/SevenDigital.Api.Wrapper.Integration.Tests/AppSettingsCredentials.cs | using System.Configuration;
namespace SevenDigital.Api.Wrapper.Integration.Tests
{
public class AppSettingsCredentials : IOAuthCredentials
{
public AppSettingsCredentials()
{
ConsumerKey = ValueFromEnvOrConfig("WRAPPER_INTEGRATION_TEST_CONSUMER_KEY", "Wrapper.ConsumerKey");
ConsumerSecret = Value... | using System.Configuration;
namespace SevenDigital.Api.Wrapper.Integration.Tests
{
public class AppSettingsCredentials : IOAuthCredentials
{
public AppSettingsCredentials()
{
ConsumerKey = ValueFromEnvOrConfig("WRAPPER_INTEGRATION_TEST_CONSUMER_KEY", "Wrapper.ConsumerKey");
ConsumerSecret = Value... | mit | C# |
e53f897b9b59b5e05d08c071f8ab8ec18dd8330b | Make the CackeKeyPrefix protected instead of Public | shaynevanasperen/NHibernate.Sessions.Operations | NHibernate.Sessions.Operations/AbstractCachedDatabaseQuery.cs | NHibernate.Sessions.Operations/AbstractCachedDatabaseQuery.cs | using System;
namespace NHibernate.Sessions.Operations
{
public abstract class AbstractCachedDatabaseQuery<T> : DatabaseOperation
{
protected abstract void ConfigureCache(CacheConfig cacheConfig);
protected abstract T QueryDatabase(ISessionManager sessionManager);
protected virtual string CacheKeyP... | using System;
namespace NHibernate.Sessions.Operations
{
public abstract class AbstractCachedDatabaseQuery<T> : DatabaseOperation
{
protected abstract void ConfigureCache(CacheConfig cacheConfig);
protected abstract T QueryDatabase(ISessionManager sessionManager);
public virtual string CacheKeyPref... | mit | C# |
2b6c613bc4435061bc68355f2963be076cbe994c | Fix outdated code comment. | nbevans/EventStreams,nbevans/EventStreams | EventStreams.Core/Core/Domain/ConventionEventHandler.cs | EventStreams.Core/Core/Domain/ConventionEventHandler.cs | using System;
namespace EventStreams.Core.Domain {
public class ConventionEventHandler<TModel> : EventHandler<TModel> where TModel : class, new() {
// Note: Because this is a generic type, each ConventionEventHandler per TModel type will have its own static state.
// Therefore, the Hand... | using System;
namespace EventStreams.Core.Domain {
public class ConventionEventHandler<TModel> : EventHandler<TModel> where TModel : class, new() {
// Note: Because this is a generic type, each ConventionEventHandler per TEventSourced type will have its own static state.
// Therefore, t... | mit | C# |
04169bd8c3b38bd3f8a018c67fd231d5bb723de7 | Rename fields, set background to white, add subviews rotation | nelzomal/monotouch-samples,nelzomal/monotouch-samples,haithemaraissia/monotouch-samples,hongnguyenpro/monotouch-samples,sakthivelnagarajan/monotouch-samples,andypaul/monotouch-samples,labdogg1003/monotouch-samples,a9upam/monotouch-samples,davidrynn/monotouch-samples,kingyond/monotouch-samples,haithemaraissia/monotouch-... | CoreAnimation/Screens/iPad/ViewTransitions/Controller.cs | CoreAnimation/Screens/iPad/ViewTransitions/Controller.cs | using System;
using System.Drawing;
using MonoTouch.CoreFoundation;
using MonoTouch.UIKit;
namespace Example_CoreAnimation.Screens.iPad.ViewTransitions
{
public class Controller : UIViewController, IDetailView
{
public event EventHandler ContentsButtonClicked;
private TransitionViewController transitionViewCont... | using System;
using MonoTouch.CoreFoundation;
using MonoTouch.UIKit;
using System.Drawing;
namespace Example_CoreAnimation.Screens.iPad.ViewTransitions
{
public class Controller : UIViewController, IDetailView
{
protected UIToolbar toolbar;
protected TransitionViewController controller1;
protected BackTransiti... | mit | C# |
79ac504e5cdab9fcb7e49f0321a9bacebbc47397 | Revert "added email variable to model" | GridProtectionAlliance/openXDA,GridProtectionAlliance/openXDA,GridProtectionAlliance/openXDA,GridProtectionAlliance/openXDA | Source/Libraries/openXDA.Model/Links/UserAccountAssetGroup.cs | Source/Libraries/openXDA.Model/Links/UserAccountAssetGroup.cs | //******************************************************************************************************
// UserAccountAssetGroup.cs - Gbtc
//
// Copyright © 2017, Grid Protection Alliance. All Rights Reserved.
//
// Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. S... | //******************************************************************************************************
// UserAccountAssetGroup.cs - Gbtc
//
// Copyright © 2017, Grid Protection Alliance. All Rights Reserved.
//
// Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. S... | mit | C# |
23b702ca948c92159c136b4717e9264c5ee8654a | Set version number to 0.9.3 | cshung/clrmd,stjeong/clrmd,tomasr/clrmd,Microsoft/clrmd,JeffCyr/clrmd,cshung/clrmd,Microsoft/clrmd,jazzdelightsme/clrmd,stefangossner/clrmd | src/Microsoft.Diagnostics.Runtime/Properties/AssemblyInfo.cs | src/Microsoft.Diagnostics.Runtime/Properties/AssemblyInfo.cs | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through t... | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through t... | mit | C# |
40bc07da5de6a4da12bff22e8a725b1a7b1d0a32 | Fix merge conflict issue | ethanmoffat/EndlessClient | EOLib/Net/Translators/AccountLoginPacketTranslator.cs | EOLib/Net/Translators/AccountLoginPacketTranslator.cs | using System.Collections.Generic;
using AutomaticTypeMapper;
using EOLib.Domain.Character;
using EOLib.Domain.Login;
using EOLib.IO.Repositories;
using EOLib.Domain.Protocol;
namespace EOLib.Net.Translators
{
[AutoMappedType]
public class AccountLoginPacketTranslator : CharacterDisplayPacketTranslator<IAccoun... | using System.Collections.Generic;
using AutomaticTypeMapper;
using EOLib.Domain.Character;
using EOLib.Domain.Login;
<<<<<<< HEAD
using EOLib.IO.Repositories;
=======
using EOLib.Domain.Protocol;
>>>>>>> master
namespace EOLib.Net.Translators
{
[AutoMappedType]
public class AccountLoginPacketTranslator : Char... | mit | C# |
202af1325078bb6acf8e2c9de9921bff8922ed15 | Add missing using | Gibe/Gibe.DittoProcessors | Gibe.DittoProcessors/Processors/BreadcrumbsAttribute.cs | Gibe.DittoProcessors/Processors/BreadcrumbsAttribute.cs | using System;
using System.Collections.Generic;
using System.Linq;
using Gibe.DittoServices.ModelConverters;
using Gibe.UmbracoWrappers;
using Umbraco.Core.Models;
using Umbraco.Web;
namespace Gibe.DittoProcessors.Processors
{
public class BreadcrumbsAttribute : InjectableProcessorAttribute
{
public Func<IUmbraco... | using System;
using System.Collections.Generic;
using System.Linq;
using Gibe.DittoServices.ModelConverters;
using Gibe.UmbracoWrappers;
using Umbraco.Core.Models;
namespace Gibe.DittoProcessors.Processors
{
public class BreadcrumbsAttribute : InjectableProcessorAttribute
{
public Func<IUmbracoWrapper> UmbracoWra... | mit | C# |
3f03eab8f10da86c36aa48dcf8e064743f459f73 | Fix return value in Subroutines.NoParamsOutput test | TheBerkin/Rant | Rant.Tests/Subroutines.cs | Rant.Tests/Subroutines.cs | using NUnit.Framework;
namespace Rant.Tests
{
[TestFixture]
public class Subroutines
{
[Test]
public void NoParamsOutput()
{
Assert.AreEqual("1 2 3 4 5 6 7 8 9 10",
new RantEngine().Do(@"[$[test]:[r:10][s:\s]{[rn]}][$test]").MainValue);
}
[Test]
[ExpectedException(typeof(RantRuntimeException))... | using NUnit.Framework;
namespace Rant.Tests
{
[TestFixture]
public class Subroutines
{
[Test]
public void NoParamsOutput()
{
Assert.AreEqual("1 2 3 4 5 6 7 8 9 10",
new RantEngine().Do(@"[$[test]:[r:10][s:\s]{[rn]}][$test]"));
}
[Test]
[ExpectedException(typeof(RantRuntimeException))]
public... | mit | C# |
dfa9432f2178622e8160aa853e27c1addce2a1a4 | Remove unused code | MelHarbour/HeadRaceTiming-Site,MelHarbour/HeadRaceTiming-Site,MelHarbour/HeadRaceTiming-Site | HeadRaceTiming-Site/Controllers/CompetitionController.cs | HeadRaceTiming-Site/Controllers/CompetitionController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using HeadRaceTimingSite.Models;
using Microsoft.EntityFrameworkCore;
using System.Globalization;
using HeadRaceTimingSite.Helpers;
using AutoMapper;
using HeadRaceTimingSite.ViewModels;
na... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using HeadRaceTimingSite.Models;
using Microsoft.EntityFrameworkCore;
using System.Globalization;
using HeadRaceTimingSite.Helpers;
using AutoMapper;
using HeadRaceTimingSite.ViewModels;
na... | mit | C# |
75d094359ae272c538b44bedcafb962d58db3953 | Fix WinBehavior bug. | john29917958/Korat-Framework | Korat-Framework/Behaviors/Os/Windows/WindowsBehaviors.cs | Korat-Framework/Behaviors/Os/Windows/WindowsBehaviors.cs | using System.Collections.Generic;
using System.Windows.Forms;
using Ncu.Oolab.Korat.Library;
namespace KoratFramework.Behaviors.Os.Windows
{
public class WindowsBehaviors : OsBehaviors
{
public override string Version => "7";
public WindowsBehaviors(Korat korat) : base(korat)
{
... | using System.Collections.Generic;
using System.Windows.Forms;
using Ncu.Oolab.Korat.Library;
namespace KoratFramework.Behaviors.Os.Windows
{
public class WindowsBehaviors : OsBehaviors
{
public override string Version => "7";
public WindowsBehaviors(Korat korat) : base(korat)
{
... | mit | C# |
faec10d1322ecbf0253af20621ecb3a406882fc8 | Comment failing assertion | browserstack/browserstack-local-csharp | BrowserStackLocal/BrowserStackLocalIntegrationTests/IntegrationTests.cs | BrowserStackLocal/BrowserStackLocalIntegrationTests/IntegrationTests.cs | using NUnit.Framework;
using System;
using System.Diagnostics;
using System.Collections.Generic;
using OpenQA.Selenium;
using OpenQA.Selenium.Remote;
using OpenQA.Selenium.Edge;
using BrowserStack;
namespace BrowserStackLocalIntegrationTests
{
public class IntegrationTests
{
private static string username = En... | using NUnit.Framework;
using System;
using System.Diagnostics;
using System.Collections.Generic;
using OpenQA.Selenium;
using OpenQA.Selenium.Remote;
using OpenQA.Selenium.Edge;
using BrowserStack;
namespace BrowserStackLocalIntegrationTests
{
public class IntegrationTests
{
private static string username = En... | mit | C# |
1e81b211c8020d722c48cf2f95635b30e17f81ed | Add person support | aloisdg/edx-csharp | edX/Module3/Program.cs | edX/Module3/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Module3
{
public class Program
{
public static void Main()
{
try
{
HandlePeople();
// ToDo
// cour... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Module3
{
class Program
{
static void Main(string[] args)
{
}
}
}
| mit | C# |
ce0de92e27e789b984ca2c4349b6c93ce4fab715 | change genetic restriction | plantain-00/csharp-demo,plantain-00/csharp-demo,plantain-00/csharp-demo | Ridge/Ridge/Nodes/Node.cs | Ridge/Ridge/Nodes/Node.cs | using System;
using System.Collections.Generic;
using System.Linq;
namespace Ridge.Nodes
{
public abstract class Node
{
public List<Node> Children { get; set; }
internal int Depth { get; set; }
public Node this[int index]
{
get
{
return ... | using System;
using System.Collections.Generic;
using System.Linq;
namespace Ridge.Nodes
{
public abstract class Node
{
public List<Node> Children { get; set; }
internal int Depth { get; set; }
public Node this[int index]
{
get
{
return ... | mit | C# |
1051e29cb7fd5023cbb0e0121536908d2e96e91b | Fix incorrect namespace. (#1433) | dg2k/Template10,teamneusta/Template10,MichaelPetrinolis/Template10,callummoffat/Template10,Windows-XAML/Template10,liptonbeer/Template10,teamneusta/Template10,MichaelPetrinolis/Template10,liptonbeer/Template10,mvermef/Template10,callummoffat/Template10 | Template10.Core/Template10.Core.Behaviors/Behaviors/ChangeCursorAction.cs | Template10.Core/Template10.Core.Behaviors/Behaviors/ChangeCursorAction.cs | using Microsoft.Xaml.Interactivity;
using Windows.UI.Core;
using Windows.UI.Xaml;
namespace Template10.Behaviors
{
public class CursorBehavior : DependencyObject, IAction
{
public CoreCursorType Cursor { get; set; } = CoreCursorType.Arrow;
public object Execute(object sender, object parameter... | using Microsoft.Xaml.Interactivity;
using Windows.UI.Core;
using Windows.UI.Xaml;
namespace Template10.Behaviors.Behaviors
{
public class CursorBehavior : DependencyObject, IAction
{
public CoreCursorType Cursor { get; set; } = CoreCursorType.Arrow;
public object Execute(object sender, object... | apache-2.0 | C# |
be8166348ff1e090929956899cb172e285f465dc | Add [Serializable] attribute | dnm240/NSubstitute,dnm240/NSubstitute,dnm240/NSubstitute,dnm240/NSubstitute,dnm240/NSubstitute | Source/NSubstitute/Exceptions/CouldNotRaiseEventException.cs | Source/NSubstitute/Exceptions/CouldNotRaiseEventException.cs | using System.Runtime.Serialization;
namespace NSubstitute.Exceptions
{
[Serializable]
public class CouldNotRaiseEventException : SubstituteException
{
protected const string WhatProbablyWentWrong =
"Make sure you are using Raise.Event() as part of an event subscription on a substitute.\... | using System.Runtime.Serialization;
namespace NSubstitute.Exceptions
{
public class CouldNotRaiseEventException : SubstituteException
{
protected const string WhatProbablyWentWrong =
"Make sure you are using Raise.Event() as part of an event subscription on a substitute.\n" +
"F... | bsd-3-clause | C# |
b964908442c1395e4b33fcba65445ccbab9f7476 | Rename variable | weltkante/roslyn,swaroop-sridhar/roslyn,tmat/roslyn,aelij/roslyn,eriawan/roslyn,swaroop-sridhar/roslyn,KevinRansom/roslyn,wvdd007/roslyn,sharwell/roslyn,jasonmalinowski/roslyn,agocke/roslyn,mavasani/roslyn,stephentoub/roslyn,davkean/roslyn,eriawan/roslyn,mgoertz-msft/roslyn,nguerrera/roslyn,AlekseyTs/roslyn,wvdd007/ros... | src/Features/CSharp/Portable/Completion/KeywordRecommenders/AssemblyKeywordRecommender.cs | src/Features/CSharp/Portable/Completion/KeywordRecommenders/AssemblyKeywordRecommender.cs | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Threading;
using Microsoft.CodeAnalysis.CSharp.Extensions.ContextQuery;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace Microsoft.CodeAna... | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Threading;
using Microsoft.CodeAnalysis.CSharp.Extensions.ContextQuery;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace Microsoft.CodeAna... | mit | C# |
4f809767a5f9cf762244843021a6f33ac99c94af | Disable button while update check is in progress | peppy/osu-new,ppy/osu,smoogipoo/osu,peppy/osu,ppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,smoogipooo/osu,UselessToucan/osu,UselessToucan/osu | osu.Game/Overlays/Settings/Sections/General/UpdateSettings.cs | osu.Game/Overlays/Settings/Sections/General/UpdateSettings.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.Tasks;
using osu.Framework;
using osu.Framework.Allocation;
using osu.Framework.Platform;
using osu.Framework.Screens;
using osu.Game.Configuratio... | // 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.Tasks;
using osu.Framework;
using osu.Framework.Allocation;
using osu.Framework.Platform;
using osu.Framework.Screens;
using osu.Game.Configuratio... | mit | C# |
39dac5b49f6ce5a2c96a2b17c7dea081017aa8f6 | Add xml documentation to InvalidConfigurationException. | RockFramework/Rock.Core,peteraritchie/Rock.Core,bfriesen/Rock.Core | Rock.Core/Configuration/InvalidConfigurationException.cs | Rock.Core/Configuration/InvalidConfigurationException.cs | using System;
using System.Configuration;
using System.Runtime.Serialization;
using System.Xml;
namespace Rock.Configuration
{
/// <summary>
/// The exception that is thrown when an invalid configuration is encountered.
/// </summary>
[Serializable]
public class InvalidConfigurationException : Con... | using System;
using System.Configuration;
using System.Runtime.Serialization;
using System.Xml;
namespace Rock.Configuration
{
[Serializable]
public class InvalidConfigurationException : ConfigurationException
{
public InvalidConfigurationException(string message, XmlNode node)
: base(... | mit | C# |
0e53cc5e03b3b538191228c856025949b0a7a484 | Change namespace | dhawalharsora/connectedcare-sdk,SnapMD/connectedcare-sdk | SnapMD.ConnectedCare.ApiModels/ResponseObservableItem.cs | SnapMD.ConnectedCare.ApiModels/ResponseObservableItem.cs | #region Copyright
// Copyright 2015 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 ap... | #region Copyright
// Copyright 2015 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 ap... | apache-2.0 | C# |
90eedcf5f41c65dc9f79b8003f9c25a92de4f966 | Add methods for adding/removing vertices. | DasAllFolks/SharpGraphs | Graph/IGraph.cs | Graph/IGraph.cs | using System;
namespace Graph
{
/// <summary>
/// Represents a labeled graph.
/// </summary>
/// <typeparam name="V">The vertex type.</typeparam>
/// <typeparam name="E">The edge type.</typeparam>
public interface IGraph<V, E> : IEquatable<IGraph<V, E>> where E: IEdge<V>
{
/// <sum... | using System;
using System.Collections.Generic;
namespace Graph
{
/// <summary>
/// Represents a graph.
/// </summary>
/// <typeparam name="V">The vertex type.</typeparam>
/// <typeparam name="E">The edge type.</typeparam>
public interface IGraph<V, E> : IEquatable<IGraph<V, E>> where E: IEdge... | apache-2.0 | C# |
55ab8d0de3373062da8092e8270171d6cd52d8d7 | add Timer in PomodoroService | zindlsn/RosaroterTiger | RosaroterPanterWPF/RosaroterPanterWPF/PomodoroService.cs | RosaroterPanterWPF/RosaroterPanterWPF/PomodoroService.cs | using System;
using System.Collections.Generic;
using System.Text;
using System.Timers;
namespace RosaroterPanterWPF
{
public class PomodoroService
{
private Timer _Timer = new Timer();
//private EventArgs
public int Seconds { get; set; }
private int _CurrentSeconds { get; set... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Timers;
namespace RosaroterPanterWPF
{
public class PomodoroService
{
private Timer Timer;
public PomodoroService()
{
}
public void StartT... | mit | C# |
f08cfcba1410c56aecdae697e140d1de5fa6141e | refactor delegates | louthy/language-ext,StanJav/language-ext,StefanBertels/language-ext | Samples/Contoso/Contoso.Web/Extensions/HostExtensions.cs | Samples/Contoso/Contoso.Web/Extensions/HostExtensions.cs | using System;
using Contoso.Infrastructure.Data;
using LanguageExt;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using static LanguageExt.Prelude;
namespace Contoso.Web.Extensions
{
public static class HostExtensions
{
public s... | using System;
using Contoso.Infrastructure.Data;
using LanguageExt;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using static LanguageExt.Prelude;
namespace Contoso.Web.Extensions
{
public static class HostExtensions
{
public s... | mit | C# |
79726ff857e9b1f9092e934f80f5a4496859cb61 | Fix CS | Lc5/CurrencyRates,Lc5/CurrencyRates,Lc5/CurrencyRates | CurrencyRates.NbpCurrencyRates/Service/FileFetcher.cs | CurrencyRates.NbpCurrencyRates/Service/FileFetcher.cs | namespace CurrencyRates.NbpCurrencyRates.Service
{
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using CurrencyRates.NbpCurrencyRates.Net;
using CurrencyRates.NbpCurrencyRates.Service.Entity;
public class FileFetcher : I... | namespace CurrencyRates.NbpCurrencyRates.Service
{
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using CurrencyRates.NbpCurrencyRates.Net;
using CurrencyRates.NbpCurrencyRates.Service.Entity;
public class FileFetcher : I... | mit | C# |
7e370a83f13c01359fac9a88c2f84c5b68d77e01 | fix lint. | GoogleCloudPlatform/dotnet-docs-samples,GoogleCloudPlatform/dotnet-docs-samples,GoogleCloudPlatform/dotnet-docs-samples,GoogleCloudPlatform/dotnet-docs-samples | asset/quickstart/ExportAssetsTest/ExportAssetsTest.cs | asset/quickstart/ExportAssetsTest/ExportAssetsTest.cs | /*
* Copyright (c) 2018 Google LLC.
*
* 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 a... | /*
* Copyright (c) 2018 Google LLC.
*
* 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 a... | apache-2.0 | C# |
a5611da9485b474c4ea5552b34fe26bc86e7423c | Create generic invoke method for RPC | faint32/snowflake-1,RonnChyran/snowflake,RonnChyran/snowflake,faint32/snowflake-1,SnowflakePowered/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake,faint32/snowflake-1,SnowflakePowered/snowflake | Snowflake.API/Core/EventDelegate/JsonRPCEventDelegate.cs | Snowflake.API/Core/EventDelegate/JsonRPCEventDelegate.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Collections.Specialized;
using Newtonsoft.Json;
using System.IO;
namespace Snowflake.Core.EventDelegate
{
public c... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Collections.Specialized;
using Newtonsoft.Json;
using System.IO;
namespace Snowflake.Core.EventDelegate
{
public c... | mpl-2.0 | C# |
d14711290d7a6f32dc40332b888502717bacda40 | Fix uri mapper return invalid uri | jonstodle/Postolego | Postolego/PostolegoMapper.cs | Postolego/PostolegoMapper.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Navigation;
namespace Postolego {
public class PostolegoMapper : UriMapperBase {
public override Uri MapUri(Uri uri) {
var tempUri = HttpUt... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Navigation;
namespace Postolego {
public class PostolegoMapper : UriMapperBase {
public override Uri MapUri(Uri uri) {
var tempUri = HttpUt... | mit | C# |
1aa4c425f50cf2cad90bffc048e5576e6d707c81 | Fix output encoding | dsuess/vernacular,StephaneDelcroix/vernacular,benoitjadinon/vernacular,benoitjadinon/vernacular,gabornemeth/vernacular,gabornemeth/vernacular,StephaneDelcroix/vernacular,mightea/vernacular,rdio/vernacular,mightea/vernacular,dsuess/vernacular,rdio/vernacular | Vernacular.Tool/Vernacular.Generators/StreamGenerator.cs | Vernacular.Tool/Vernacular.Generators/StreamGenerator.cs | //
// ResxGenerator.cs
//
// Author:
// Aaron Bockover <abock@rd.io>
//
// Copyright 2012 Rdio, 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 restriction, including wi... | //
// ResxGenerator.cs
//
// Author:
// Aaron Bockover <abock@rd.io>
//
// Copyright 2012 Rdio, 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 restriction, including wi... | mit | C# |
b3136d592cd5b107e9fc479b0e0a5b1df2a24f7d | fix Message definition | acple/ParsecSharp | ParsecSharp/Core/Result/Implementations/Failure.ParseError.cs | ParsecSharp/Core/Result/Implementations/Failure.ParseError.cs | namespace ParsecSharp.Internal.Results
{
internal sealed class ParseError<TToken, TState, T> : Failure<TToken, T>
where TState : IParsecState<TToken, TState>
{
private readonly TState _state;
public sealed override IParsecState<TToken> State => this._state.GetState();
public se... | namespace ParsecSharp.Internal.Results
{
internal sealed class ParseError<TToken, TState, T> : Failure<TToken, T>
where TState : IParsecState<TToken, TState>
{
private readonly TState _state;
public sealed override IParsecState<TToken> State => this._state.GetState();
public se... | mit | C# |
197f22f3597b077b4f92379691c6fdf1aaddd852 | Bump version. | FacilityApi/Facility | SolutionInfo.cs | SolutionInfo.cs | using System.Reflection;
[assembly: AssemblyVersion("0.4.1.0")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCopyright("Copyright 2016-2017 Ed Ball")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
| using System.Reflection;
[assembly: AssemblyVersion("0.4.0.0")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCopyright("Copyright 2016-2017 Ed Ball")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
| mit | C# |
b5bbafe2569e7893f4a6d477f69130b97e29bbde | bump ver | AntonyCorbett/OnlyT,AntonyCorbett/OnlyT | SolutionInfo.cs | SolutionInfo.cs | using System.Reflection;
[assembly: AssemblyCompany("SoundBox")]
[assembly: AssemblyProduct("OnlyT")]
[assembly: AssemblyCopyright("Copyright © 2019 Antony Corbett")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("1.2.0.14")] | using System.Reflection;
[assembly: AssemblyCompany("SoundBox")]
[assembly: AssemblyProduct("OnlyT")]
[assembly: AssemblyCopyright("Copyright © 2019 Antony Corbett")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("1.2.0.13")] | mit | C# |
5ecca629fe56c4ad9321f2967527f4ca0e229979 | Fix issue #185. Add NeutralResourcesLanguage assembly attribute required by Win8 Metro certification | sharpdx/Toolkit,tomba/Toolkit,sharpdx/Toolkit | Source/SharedAssemblyInfo.cs | Source/SharedAssemblyInfo.cs | // Copyright (c) 2010-2012 SharpDX - Alexandre Mutel
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy,... | // Copyright (c) 2010-2012 SharpDX - Alexandre Mutel
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy,... | mit | C# |
5ca176753544778f16530e642c7988ca6e51f477 | Update AssemblyInfo.cs | kevinledinh/azure-iot-sdks,dominicbetts/azure-iot-sdks,kevinledinh/azure-iot-sdks,oriolpinol/azure-iot-sdks,emirotin/resin-azure-iot-sample,andrew-buckley/azure-iot-sdks,Eclo/azure-iot-sdks,emirotin/resin-azure-iot-sample,dominicbetts/azure-iot-sdks,avranju/azure-iot-sdks,Eclo/azure-iot-sdks,Eclo/azure-iot-sdks,emiroti... | csharp/device/Microsoft.Azure.Devices.Client.NetMF/HttpClient_43/Properties/AssemblyInfo.cs | csharp/device/Microsoft.Azure.Devices.Client.NetMF/HttpClient_43/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("Mic... | 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("Mic... | mit | C# |
6a5482403a7025925a73cc434784c560c02577aa | Remove missing namespaces from ContentManagerController | Endlessages/EndlessAges.LauncherService | src/EndlessAges.LauncherService/Controllers/ContentManagerController.cs | src/EndlessAges.LauncherService/Controllers/ContentManagerController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace EndlessAges.LauncherService.Controllers
{
/// <summary>
/// Emulated controller ContentManager.aspx from the Endless Ages backend.
/// </summary>
[Route("Con... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Web.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.WebApiCompatShim;
namespace EndlessAges.LauncherService.Controllers
{
/// <summary>
/// Emulated controller Content... | mit | C# |
93ba19f30e2935c74ef32d7c4d4267c68fa93a7a | Update Global.asax.cs | pedroreys/docs.particular.net,WojcikMike/docs.particular.net,eclaus/docs.particular.net,yuxuac/docs.particular.net | samples/web/asp-mvc-injecting-bus/Version_5/WebApplication/Global.asax.cs | samples/web/asp-mvc-injecting-bus/Version_5/WebApplication/Global.asax.cs | using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using Autofac;
using Autofac.Integration.Mvc;
using NServiceBus;
namespace WebApplication
{
public class MvcApplication : HttpApplication
{
ISendOnlyBus bus;
protected void Application_Start()
{
#region Appli... | using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using Autofac;
using Autofac.Integration.Mvc;
using NServiceBus;
namespace WebApplication
{
public class MvcApplication : HttpApplication
{
ISendOnlyBus bus;
protected void Application_Start()
{
#region Appli... | apache-2.0 | C# |
e5b7cdc33b2c14580009022c2bd564e52f5a4676 | use WithUnitOfWork extension method in NotificationSubscriptionSynchronizer | luchaoshuai/aspnetboilerplate,ryancyq/aspnetboilerplate,ryancyq/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,luchaoshuai/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,ryancyq/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,ryancyq/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate | src/Abp.Zero.Common/Notifications/NotificationSubscriptionSynchronizer.cs | src/Abp.Zero.Common/Notifications/NotificationSubscriptionSynchronizer.cs | using System;
using Abp.Authorization.Users;
using Abp.Dependency;
using Abp.Domain.Repositories;
using Abp.Domain.Uow;
using Abp.Events.Bus.Entities;
using Abp.Events.Bus.Handlers;
namespace Abp.Notifications
{
public class NotificationSubscriptionSynchronizer : IEventHandler<EntityDeletedEventData<AbpUserBase>>... | using System;
using Abp.Authorization.Users;
using Abp.Dependency;
using Abp.Domain.Repositories;
using Abp.Domain.Uow;
using Abp.Events.Bus.Entities;
using Abp.Events.Bus.Handlers;
namespace Abp.Notifications
{
public class NotificationSubscriptionSynchronizer : IEventHandler<EntityDeletedEventData<AbpUserBase>>... | mit | C# |
451a6055313bda54702d65cd530c680d528378b9 | Add Inherited in IInterceptor | AspectCore/Abstractions,AspectCore/AspectCore-Framework,AspectCore/AspectCore-Framework,AspectCore/Lite | src/Abstractions/src/AspectCore.Abstractions/Interceptors/IInterceptor.cs | src/Abstractions/src/AspectCore.Abstractions/Interceptors/IInterceptor.cs | using System.Threading.Tasks;
namespace AspectCore.Abstractions
{
[NonAspect]
public interface IInterceptor
{
bool AllowMultiple { get; }
bool Inherited { get; set; }
int Order { get; set; }
Task Invoke(AspectContext context, AspectDelegate next);
}
}
| using System.Threading.Tasks;
namespace AspectCore.Abstractions
{
[NonAspect]
public interface IInterceptor
{
bool AllowMultiple { get; }
int Order { get; set; }
Task Invoke(AspectContext context, AspectDelegate next);
}
}
| mit | C# |
8d817c2c0fdc112d004ed196c748922c6d37fe32 | Add AttributeUsage.Class to QualifierAttribute | yonglehou/spring-net,zi1jing/spring-net,yonglehou/spring-net,yonglehou/spring-net,spring-projects/spring-net,likesea/spring-net,zi1jing/spring-net,djechelon/spring-net,kvr000/spring-net,likesea/spring-net,likesea/spring-net,spring-projects/spring-net,dreamofei/spring-net,djechelon/spring-net,spring-projects/spring-net,... | src/Spring/Spring.Core/Objects/Factory/Attributes/QualifierAttribute.cs | src/Spring/Spring.Core/Objects/Factory/Attributes/QualifierAttribute.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Spring.Objects.Factory.Attributes
{
/// <summary>
/// This annotation may be used on a field or parameter as a qualifier for
/// candidate beans when autowiring. It may also be used to annotate other
/// cu... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Spring.Objects.Factory.Attributes
{
/// <summary>
/// This annotation may be used on a field or parameter as a qualifier for
/// candidate beans when autowiring. It may also be used to annotate other
/// cu... | apache-2.0 | C# |
5d890c069693fde7527458880d95fe70afb612c5 | Change Scope for WorkflowPurger | danielgerlag/workflow-core | src/providers/WorkflowCore.Providers.Azure/ServiceCollectionExtensions.cs | src/providers/WorkflowCore.Providers.Azure/ServiceCollectionExtensions.cs | using Microsoft.Extensions.Logging;
using WorkflowCore.Interface;
using WorkflowCore.Models;
using WorkflowCore.Providers.Azure.Interface;
using WorkflowCore.Providers.Azure.Services;
namespace Microsoft.Extensions.DependencyInjection
{
public static class ServiceCollectionExtensions
{
public static W... | using Microsoft.Extensions.Logging;
using WorkflowCore.Interface;
using WorkflowCore.Models;
using WorkflowCore.Providers.Azure.Interface;
using WorkflowCore.Providers.Azure.Services;
namespace Microsoft.Extensions.DependencyInjection
{
public static class ServiceCollectionExtensions
{
public static W... | mit | C# |
64b7f6ba3c5fe153bf90dcbc747fd99f1109fc11 | Make sure date processing is accurate | jquintus/spikes,jquintus/spikes,jquintus/spikes,jquintus/spikes | ConsoleApps/Repack/Repack/Program.cs | ConsoleApps/Repack/Repack/Program.cs | using System;
using Humanizer;
namespace Repack
{
internal class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Usage: repack [date]");
Console.WriteLine("Prints how long it is until your birthday.");
Console.WriteLine("If you don't ... | using System;
using Humanizer;
namespace Repack
{
internal class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Usage: repack [date]");
Console.WriteLine("Prints how long it is until your birthday.");
Console.WriteLine("If you don't ... | mit | C# |
b1fa3901279b330b9699eb29402cca32d2b8c84d | Remove ununsed code | cityindex-attic/CIAPI.CS.AspNet,cityindex-attic/CIAPI.CS.AspNet | src/CIAPI.AspNet.Controls/Core/ControlInjectorCssRegistrar.cs | src/CIAPI.AspNet.Controls/Core/ControlInjectorCssRegistrar.cs | using System;
using System.Linq;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace CIAPI.AspNet.Controls.Core
{
public class ControlInjectorCssRegistrar : ICssRegistrar
{
private readonly Control _injectionTarget;
public ControlInjectorCssRegistrar(Control injectionTarget)
... | using System;
using System.Linq;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace CIAPI.AspNet.Controls.Core
{
public class ControlInjectorCssRegistrar : ICssRegistrar
{
private readonly Control _injectionTarget;
public ControlInjectorCssRegistrar(Control injectionTarget)
... | apache-2.0 | C# |
87345fbd4891045397708d550b26ffaac7efd0c5 | Add PrintSchema Framework names | kei10in/KipSharp | Kip/PrintSchemaFramework.cs | Kip/PrintSchemaFramework.cs | using System.Xml.Linq;
namespace Kip
{
public static class PrintSchemaFramework
{
public static readonly XNamespace Url = "http://schemas.microsoft.com/windows/2003/08/printing/printschemaframework";
public static readonly XName PrintCapabilities = Url + "PrintCapabilities";
public st... | using System.Xml.Linq;
namespace Kip
{
public static class PrintSchemaFramework
{
public static readonly XNamespace Url = "http://schemas.microsoft.com/windows/2003/08/printing/printschemaframework";
public static readonly XName PrintCapabilities = Url + "PrintCapabilities";
public st... | mit | C# |
6bb27dbbfb70ae983abf8e626ffb96b2a52a73ed | Add missing code to VisualStudio virConnectSetErrorFunc example | libvirt/libvirt-csharp,Anthilla/libvirt-csharp | examples/VisualStudio/virConnectSetErrorFunc/Form1.cs | examples/VisualStudio/virConnectSetErrorFunc/Form1.cs | /*
* Copyright (C)
* Arnaud Champion <arnaud.champion@devatom.fr>
* Jaromír Červenka <cervajz@cervajz.com>
*
* See COPYING.LIB for the License of this software
*
* Sample code for :
* Functions :
* Connect.OpenAuth
* Domain.GetInfo
* Domain.LookupByName
* Errors.GetLastError
* ... | /*
* Copyright (C)
* Arnaud Champion <arnaud.champion@devatom.fr>
* Jaromír Červenka <cervajz@cervajz.com>
*
* See COPYING.LIB for the License of this software
*
* Sample code for :
* Functions :
* Connect.OpenAuth
* Domain.GetInfo
* Domain.LookupByName
* Errors.GetLastError
* ... | lgpl-2.1 | C# |
acfd89ba9f11afd29a17d34c4ab8a5768c9c5b05 | disable blocked FilterListsDesignTimeDbContextFactory | collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists | src/FilterLists.Data/FilterListsDesignTimeDbContextFactory.cs | src/FilterLists.Data/FilterListsDesignTimeDbContextFactory.cs | using System;
using JetBrains.Annotations;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Design;
namespace FilterLists.Data
{
//TODO: [BLOCKED] pass connection string https://github.com/aspnet/EntityFrameworkCore/issues/8332
//[UsedImplicitly]
//public class FilterListsDesignTim... | using System;
using JetBrains.Annotations;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Design;
namespace FilterLists.Data
{
[UsedImplicitly]
public class FilterListsDesignTimeDbContextFactory : IDesignTimeDbContextFactory<FilterListsDbContext>
{
private readonly int co... | mit | C# |
aab810f233c6211b4106f8bc06c018a31827cff8 | Use at least a password that has char that needs to be encoded so that that is tested. | danielwertheim/mycouch,danielwertheim/mycouch | src/Tests/MyCouch.IntegrationTests/TestClientFactory.cs | src/Tests/MyCouch.IntegrationTests/TestClientFactory.cs | using System;
namespace MyCouch.IntegrationTests
{
internal static class TestClientFactory
{
internal static IClient CreateDefault()
{
return new Client("http://mycouchtester:" + Uri.EscapeDataString("p@ssword") + "@localhost:5984/" + TestConstants.TestDbName);
}
... | namespace MyCouch.IntegrationTests
{
internal static class TestClientFactory
{
internal static IClient CreateDefault()
{
return new Client("http://mycouchtester:1q2w3e4r@localhost:5984/" + TestConstants.TestDbName);
}
}
} | mit | C# |
f169fb33d332e9cde27bfed9792ea2fafbd4fc09 | undo class1 | gusev-p/simple-1c | Tests/Class1.cs | Tests/Class1.cs | using NUnit.Framework;
using Simple1C.Tests.Helpers;
namespace Simple1C.Tests
{
internal class Class1 : TestBase
{
[Test]
[Ignore("")]
public void Test1()
{
}
}
} | using System;
using System.IO;
using System.Linq;
using System.Text;
using NUnit.Framework;
using Simple1C.Impl.Sql.SchemaMapping;
using Simple1C.Impl.Sql.SqlAccess;
using Simple1C.Impl.Sql.Translation;
using Simple1C.Tests.Helpers;
namespace Simple1C.Tests
{
internal class Class1 : TestBase
{
[Test]
... | mit | C# |
60a1fbaf175e88090b6d30a7f0a1cac9d31bc0c6 | Increase project version to 0.15.0 | atata-framework/atata-sample-app-tests | src/CommonAssemblyInfo.cs | src/CommonAssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Yevgeniy Shunevych")]
[assembly: AssemblyProduct("Atata Framework")]
[assembly: AssemblyCopyright("Copyright © Yevgeniy Shunevych 2017")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Assembly... | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Yevgeniy Shunevych")]
[assembly: AssemblyProduct("Atata Framework")]
[assembly: AssemblyCopyright("Copyright © Yevgeniy Shunevych 2017")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Assembly... | apache-2.0 | C# |
1e0be9a25eab735883b52d424875bb976bd2ef8d | Set id when adding new cinema | jenspettersson/Argentum | Sample/SilverScreen/Domain/Cinema.cs | Sample/SilverScreen/Domain/Cinema.cs | using System;
using System.Collections.Generic;
using Argentum.Core;
namespace SilverScreen.Domain
{
public class Cinema : AggregateBase<CinemaState>
{
public Cinema(CinemaState state) : base(state) { }
private Cinema(Guid id, string name)
{
Apply(new CinemaAdded(id, name));
}
pu... | using System.Collections.Generic;
using Argentum.Core;
namespace SilverScreen.Domain
{
public class Cinema : AggregateBase<CinemaState>
{
public Cinema(CinemaState state) : base(state) { }
private Cinema(string name)
{
Apply(new CinemaAdded(name));
}
public static Cinema Add(stri... | mit | C# |
4d52e5a4064356d2d5f5d626017c79e88219f196 | Change HttpContext variable to aspnet.HttpContext. | shiftkey/SignalR,shiftkey/SignalR | SignalR.AspNet/AspNetHost.cs | SignalR.AspNet/AspNetHost.cs | using System;
using System.Linq;
using System.Threading.Tasks;
using System.Web;
using SignalR.Abstractions;
namespace SignalR.AspNet
{
public class AspNetHost : HttpTaskAsyncHandler
{
private readonly PersistentConnection _connection;
private static readonly Lazy<bool> _hasAcceptWebSocketReq... | using System;
using System.Linq;
using System.Threading.Tasks;
using System.Web;
using SignalR.Abstractions;
namespace SignalR.AspNet
{
public class AspNetHost : HttpTaskAsyncHandler
{
private readonly PersistentConnection _connection;
private static readonly Lazy<bool> _hasAcceptWebSocketReq... | mit | C# |
13be5e3681e13d9d30c39e3c8ca6f3bf3201e4f9 | Update Cop.cs | ScrappyOrc/copsnrobbers,ScrappyOrc/copsnrobbers | Assets/Scripts/Characters/Cop.cs | Assets/Scripts/Characters/Cop.cs | using UnityEngine;
using System.Collections;
public class Cop : Character
{
// Use this for initialization
override protected void Start ()
{
base.Start ();
}
// Update is called once per frame
override protected void Update ()
{
}
public void MakeDecision()
{
DecisionTree.Node node = dTree.Roo... | using UnityEngine;
using System.Collections;
public class Cop : Character
{
// Use this for initialization
override protected void Start ()
{
base.Start ();
}
// Update is called once per frame
override protected void Update ()
{
}
}
| mit | C# |
7616e8fbdedebaf2af329c053a0f2926dde0deed | Update assembly | amweiss/vigilant-cupcake | VigilantCupcake/Properties/AssemblyInfo.cs | VigilantCupcake/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
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.
[ass... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
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.
[ass... | mit | C# |
e474ebf6bbfed8d0fbc6665b2653d093ee4b3ea3 | Update the link to product site in ProductInfoForm. | rubyu/CreviceApp,rubyu/CreviceApp | CreviceApp/UI.ProductInfoForm.cs | CreviceApp/UI.ProductInfoForm.cs | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using System.Windows.Forms;
namespace Crevice.UI
{
using Cr... | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using System.Windows.Forms;
namespace Crevice.UI
{
using Cr... | mit | C# |
73ddac6a31107c0229f4722e9cd3c3d6071f9dd6 | Fix menu highlighting bug | stvnhrlnd/SH,stvnhrlnd/SH,stvnhrlnd/SH | SH.Site/Views/Master.cshtml | SH.Site/Views/Master.cshtml | @inherits UmbracoViewPage<IMaster>
@{
var website = Model.Ancestor<Website>();
var menuItems = website.Children<IMaster>();
}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>@Model.SeoMetadata.Title</title>
<meta name="description" content="@Model.SeoMetadata.Description" />... | @inherits UmbracoViewPage<IMaster>
@{
var website = Model.Ancestor<Website>();
var menuItems = website.Children<IMaster>();
}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>@Model.SeoMetadata.Title</title>
<meta name="description" content="@Model.SeoMetadata.Description" />... | mit | C# |
888e4fbda7388ebf083c823c4562977ea166a09a | make NonCopyable public | ufcpp/MixinGenerator | MixinGenerator/MixinGenerator.Mixins/Annotations/NonCopyableAttribute.cs | MixinGenerator/MixinGenerator.Mixins/Annotations/NonCopyableAttribute.cs | using System;
namespace MixinGenerator.Annotations
{
[AttributeUsage(AttributeTargets.Struct)]
public class NonCopyableAttribute : Attribute
{
}
}
| using System;
namespace MixinGenerator.Annotations
{
[AttributeUsage(AttributeTargets.Struct)]
internal class NonCopyableAttribute : Attribute
{
}
}
| mit | C# |
88066a77b55c678d391d12debe68b7eee0456659 | Remove getter of Value of BindingVisibleRegionBehavior. | nuitsjp/Xamarin.Forms.GoogleMaps.Bindings | Soruce/Xamarin.Forms.GoogleMaps.Bindings/BindingVisibleRegionBehavior.cs | Soruce/Xamarin.Forms.GoogleMaps.Bindings/BindingVisibleRegionBehavior.cs | using System.ComponentModel;
namespace Xamarin.Forms.GoogleMaps.Bindings
{
[Preserve(AllMembers = true)]
public class BindingVisibleRegionBehavior : BehaviorBase<Map>
{
public static readonly BindableProperty ValueProperty = BindableProperty.Create("Value", typeof(MapSpan), typeof(BindingVisibleRe... | using System.ComponentModel;
namespace Xamarin.Forms.GoogleMaps.Bindings
{
[Preserve(AllMembers = true)]
public class BindingVisibleRegionBehavior : BehaviorBase<Map>
{
public static readonly BindableProperty ValueProperty = BindableProperty.Create("Value", typeof(MapSpan), typeof(BindingVisibleRe... | mit | C# |
5d34cbf39459925809050e43196c49e4c222ad5d | Improve Network.GamePacketReader by using properties and adding ReadBool() | IceYGO/ygosharp,Zayelion/ygosharp | YGOSharp.Network/GamePacketReader.cs | YGOSharp.Network/GamePacketReader.cs | using System.IO;
using YGOSharp.Network.Enums;
using YGOSharp.Network.Utils;
namespace YGOSharp.Network
{
public class GamePacketReader
{
public byte[] Content { get; private set; }
private BinaryReader _reader;
public GamePacketReader(byte[] content)
{
... | using System.IO;
using YGOSharp.Network.Enums;
using YGOSharp.Network.Utils;
namespace YGOSharp.Network
{
public class GamePacketReader
{
public byte[] Content { get; private set; }
private BinaryReader _reader;
public GamePacketReader(byte[] content)
{
... | mit | C# |
5fdb6a74841ed1cdf5b287d5722fe8776c07d558 | Index public events | Elders/Cronus,Elders/Cronus | src/Elders.Cronus/EventStore/Index/EventToAggregateRootId.cs | src/Elders.Cronus/EventStore/Index/EventToAggregateRootId.cs | using Elders.Cronus.Projections.Cassandra.EventSourcing;
using Microsoft.Extensions.Logging;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
namespace Elders.Cronus.EventStore.Index
{
[DataContract(Name = "55f9e248-7bb3-4288-8db8-ba9620c67228")]
public class EventToAgg... | using Elders.Cronus.Projections.Cassandra.EventSourcing;
using Microsoft.Extensions.Logging;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
namespace Elders.Cronus.EventStore.Index
{
[DataContract(Name = "55f9e248-7bb3-4288-8db8-ba9620c67228")]
public class EventToAgg... | apache-2.0 | C# |
b281ce07764c42d4c9f99bdae98f2389b5b7174f | Allow PR details to be opened more than once. | github/VisualStudio,github/VisualStudio,github/VisualStudio | src/GitHub.VisualStudio/UI/Views/PullRequestListView.xaml.cs | src/GitHub.VisualStudio/UI/Views/PullRequestListView.xaml.cs | using System;
using GitHub.Exports;
using GitHub.Extensions;
using GitHub.UI;
using GitHub.ViewModels;
using ReactiveUI;
using System.ComponentModel.Composition;
using System.Reactive.Subjects;
using System.Windows.Input;
using GitHub.Services;
using GitHub.Primitives;
namespace GitHub.VisualStudio.UI.Views
{
pub... | using System;
using GitHub.Exports;
using GitHub.Extensions;
using GitHub.UI;
using GitHub.ViewModels;
using ReactiveUI;
using System.ComponentModel.Composition;
using System.Reactive.Subjects;
using System.Windows.Input;
using GitHub.Services;
using GitHub.Primitives;
namespace GitHub.VisualStudio.UI.Views
{
pub... | mit | C# |
8ee5c2ebbfdb058d3d665abc06a920e5cbabbff4 | Remove unnecessary code | gigya/microdot | Gigya.Microdot.Hosting/Validators/ConfigObjectTypeValidator.cs | Gigya.Microdot.Hosting/Validators/ConfigObjectTypeValidator.cs | #region Copyright
// Copyright 2017 Gigya Inc. 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
//
// THI... | #region Copyright
// Copyright 2017 Gigya Inc. 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
//
// THI... | apache-2.0 | C# |
adb0bb63783513ea644a87df40494819bb21808c | Add finished version | ahockersten/ScrollsKeepChatOpen | KeepChatOpen.mod/KeepChatOpen.cs | KeepChatOpen.mod/KeepChatOpen.cs | using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
using ScrollsModLoader.Interfaces;
using UnityEngine;
using Mono.Cecil;
// FIXME check existence of methods, private variables etc and fail gracefully!
namespace KeepChatOpen.mod {
public ... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Text.RegularExpressions;
using ScrollsModLoader.Interfaces;
using UnityEngine;
using Mono.Cecil;
// FIXME check existence of methods, private variables etc and fail gracefully!
namespace KeepChatOpen.mod {... | bsd-2-clause | C# |
e39da830a059d134082ea2cf6736cb1061b1c830 | Fix VirtualTree.GetDescendants method | jasonmcboyd/Treenumerable | Source/Treenumerable/VirtualTree/VirtualTree.GetDescendants.cs | Source/Treenumerable/VirtualTree/VirtualTree.GetDescendants.cs | using System;
using System.Collections.Generic;
namespace Treenumerable
{
public partial struct VirtualTree<T>
{
public VirtualTreeEnumerable<T> GetDescendants(Func<T, bool> predicate)
{
return
this
.TreeWalker
.GetDescendants(this.Ro... | using System;
using System.Collections.Generic;
namespace Treenumerable
{
public partial struct VirtualTree<T>
{
public VirtualTreeEnumerable<T> GetDescendants(Func<T, bool> predicate)
{
return
this
.TreeWalker
.GetDescendants(this.Ro... | mit | C# |
6012b8fe8c41e4511d8c23c7d95b6449b640f324 | Swap build and revision numbers in PackageReader | mtrinder/Xamarin.Plugins | Version/Version/Version.Plugin.WindowsPhone81/PackageReader.cs | Version/Version/Version.Plugin.WindowsPhone81/PackageReader.cs | using System;
using Windows.ApplicationModel;
namespace Version.Plugin
{
internal class PackageReader
{
public static string GetAppVersion()
{
try
{
var pv = Package.Current.Id.Version;
return string.Format("{0}.{1}.{2}.{3}", pv.Major, pv.... | using System;
using Windows.ApplicationModel;
namespace Version.Plugin
{
internal class PackageReader
{
public static string GetAppVersion()
{
try
{
var pv = Package.Current.Id.Version;
return string.Format("{0}.{1}.{2}.{3}", pv.Major, pv.... | mit | C# |
a66a51ac195581a2982c1caab11e9880ba1d6b36 | fix build warning | Code-Inside/Sloader | tests/Sloader.Tests/MasterCrawlerConfigTests/TwitterTimelineConfigTests.cs | tests/Sloader.Tests/MasterCrawlerConfigTests/TwitterTimelineConfigTests.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Sloader.Shared;
using Xunit;
using YamlDotNet.Serialization;
namespace Sloader.Tests.MasterCrawlerConfigTests
{
public class TwitterTimelineConfigTests
{
[F... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Sloader.Shared;
using Xunit;
using YamlDotNet.Serialization;
namespace Sloader.Tests.MasterCrawlerConfigTests
{
public class TwitterTimelineConfigTests
{
[F... | mit | C# |
8c08114df49335fd00582745da190db32770cf21 | Add overload for parsing event from byte[] | huysentruitw/win-beacon,ghkim69/win-beacon | src/WinBeacon/Stack/Hci/Event.cs | src/WinBeacon/Stack/Hci/Event.cs | /*
* Copyright 2015 Huysentruit Wouter
*
* 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 agre... | /*
* Copyright 2015 Huysentruit Wouter
*
* 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 agre... | mit | C# |
3775ae350a5e11ca39f176c8bf19d760112f9408 | Fix account lookup. | ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab | Anlab.Core/Models/AccountModel.cs | Anlab.Core/Models/AccountModel.cs | using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
namespace Anlab.Jobs.MoneyMovement
{
public class AccountModel
{
public AccountModel(string rawAccount)
{
var regx = Regex.Match(rawAccount, @"^(\w)-(\w{7})\/?(\w{5})?... | using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
namespace Anlab.Jobs.MoneyMovement
{
public class AccountModel
{
public AccountModel(string rawAccount)
{
var regx = Regex.Match(rawAccount, @"(\w)-(\w{7})\/?(\w{5})?... | mit | C# |
550bf9bd8e7f2681e415322b74ed8fb04c18b095 | Update Vengeance.cs (#46) | BosslandGmbH/BuddyWing.DefaultCombat | trunk/DefaultCombat/Routines/Advanced/Juggernaut/Vengeance.cs | trunk/DefaultCombat/Routines/Advanced/Juggernaut/Vengeance.cs | // Copyright (C) 2011-2016 Bossland GmbH
// See the file LICENSE for the source code's detailed license
using Buddy.BehaviorTree;
using DefaultCombat.Core;
using DefaultCombat.Helpers;
namespace DefaultCombat.Routines
{
internal class Vengeance : RotationBase
{
public override string Name
{
get... | // Copyright (C) 2011-2016 Bossland GmbH
// See the file LICENSE for the source code's detailed license
using Buddy.BehaviorTree;
using DefaultCombat.Core;
using DefaultCombat.Helpers;
namespace DefaultCombat.Routines
{
internal class Vengeance : RotationBase
{
public override string Name
{
get... | apache-2.0 | C# |
80cce7c3cb1d5c840ec6bbb599a3bcdf3baf1e17 | Add failing test case | NeoAdonis/osu,peppy/osu,ppy/osu,ppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,peppy/osu,NeoAdonis/osu | osu.Game.Tests/Visual/Editing/TestSceneComposeScreen.cs | osu.Game.Tests/Visual/Editing/TestSceneComposeScreen.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.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Extensions.ObjectExtensions;
using osu.Framework.Graphics;
usi... | // 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.Containers;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Osu;
using osu.Game.... | mit | C# |
e193f8214df514f770d3bcad9ef41ce053255ed8 | Remove unnecessary room id from leave room request | smoogipooo/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu-new,ppy/osu,UselessToucan/osu,ppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu | osu.Game/Online/RealtimeMultiplayer/ISpectatorServer.cs | osu.Game/Online/RealtimeMultiplayer/ISpectatorServer.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.Tasks;
namespace osu.Game.Online.RealtimeMultiplayer
{
/// <summary>
/// An interface defining the spectator server instance.
/// </su... | // 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.Tasks;
namespace osu.Game.Online.RealtimeMultiplayer
{
/// <summary>
/// An interface defining the spectator server instance.
/// </su... | mit | C# |
91c071c7a2232d61573e8606235b078be5422976 | fix AssemblyInfo | YSRKEN/Shioi,YSRKEN/Shioi,YSRKEN/Shioi | Shioi/Properties/AssemblyInfo.cs | Shioi/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
// アセンブリに関連付けられている情報を変更するには、
// これらの属性値を変更してください。
[assembly: AssemblyTitle("Renju player and solver by C++ and C#")]
[assembly: AssemblyDescription("Renju player and solver by C+... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
// アセンブリに関連付けられている情報を変更するには、
// これらの属性値を変更してください。
[assembly: AssemblyTitle("Renju player and solver by C++ and C#")]
[assembly: AssemblyDescription("Renju player and solver by C+... | mit | C# |
25001e7e22d8a0ecdc9f27e6c2a0434f2ed47f64 | implement DefineShape4Tag writing | Alexx999/SwfSharp | SwfSharp/Tags/DefineShape4Tag.cs | SwfSharp/Tags/DefineShape4Tag.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SwfSharp.Structs;
using SwfSharp.Utils;
namespace SwfSharp.Tags
{
public class DefineShape4Tag : DefineShape3Tag
{
public RectStruct EdgeBounds { get; set; }
public bool UsesFillWindingRule { get; set; ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SwfSharp.Structs;
using SwfSharp.Utils;
namespace SwfSharp.Tags
{
public class DefineShape4Tag : DefineShape3Tag
{
public RectStruct EdgeBounds { get; set; }
public bool UsesFillWindingRule { get; set; ... | mit | C# |
280a8cfedeaa19e26e7b57a72a1295ad9ca90b5b | Fix integration test by using correct traversal source TINKREPOP-1836 | apache/tinkerpop,krlohnes/tinkerpop,pluradj/incubator-tinkerpop,robertdale/tinkerpop,apache/incubator-tinkerpop,apache/tinkerpop,apache/incubator-tinkerpop,apache/incubator-tinkerpop,robertdale/tinkerpop,krlohnes/tinkerpop,apache/tinkerpop,krlohnes/tinkerpop,apache/tinkerpop,krlohnes/tinkerpop,apache/tinkerpop,apache/t... | gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/ServiceTests.cs | gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/ServiceTests.cs | #region License
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
*... | #region License
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
*... | apache-2.0 | C# |
a601abdaafc7382f87a5942740353ca32c1b4f86 | Set version to 1.2.2-master | PerfectXL/XLParser,PerfectXL/XLParser,PerfectXL/XLParser | src/XLParser/Properties/AssemblyInfo.cs | src/XLParser/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("XL... | 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("XL... | mpl-2.0 | C# |
9602a5fa52e66bfdd2daa9c53d2cc6fc00ce96ef | Add auth handling | mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander | Battery-Commander.Web/Models/Reports/Green3_SensitiveItems.cs | Battery-Commander.Web/Models/Reports/Green3_SensitiveItems.cs | using System;
using System.Linq;
namespace BatteryCommander.Web.Models.Reports
{
public class Green3_SensitiveItems : Report
{
public Green3_SensitiveItems(Unit unit) : base(unit)
{
// Nothing to do here
}
// HACK: Make this configurable for a specific user
... | using System;
namespace BatteryCommander.Web.Models.Reports
{
public class Green3_SensitiveItems : Report
{
public Green3_SensitiveItems(Unit unit) : base(unit)
{
// Nothing to do here
}
// HACK: Make this configurable for a specific user
public String Aut... | mit | C# |
02188fe727e632855e1804960c65995076e01366 | Add some missing headers to generated .vcproj file. | lewissbaker/cppcoro,lewissbaker/cppcoro,lewissbaker/cppcoro,lewissbaker/cppcoro | lib/build.cake | lib/build.cake | ###############################################################################
# Copyright Lewis Baker
# Licenced under MIT license. See LICENSE.txt for details.
###############################################################################
import cake.path
from cake.tools import compiler, script, env, project
inc... | ###############################################################################
# Copyright Lewis Baker
# Licenced under MIT license. See LICENSE.txt for details.
###############################################################################
import cake.path
from cake.tools import compiler, script, env, project
inc... | mit | C# |
ad5bd1f0c00ae10c0c857759e38b1f588d2f4b45 | Update in line with other/unspecified switch | peppy/osu,UselessToucan/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu-new,smoogipoo/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,NeoAdonis/osu,smoogipooo/osu,NeoAdonis/osu,peppy/osu,ppy/osu,ppy/osu,peppy/osu,smoogipoo/osu | osu.Game/Overlays/BeatmapListing/SearchLanguage.cs | osu.Game/Overlays/BeatmapListing/SearchLanguage.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.Game.Utils;
namespace osu.Game.Overlays.BeatmapListing
{
[HasOrderedElements]
public enum SearchLanguage
{
[Order(0)]
Any,
... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Utils;
namespace osu.Game.Overlays.BeatmapListing
{
[HasOrderedElements]
public enum SearchLanguage
{
[Order(0)]
Any,
... | mit | C# |
265a89e5cc778e5c7054f566bdcaba16d61bf3a6 | Fix `LegacySkinPlayerTestScene` overriden by default beatmap skin | ppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu-new,smoogipoo/osu,smoogipooo/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,peppy/osu,smoogipoo/osu,ppy/osu | osu.Game/Tests/Visual/LegacySkinPlayerTestScene.cs | osu.Game/Tests/Visual/LegacySkinPlayerTestScene.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.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.IO.Stores;
using osu.Framework.Testing;
using osu... | // 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.IO.Stores;
using osu.Game.Rulesets;
using osu.Game.Skinning;
namespace osu.Game.Tests.Visual
{... | mit | C# |
1017cce748ce840052f786e598165ec1e3a575cb | Remove duplicated license header | ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,peppy/osu-framework,smoogipooo/osu-framework | osu.Framework/Bindables/BindableNumberWithCurrent.cs | osu.Framework/Bindables/BindableNumberWithCurrent.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.UserInterface;
namespace osu.Framework.Bindables
{
/// <summary>
/// A bindable which holds a reference to a bound tar... | // 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.
// 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 ... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.