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 |
|---|---|---|---|---|---|---|---|---|
e3478fd4fbdf7fe1ddb94659b99826c55faf794a | Update AssemblyInfo.cs | Ex-Presidents/Loadout | Properties/AssemblyInfo.cs | 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("Lo... | 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("Lo... | agpl-3.0 | C# |
00b0d8de273309d7da87282320605aa201be3217 | fix channel members | Inumedia/SlackAPI | SlackAPI/Channel.cs | SlackAPI/Channel.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SlackAPI
{
public class Channel : Conversation
{
public string name;
public string creator;
public string user;
public bool is_archived;
public... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SlackAPI
{
public class Channel : Conversation
{
public string name;
public string creator;
public string user;
public bool is_archived;
public... | mit | C# |
c162413d983570acb54b269d47b2a721c60b63c1 | Make class static | mmanela/diffplex,mmanela/diffplex,mmanela/diffplex,mmanela/diffplex | Perf.DiffPlex/Program.cs | Perf.DiffPlex/Program.cs | using System;
namespace Perf.DiffPlex
{
internal static class Program
{
private static void Main()
{
Console.WriteLine(@"DiffPlex Perf Tester");
new DiffPerfTester().Run();
Console.WriteLine();
}
}
}
| using System;
namespace Perf.DiffPlex
{
internal class Program
{
private static void Main()
{
Console.WriteLine(@"DiffPlex Perf Tester");
new DiffPerfTester().Run();
Console.WriteLine();
}
}
}
| apache-2.0 | C# |
a7e6efd34fc83ceb33cf7c8a31200d3d709e1dad | Rename keys -> actions | smoogipoo/osu,DrabWeb/osu,Drezi126/osu,naoey/osu,naoey/osu,naoey/osu,DrabWeb/osu,ppy/osu,Nabile-Rahmani/osu,smoogipooo/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,johnneijzen/osu,ZLima12/osu,Damnae/osu,smoogipoo/osu,EVAST9919/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu-new,ZLima12/osu,Frontear/osu... | osu.Game.Rulesets.Taiko/Replays/TaikoFramedReplayInputHandler.cs | osu.Game.Rulesets.Taiko/Replays/TaikoFramedReplayInputHandler.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 osu.Game.Rulesets.Replays;
using System.Collections.Generic;
using osu.Framework.Input;
namespace osu.Game.Rulesets.Taiko.Replays
{
internal class T... | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Rulesets.Replays;
using System.Collections.Generic;
using osu.Framework.Input;
namespace osu.Game.Rulesets.Taiko.Replays
{
internal class T... | mit | C# |
27cb07455f270142053d6426da0deda26f0d537a | Set version number of unit tests to be different | mirhagk/PowerCommandParser | UnitTests/Properties/AssemblyInfo.cs | UnitTests/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Un... | mit | C# |
10d9261e81f37bc64e40f6a7e7a2f34d07f3128b | Update WalletWasabi/Models/CoinsRegistry.cs | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/Models/CoinsRegistry.cs | WalletWasabi/Models/CoinsRegistry.cs | using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using NBitcoin;
using WalletWasabi.Models;
namespace WalletWasabi.Models
{
public class CoinsRegistry
{
private HashSet<SmartCoin> _coins;
private object _lock;
public event NotifyCollectionChangedEventHandler Collection... | using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using NBitcoin;
using WalletWasabi.Models;
namespace WalletWasabi.Gui.Models
{
public class CoinsRegistry
{
private HashSet<SmartCoin> _coins;
private object _lock;
public event NotifyCollectionChangedEventHandler Collec... | mit | C# |
545cc6df2cc8c9b28ce152b2c578a25929dae261 | Improve existing unit tests | vadimzozulya/FakeHttpContext | src/FakeHttpContext.Tests/FakeContextTests.cs | src/FakeHttpContext.Tests/FakeContextTests.cs | namespace FakeHttpContext.Tests
{
using System;
using System.IO;
using System.Web;
using FluentAssertions;
using Ploeh.AutoFixture.Xunit2;
using Xunit;
/// <summary>The fake context tests.</summary>
public class FakeContextTests
{
[Fact]
public void Should_initialize_httpContext_current()... | namespace FakeHttpContext.Tests
{
using System;
using System.IO;
using System.Web;
using FluentAssertions;
using Ploeh.AutoFixture.Xunit2;
using Xunit;
/// <summary>The fake context tests.</summary>
public class FakeContextTests
{
[Fact]
public void Should_initialize_httpContext_current()... | mit | C# |
a9b726acf4a175b037c26dbe402504733dcb0f5e | allow assmblies besides Nancy.dll to use the EmbeddedFileResponse | Novakov/Nancy,horsdal/Nancy,EliotJones/NancyTest,joebuschmann/Nancy,tareq-s/Nancy,AlexPuiu/Nancy,blairconrad/Nancy,jmptrader/Nancy,jchannon/Nancy,asbjornu/Nancy,anton-gogolev/Nancy,tareq-s/Nancy,fly19890211/Nancy,Worthaboutapig/Nancy,vladlopes/Nancy,ayoung/Nancy,vladlopes/Nancy,daniellor/Nancy,felipeleusin/Nancy,jeff-p... | src/Nancy/Diagnostics/EmbeddedFileResponse.cs | src/Nancy/Diagnostics/EmbeddedFileResponse.cs | namespace Nancy.Diagnostics
{
using System;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
public class EmbeddedFileResponse : Response
{
private static readonly byte[] ErrorText;
static EmbeddedFileResponse()
{
... | namespace Nancy.Diagnostics
{
using System;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
public class EmbeddedFileResponse : Response
{
private static readonly byte[] ErrorText;
static EmbeddedFileResponse()
{
... | mit | C# |
e69adaa1081b02b8850e2fcf9846b66fad488c05 | fix class name | TravisTX/TfsSlackFactory | src/TfsSlackFactory/Services/FormatService.cs | src/TfsSlackFactory/Services/FormatService.cs | using TfsSlackFactory.Models;
namespace TfsSlackFactory.Services
{
public class FormatService
{
public string Format(SlackWorkItemModel model, string formatString)
{
string message = formatString;
message = message.Replace("{teamProjectCollection}", model.TeamProjectCol... | using TfsSlackFactory.Models;
namespace TfsSlackFactory.Services
{
public class Formatter
{
public string Format(SlackWorkItemModel model, string formatString)
{
string message = formatString;
message = message.Replace("{teamProjectCollection}", model.TeamProjectCollect... | mit | C# |
c056c9d910c0f20b919c4fa725569b7f3ba764c7 | Revert AssemblyVersion to 2.0.0 because there are no breaking changes in this version | begoldsm/azure-sdk-for-net,mihymel/azure-sdk-for-net,mihymel/azure-sdk-for-net,begoldsm/azure-sdk-for-net,jhendrixMSFT/azure-sdk-for-net,mihymel/azure-sdk-for-net,begoldsm/azure-sdk-for-net,jhendrixMSFT/azure-sdk-for-net,jhendrixMSFT/azure-sdk-for-net | src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs | src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System.Reflection;
using System.Resources;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Microsoft Azure Traffic Manager Management Libra... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System.Reflection;
using System.Resources;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Microsoft Azure Traffic Manager Management Libra... | mit | C# |
8b88033c559ec06c5f90c9c84d46caaba348acba | Disable unused functionality | mavasani/roslyn,dotnet/roslyn,jasonmalinowski/roslyn,shyamnamboodiripad/roslyn,shyamnamboodiripad/roslyn,dotnet/roslyn,jasonmalinowski/roslyn,CyrusNajmabadi/roslyn,jasonmalinowski/roslyn,shyamnamboodiripad/roslyn,dotnet/roslyn,CyrusNajmabadi/roslyn,mavasani/roslyn,bartdesmet/roslyn,bartdesmet/roslyn,CyrusNajmabadi/rosl... | src/Features/Core/Portable/ExternalAccess/UnitTesting/SolutionCrawler/UnitTestingIncrementalAnalyzerBase.cs | src/Features/Core/Portable/ExternalAccess/UnitTesting/SolutionCrawler/UnitTestingIncrementalAnalyzerBase.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Threading;
using System.Threading.Tasks;
namespace Microsoft.CodeAnalysis.ExternalAccess.UnitTesting.... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Options;
namespace Microsoft.Co... | mit | C# |
2ae3b815d0d9dca060eb20af297d9ed67d6e883a | build 7.1.21.0 | agileharbor/channelAdvisorAccess | src/Global/GlobalAssemblyInfo.cs | src/Global/GlobalAssemblyInfo.cs | using System;
using System.Reflection;
using System.Runtime.InteropServices;
[ assembly : ComVisible( false ) ]
[ assembly : AssemblyProduct( "ChannelAdvisorAccess" ) ]
[ assembly : AssemblyCompany( "Agile Harbor, LLC" ) ]
[ assembly : AssemblyCopyright( "Copyright (C) Agile Harbor, LLC" ) ]
[ assembly : Assem... | using System;
using System.Reflection;
using System.Runtime.InteropServices;
[ assembly : ComVisible( false ) ]
[ assembly : AssemblyProduct( "ChannelAdvisorAccess" ) ]
[ assembly : AssemblyCompany( "Agile Harbor, LLC" ) ]
[ assembly : AssemblyCopyright( "Copyright (C) Agile Harbor, LLC" ) ]
[ assembly : Assem... | bsd-3-clause | C# |
3754aa35818607980d2e545f506efd421d89ed2b | Update SharedAssemblyInfo.cs | wieslawsoltes/SimpleWavSplitter,wieslawsoltes/SimpleWavSplitter,wieslawsoltes/SimpleWavSplitter,wieslawsoltes/SimpleWavSplitter | src/Shared/SharedAssemblyInfo.cs | src/Shared/SharedAssemblyInfo.cs | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Reflection;
[assembly: AssemblyCompany("Wiesław Šoltés")]
[assembly: AssemblyCopyright("Copyright © Wiesław Šoltés 2010-2017")]
[assembly: AssemblyTr... | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Reflection;
[assembly: AssemblyCompany("Wiesław Šoltés")]
[assembly: AssemblyCopyright("Copyright © Wiesław Šoltés 2010-2016")]
[assembly: AssemblyTr... | mit | C# |
140d21e4aa453cc1467f7269912fd4d1543b0e3b | Update ResolveApprenticeshipOverlappingTrainingDateRequest.cs | SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments | src/CommitmentsV2/SFA.DAS.CommitmentsV2.Api.Types/Requests/ResolveApprenticeshipOverlappingTrainingDateRequest.cs | src/CommitmentsV2/SFA.DAS.CommitmentsV2.Api.Types/Requests/ResolveApprenticeshipOverlappingTrainingDateRequest.cs | using SFA.DAS.CommitmentsV2.Types;
namespace SFA.DAS.CommitmentsV2.Api.Types.Requests
{
public class ResolveApprenticeshipOverlappingTrainingDateRequest
{
public long? ApprenticeshipId { get; set; }
public OverlappingTrainingDateRequestResolutionType? ResolutionType { get; set; }
}
} | using SFA.DAS.CommitmentsV2.Types;
namespace SFA.DAS.CommitmentsV2.Api.Types.Requests
{
public class ResolveApprenticeshipOverlappingTrainingDateRequest
{
public long? ApprenticeshipId { get; set; }
public long? DraftApprenticeshipId { get; set; }
public OverlappingTrainingDateRequestR... | mit | C# |
a64511e2f8fd3ffb57c07cc6c0cb8ca7c88a3605 | Update App.xaml.cs | nunit/nunit.runners,nunit/nunit.xamarin,nunit/nunit.runners | src/nunit.xamarin/App.xaml.cs | src/nunit.xamarin/App.xaml.cs | // Copyright (c) 2015 CNUnit Project
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publis... | // Copyright (c) 2015 CNUnit Project
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publis... | mit | C# |
9bee820d79cea15c12d7be247fb9fe161f3066f1 | Fix missing check if Builder was correctly setup before executing Build operation | Seddryck/NBi,Seddryck/NBi | NBi.NUnit/Builder/Helper/InstanceArgsBuilder.cs | NBi.NUnit/Builder/Helper/InstanceArgsBuilder.cs | using NBi.Core.Injection;
using NBi.Core.Sequence.Resolver;
using NBi.Core.Variable;
using NBi.Xml;
using NBi.Xml.Settings;
using NBi.Xml.Variables;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NBi.NUnit.Builder.Helper
{
public class... | using NBi.Core.Injection;
using NBi.Core.Sequence.Resolver;
using NBi.Core.Variable;
using NBi.Xml;
using NBi.Xml.Settings;
using NBi.Xml.Variables;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NBi.NUnit.Builder.Helper
{
public class... | apache-2.0 | C# |
6d0eef267d1c94c184220ee318fe20cdfdf79333 | Delete unnecessary debugging code. | mysql-net/MySqlConnector,mysql-net/MySqlConnector | tests/SideBySide/AppConfig.cs | tests/SideBySide/AppConfig.cs | using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.Extensions.Configuration;
using MySql.Data.MySqlClient;
namespace SideBySide
{
public static class AppConfig
{
private static IReadOnlyDictionary<string, string> DefaultConfig { get; } =
new Dictionary<string, string>
{
["... | using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using Microsoft.Extensions.Configuration;
using MySql.Data.MySqlClient;
namespace SideBySide
{
public static class AppConfig
{
private static IReadOnlyDictionary<string, string> DefaultConfig { get; } =
new Dictionary<str... | mit | C# |
07fee61989e3f230d1a8ef9dbfc2c272eba4a741 | Use reflection to load Rulesets. | Nabile-Rahmani/osu,EVAST9919/osu,Frontear/osuKyzer,ZLima12/osu,johnneijzen/osu,osu-RP/osu-RP,smoogipoo/osu,ppy/osu,Damnae/osu,default0/osu,Drezi126/osu,2yangk23/osu,ZLima12/osu,naoey/osu,smoogipoo/osu,2yangk23/osu,peppy/osu-new,ppy/osu,DrabWeb/osu,theguii/osu,RedNesto/osu,ppy/osu,nyaamara/osu,EVAST9919/osu,peppy/osu,Ne... | osu.Game/Modes/Ruleset.cs | osu.Game/Modes/Ruleset.cs | //Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using osu.Game.Modes.Objects;
using osu.Game.Modes.UI;
using System.Reflection;
using osu.Framework.Extensions;
using System;
u... | //Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using osu.Game.Modes.Objects;
using osu.Game.Modes.UI;
namespace osu.Game.Modes
{
public abstract class Ruleset
{
... | mit | C# |
f65a9e36aded46a3b927c5c5b631d34883cd6b5e | Add devToolsCommand variable | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Shell/Commands/ToolCommands.cs | WalletWasabi.Gui/Shell/Commands/ToolCommands.cs | using Avalonia;
using Avalonia.Controls;
using Avalonia.Diagnostics;
using AvalonStudio.Commands;
using AvalonStudio.Extensibility;
using AvalonStudio.Shell;
using ReactiveUI;
using System;
using System.Composition;
using System.IO;
using System.Linq;
using System.Reactive.Linq;
using WalletWasabi.Gui.Controls.WalletEx... | using Avalonia;
using Avalonia.Controls;
using Avalonia.Diagnostics;
using AvalonStudio.Commands;
using AvalonStudio.Extensibility;
using AvalonStudio.Shell;
using ReactiveUI;
using System;
using System.Composition;
using System.IO;
using System.Linq;
using System.Reactive.Linq;
using WalletWasabi.Gui.Controls.WalletEx... | mit | C# |
b7fba6667c22ff63a6bc882899c9e4a6cd0cded6 | Fix creating a font with a specific style | PowerOfCode/Eto,PowerOfCode/Eto,l8s/Eto,bbqchickenrobot/Eto-1,bbqchickenrobot/Eto-1,bbqchickenrobot/Eto-1,l8s/Eto,l8s/Eto,PowerOfCode/Eto | Source/Eto.Platform.iOS/Drawing/FontFamilyHandler.cs | Source/Eto.Platform.iOS/Drawing/FontFamilyHandler.cs | using System;
using Eto.Drawing;
using System.Collections.Generic;
using MonoTouch.UIKit;
using System.Linq;
namespace Eto.Platform.iOS.Drawing
{
public class FontFamilyHandler : WidgetHandler<object, FontFamily>, IFontFamily
{
public FontFamilyHandler ()
{
}
public FontFamilyHandler (string familyName)
{... | using System;
using Eto.Drawing;
using System.Collections.Generic;
using MonoTouch.UIKit;
using System.Linq;
namespace Eto.Platform.iOS.Drawing
{
public class FontFamilyHandler : WidgetHandler<object, FontFamily>, IFontFamily
{
public FontFamilyHandler ()
{
}
public FontFamilyHandler (string familyName)
{... | bsd-3-clause | C# |
2573046e603a00bcf0e240cc79d51ac1e9ec3514 | Implement Equals(object obj) for SortingPreference to fix VS complain | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Models/Sorting/SortingPreference.cs | WalletWasabi.Gui/Models/Sorting/SortingPreference.cs | using System;
using System.Diagnostics.CodeAnalysis;
namespace WalletWasabi.Gui.Models.Sorting
{
public struct SortingPreference : IEquatable<SortingPreference>
{
public SortingPreference(SortOrder sortOrder, string colTarget)
{
SortOrder = sortOrder;
ColumnTarget = colTarget;
}
public SortOrder SortO... | using System;
using System.Diagnostics.CodeAnalysis;
namespace WalletWasabi.Gui.Models.Sorting
{
public struct SortingPreference : IEquatable<SortingPreference>
{
public SortingPreference(SortOrder sortOrder, string colTarget)
{
SortOrder = sortOrder;
ColumnTarget = colTarget;
}
public SortOrder SortO... | mit | C# |
8f7e23cb329f2a98fc6db4cc2abc7d1a00346f3a | fix for release build | fealty/Frost | Frost.DirectX.Composition/CompositionDevice.cs | Frost.DirectX.Composition/CompositionDevice.cs | // Copyright (c) 2012, Joshua Burke
// All rights reserved.
//
// See LICENSE for more information.
using System;
using System.Diagnostics.Contracts;
using SharpDX.DXGI;
using SharpDX.Direct3D10;
using Device = SharpDX.Direct3D10.Device;
using Device1 = SharpDX.Direct3D10.Device1;
namespace Frost.DirectX.Composit... | // Copyright (c) 2012, Joshua Burke
// All rights reserved.
//
// See LICENSE for more information.
using System;
using System.Diagnostics.Contracts;
using SharpDX.DXGI;
using SharpDX.Direct3D10;
using Device = SharpDX.Direct3D10.Device;
using Device1 = SharpDX.Direct3D10.Device1;
namespace Frost.DirectX.Composit... | bsd-2-clause | C# |
a7d4d84b3608627d25a4aca5c49ba3a35202708f | Support Daily commendations | glitch100/Halo-API | HaloEzAPI/Abstraction/Enum/CommendationType.cs | HaloEzAPI/Abstraction/Enum/CommendationType.cs | namespace HaloEzAPI.Abstraction.Enum
{
public enum CommendationType
{
Progressive,
Meta,
Daily
}
} | namespace HaloEzAPI.Abstraction.Enum
{
public enum CommendationType
{
Progressive,
Meta
}
} | mit | C# |
90fd7ac037876e202748b38b36ec91a3826f6a9e | Change to using TypeCatalog instead of AssemblyCatalog | danielpalme/IocPerformance,seesharper/IocPerformance,lamLeX/IocPerformance,z4kn4fein/IocPerformance,dadhi/IocPerformance,kool79/IocPerformance | IocPerformance/Adapters/MefContainerAdapter.cs | IocPerformance/Adapters/MefContainerAdapter.cs | using System.ComponentModel.Composition.Hosting;
namespace IocPerformance.Adapters
{
public sealed class MefContainerAdapter : IContainerAdapter
{
private CompositionContainer container;
public void Prepare()
{
var catalog = new TypeCatalog(typeof(Implementation1), typeof(... | using System.ComponentModel.Composition.Hosting;
namespace IocPerformance.Adapters
{
public sealed class MefContainerAdapter : IContainerAdapter
{
private CompositionContainer container;
public void Prepare()
{
var catalog = new AssemblyCatalog(typeof(Program).Assembly);
... | apache-2.0 | C# |
0e4133bd0ac2c7b15e1ab12a6448eb559b6433fb | Make LinkCommand implement ICommand | appharbor/appharbor-cli | src/AppHarbor/Commands/LinkCommand.cs | src/AppHarbor/Commands/LinkCommand.cs | using System;
namespace AppHarbor.Commands
{
public class LinkCommand : ICommand
{
public void Execute(string[] arguments)
{
throw new NotImplementedException();
}
}
}
| namespace AppHarbor.Commands
{
public class LinkCommand
{
}
}
| mit | C# |
c68734e9b7cb3a62d9794f17c81dcb52a33bd067 | fix the ProcessWork reference | jacksonh/manos,jmptrader/manos,jacksonh/manos,jacksonh/manos,mdavid/manos-spdy,mdavid/manos-spdy,mdavid/manos-spdy,jacksonh/manos,jmptrader/manos,mdavid/manos-spdy,mdavid/manos-spdy,jacksonh/manos,jmptrader/manos,jacksonh/manos,jmptrader/manos,jacksonh/manos,jmptrader/manos,mdavid/manos-spdy,jmptrader/manos,mdavid/mano... | src/Manos/Manos.Threading/Boundary.cs | src/Manos/Manos.Threading/Boundary.cs | //
// Copyright (C) 2011 Robin Duerden (rduerden@gmail.com)
//
// 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... | //
// Copyright (C) 2011 Robin Duerden (rduerden@gmail.com)
//
// 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... | mit | C# |
d6ed4b6fdd86cfcc9e37274d27b05310763cd642 | fix member access | wikibus/Argolis | src/Lernaean.Hydra/Discovery/SupportedOperations/SupportedOperationsOfT.cs | src/Lernaean.Hydra/Discovery/SupportedOperations/SupportedOperationsOfT.cs | using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Reflection;
namespace Hydra.Discovery.SupportedOperations
{
/// <summary>
/// Base class for setting up operations supported by class <typeparamref name="T" />
/// </summary>
/// <typeparam name="T">the supporte... | using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Reflection;
namespace Hydra.Discovery.SupportedOperations
{
/// <summary>
/// Base class for setting up operations supported by class <typeparamref name="T" />
/// </summary>
/// <typeparam name="T">the supporte... | mit | C# |
a5dac7ff72bab3ca2db9ad9b839b6c43131d104c | 更新.NET 4.5项目版本号 | JeffreySu/WxOpen,JeffreySu/WxOpen | src/Senparc.Weixin.WxOpen/Senparc.Weixin.WxOpen/Properties/AssemblyInfo.cs | src/Senparc.Weixin.WxOpen/Senparc.Weixin.WxOpen/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Senparc.Weixin.WxOpen")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: ... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Senparc.Weixin.WxOpen")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: ... | apache-2.0 | C# |
3585dce0579b5ba36cf4c3fab325dbe77f86ee03 | Fix Unit Test | MartinChavez/CSharp | SchoolOfCSharp/Parameters/DefaultParameters.cs | SchoolOfCSharp/Parameters/DefaultParameters.cs | using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Parameters
{
[TestClass]
public class DefaultParameters
{
[TestMethod]
public void DefaultParametersWithoutParameter()
{
//GetString will execute using the default parameter of 'OptionalString'
As... | using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Parameters
{
[TestClass]
public class DefaultParameters
{
[TestMethod]
public void DefaultParametersWithoutParameter()
{
//GetString will execute using the default parameter of 'OptionalString'
As... | mit | C# |
b06f12d887e16ff5f68a7eb9d941ccc88f6b6404 | Implement window toggle | DMagic1/KSP_Better_Maneuvering | Source/BetterManeuvering.Unity/ManeuverSnap.cs | Source/BetterManeuvering.Unity/ManeuverSnap.cs | using System;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.Events;
using UnityEngine.EventSystems;
namespace BetterManeuvering.Unity
{
public class ManeuverSnap : MonoBehaviour, IBeginDragHandler, IDragHandler, IPointerEnterHandler, IPointerExitHandler
{
public Toggle WindowToggle = null;
public G... | using System;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.Events;
using UnityEngine.EventSystems;
namespace BetterManeuvering.Unity
{
public class ManeuverSnap : MonoBehaviour, IBeginDragHandler, IDragHandler, IPointerEnterHandler, IPointerExitHandler
{
public GameObject NextOrbit = null;
public ... | mit | C# |
128e71a1c7d614ad6b9d2db312abdc1a7e0370f7 | Increment version to 0.11; remove description | whampson/bft-spec,whampson/cascara | Src/WHampson.Cascara/Properties/AssemblyInfo.cs | Src/WHampson.Cascara/Properties/AssemblyInfo.cs | #region License
/* Copyright (c) 2017 Wes Hampson
*
* 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, ... | #region License
/* Copyright (c) 2017 Wes Hampson
*
* 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, ... | mit | C# |
95a3df67a182107ecfc18dda400f5f8d060dbcee | Add Entity Framework configuration extension to support Sql Server Date column type | TheOtherTimDuncan/TOTD | TOTD.EntityFramework/ConfigurationExtensions.cs | TOTD.EntityFramework/ConfigurationExtensions.cs | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Infrastructure.Annotations;
using System.Data.Entity.ModelConfiguration.Configuration;
using System.Linq;
namespace TOTD.EntityFramework
{
public static class ConfigurationExtensions
{
... | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Infrastructure.Annotations;
using System.Data.Entity.ModelConfiguration.Configuration;
using System.Linq;
namespace TOTD.EntityFramework
{
public static class ConfigurationExtensions
{
... | mit | C# |
3c17619648886b427a5696936bdac00d4dbf51e9 | support for Korean identifier | inkle/ink,inkle/ink,ghostpattern/ink,ghostpattern/ink | compiler/InkParser/InkParser_CharacterRanges.cs | compiler/InkParser/InkParser_CharacterRanges.cs | using Ink.Parsed;
using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;
namespace Ink
{
internal partial class InkParser
{
internal static readonly CharacterRange LatinBasic =
CharacterRange.Define ('\u0041', '\u007A', excludes: new CharacterSet().AddRange('\u005B', '\u006... | using Ink.Parsed;
using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;
namespace Ink
{
internal partial class InkParser
{
internal static readonly CharacterRange LatinBasic =
CharacterRange.Define ('\u0041', '\u007A', excludes: new CharacterSet().AddRange('\u005B', '\u006... | mit | C# |
93f4c6b340f05b50592c3aa50b869bc4ab64effa | Update TokenChannel.cs | b3b00/csly | sly/lexer/TokenChannel.cs | sly/lexer/TokenChannel.cs | using System.Collections.Generic;
using System.Text;
using System.Diagnostics.CodeAnalysis;
namespace sly.lexer
{
public class TokenChannel<IN>
{
public readonly List<Token<IN>> Tokens;
public int ChannelId;
public int Count => Tokens.Count;
public TokenChannel(List<To... | using System.Collections.Generic;
using System.Text;
namespace sly.lexer
{
public class TokenChannel<IN>
{
public readonly List<Token<IN>> Tokens;
public int ChannelId;
public int Count => Tokens.Count;
public TokenChannel(List<Token<IN>> tokens, int channelId)
... | mit | C# |
07da4fcb2b78434272593d52283f91bb23dcc4e2 | Update Pettable.cs | fomalsd/unitystation,Necromunger/unitystation,fomalsd/unitystation,fomalsd/unitystation,Necromunger/unitystation,Necromunger/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,Necromunger/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,Necromunger/unitystation,Necr... | UnityProject/Assets/Scripts/Player/Pettable.cs | UnityProject/Assets/Scripts/Player/Pettable.cs | using UnityEngine;
/// <summary>
/// Allows an object to be pet by a player.
/// </summary>
public class Pettable : MonoBehaviour, IClientInteractable<PositionalHandApply>
{
public bool Interact(PositionalHandApply interaction)
{
var targetNPCHealth = interaction.TargetObject.GetComponent<LivingHealthBehaviour>()... | using UnityEngine;
/// <summary>
/// Allows an object to be hugged by a player.
/// </summary>
public class Pettable : MonoBehaviour, IClientInteractable<PositionalHandApply>
{
public bool Interact(PositionalHandApply interaction)
{
var targetNPCHealth = interaction.TargetObject.GetComponent<LivingHealthBehaviour... | agpl-3.0 | C# |
935239625a74ba9107e7fe924ccee94ea824aa76 | Add a couple Enumerable utility methods for KeyValuePairs | AaronLieberman/Addle | Addle.Core/Linq/EnumerableExtensions.cs | Addle.Core/Linq/EnumerableExtensions.cs | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using Addle.Core.Linq;
using JetBrains.Annotations;
namespace Addle.Core.Linq
{
public static class EnumerableExtensions
{
static readonly object _lock = new object();
static readonly Random _random = new Random();
p... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using Addle.Core.Linq;
using JetBrains.Annotations;
namespace Addle.Core.Linq
{
public static class EnumerableExtensions
{
static readonly object _lock = new object();
static readonly Random _random = new Random();
p... | mit | C# |
3ea90cb82eaa65a6f460b4f37121727e3caf416f | Use Equals instead operator==. | jesterret/ReClass.NET,KN4CK3R/ReClass.NET,jesterret/ReClass.NET,KN4CK3R/ReClass.NET,KN4CK3R/ReClass.NET,jesterret/ReClass.NET | ReClass.NET/Extensions/EncodingExtensions.cs | ReClass.NET/Extensions/EncodingExtensions.cs | using System;
using System.Text;
namespace ReClassNET.Extensions
{
public static class EncodingExtension
{
/// <summary>Gets the (perhaps wrong) byte count per character. Special characters may need more bytes.</summary>
/// <param name="encoding">The encoding.</param>
/// <returns>The byte count per characte... | using System;
using System.Text;
namespace ReClassNET.Extensions
{
public static class EncodingExtension
{
/// <summary>Gets the (wrong) byte count per character. Special chars may need more bytes per character.</summary>
/// <param name="encoding">The encoding.</param>
/// <returns>The byte count per charact... | mit | C# |
b6493a7fe6e2535217104cf42d98af66562228d3 | Update version | gahcep/App.Refoveo | App.Refoveo/Properties/GlobalAssemblyInfo.cs | App.Refoveo/Properties/GlobalAssemblyInfo.cs | using System.Reflection;
/* General Product Information */
[assembly: AssemblyProduct("App.Refoveo")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCopyright("Copyright © 2014")]
[assembly: AssemblyTrademark("")]
/* Configuration Type */
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: Asse... | using System.Reflection;
/* General Product Information */
[assembly: AssemblyProduct("App.Refoveo")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCopyright("Copyright © 2014")]
[assembly: AssemblyTrademark("")]
/* Configuration Type */
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: Asse... | mit | C# |
2fe268b0d14aadcd9dfaba817224fe6e3c353ee2 | Update CoreModule.cs | tiksn/TIKSN-Framework | TIKSN.Core/DependencyInjection/CoreModule.cs | TIKSN.Core/DependencyInjection/CoreModule.cs | using Autofac;
using TIKSN.Data.Mongo;
using TIKSN.Serialization;
using TIKSN.Web.Rest;
namespace TIKSN.DependencyInjection
{
public class CoreModule : Module
{
protected override void Load(ContainerBuilder builder)
{
builder.RegisterType<DotNetXmlDeserializer>().AsSelf().SingleIns... | using Autofac;
using TIKSN.Data.Mongo;
using TIKSN.Serialization;
using TIKSN.Web.Rest;
namespace TIKSN.DependencyInjection
{
public class CoreModule : Module
{
protected override void Load(ContainerBuilder builder)
{
builder.RegisterType<DotNetXmlDeserializer>().AsSelf().SingleIns... | mit | C# |
ffa2034d10af746240cc112be42039c15e137c4a | update to latest canonical data (#1323) | robkeim/xcsharp,exercism/xcsharp,robkeim/xcsharp,exercism/xcsharp | exercises/leap/LeapTest.cs | exercises/leap/LeapTest.cs | // This file was auto-generated based on version 1.6.0 of the canonical data.
using Xunit;
public class LeapTest
{
[Fact]
public void Year_not_divisible_by_4_in_common_year()
{
Assert.False(Leap.IsLeapYear(2015));
}
[Fact(Skip = "Remove to run test")]
public void Year_divisible_by_2_n... | // This file was auto-generated based on version 1.5.1 of the canonical data.
using Xunit;
public class LeapTest
{
[Fact]
public void Year_not_divisible_by_4_in_common_year()
{
Assert.False(Leap.IsLeapYear(2015));
}
[Fact(Skip = "Remove to run test")]
public void Year_divisible_by_2_n... | mit | C# |
d7ed0eab544585d113b1f3bc845735ae1683c55a | add try.catch | sebastus/AzureFunctionForSplunk | shared/sendToSplunk.csx | shared/sendToSplunk.csx | #r "Newtonsoft.Json"
using System;
using System.Dynamic;
using System.Net;
using System.Net.Http.Headers;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
public class SingleHttpClientInstance
{
private static readonly HttpClient HttpClient;
static SingleHttpClientInstance()
{
... | #r "Newtonsoft.Json"
using System;
using System.Dynamic;
using System.Net;
using System.Net.Http.Headers;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
public class SingleHttpClientInstance
{
private static readonly HttpClient HttpClient;
static SingleHttpClientInstance()
{
... | mit | C# |
b6b626216670392124537bfc88c27a114530a062 | Make sure debugger is attached for DebugBreak, otherwise user is prompted to attach a debugger | chrisblock/Bumblebee,kool79/Bumblebee,Bumblebee/Bumblebee,Bumblebee/Bumblebee,qchicoq/Bumblebee,qchicoq/Bumblebee,chrisblock/Bumblebee,toddmeinershagen/Bumblebee,toddmeinershagen/Bumblebee,kool79/Bumblebee | Bumblebee/Extensions/Debugging.cs | Bumblebee/Extensions/Debugging.cs | using System;
using System.Collections.Generic;
using System.Threading;
namespace Bumblebee.Extensions
{
public static class Debugging
{
public static T DebugPrint<T>(this T obj)
{
Console.WriteLine(obj.ToString());
return obj;
}
public static T DebugPri... | using System;
using System.Collections.Generic;
using System.Threading;
namespace Bumblebee.Extensions
{
public static class Debugging
{
public static T DebugPrint<T>(this T obj)
{
Console.WriteLine(obj.ToString());
return obj;
}
public static T DebugPri... | mit | C# |
bdc430bf72a84faecd451941b241cb1e1d94a23c | fix for earlier renaming. | jyarbro/forum,jyarbro/forum,jyarbro/forum | Forum3/Views/Smileys/Index.cshtml | Forum3/Views/Smileys/Index.cshtml | @model ViewModels.Smileys.IndexPage
<div class="content-box pad">
<div asp-validation-summary="All"></div>
<form method="post" asp-action="@nameof(Smileys.Edit)">
<ol>
@if(Model.Items.Any()) {
@for (int i = 0; i < Model.Items.Count; i++) {
<li>
<input hidden="hidden" asp-for="@Model.Items[i].Id"... | @model ViewModels.Smileys.IndexPage
<div class="content-box pad">
<div asp-validation-summary="All"></div>
<form method="post" asp-action="@nameof(Smileys.Edit)">
<ol>
@if(Model.Smileys.Any()) {
@for (int i = 0; i < Model.Smileys.Count; i++) {
<li>
<input hidden="hidden" asp-for="@Model.Smileys[... | unlicense | C# |
1779ba60dd95dfbcdbde580ae4878e69822111d6 | Remove hard coded total tips from Details view | BillChirico/Tipage,BillChirico/Tipage | src/Tipage.Web/Views/Shifts/Details.cshtml | src/Tipage.Web/Views/Shifts/Details.cshtml | @model Tipage.Web.Models.ViewModels.ShiftViewModel
@{
ViewData["Title"] = "Details";
}
<h2>@Model.Shift.Start.ToString("d")</h2>
<div>
<hr />
<h1 class="total-tip">@Html.DisplayFor(model => model.Shift.TotalTips)</h1>
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => m... | @model Tipage.Web.Models.ViewModels.ShiftViewModel
@{
ViewData["Title"] = "Details";
}
<h2>@Model.Shift.Start.ToString("d")</h2>
<div>
<hr />
<h1 class="total-tip">$71.00</h1>
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Shift.Start)
</dt>
<d... | mit | C# |
cb55ac7138f67d250cefac130751858559657add | Fix invalid target type on UnsafeKey attribute | CoraleStudios/Colore,WolfspiritM/Colore | Corale.Colore/Razer/Keyboard/UnsafeKeyAttribute.cs | Corale.Colore/Razer/Keyboard/UnsafeKeyAttribute.cs | // ---------------------------------------------------------------------------------------
// <copyright file="UnsafeKeyAttribute.cs" company="Corale">
// Copyright © 2015 by Adam Hellberg and Brandon Scott.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this softw... | // ---------------------------------------------------------------------------------------
// <copyright file="UnsafeKeyAttribute.cs" company="Corale">
// Copyright © 2015 by Adam Hellberg and Brandon Scott.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this softw... | mit | C# |
ddfbcea53bf8a1a0a2a82d4147e25136746fabbd | Attach to remove | DragonSpark/Framework,DragonSpark/Framework,DragonSpark/Framework,DragonSpark/Framework | DragonSpark.Application/Entities/Editing/Editor.cs | DragonSpark.Application/Entities/Editing/Editor.cs | using DragonSpark.Compose;
using Microsoft.EntityFrameworkCore;
using System;
using System.Threading.Tasks;
namespace DragonSpark.Application.Entities.Editing;
sealed class Editor : DragonSpark.Model.Operations.Allocated.Terminating<int>, IEditor
{
readonly DbContext _context;
readonly IDisposable _disposable;
... | using DragonSpark.Compose;
using Microsoft.EntityFrameworkCore;
using System;
using System.Threading.Tasks;
namespace DragonSpark.Application.Entities.Editing;
sealed class Editor : DragonSpark.Model.Operations.Allocated.Terminating<int>, IEditor
{
readonly DbContext _context;
readonly IDisposable _disposable;
... | mit | C# |
c67500f9e1bb205a3cdbe09a4a19bccfb01faf9f | Update CopyingRows.cs | aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,asposecells/Aspose_Cells_NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-sh... | Examples/CSharp/RowsColumns/Copying/CopyingRows.cs | Examples/CSharp/RowsColumns/Copying/CopyingRows.cs | using System.IO;
using Aspose.Cells;
namespace Aspose.Cells.Examples.RowsColumns.Copying
{
public class CopyingRows
{
public static void Main(string[] args)
{
//ExStart:1
// The path to the documents directory.
string dataDir = Aspose.Cells.Examples.Utils.Ge... | using System.IO;
using Aspose.Cells;
namespace Aspose.Cells.Examples.RowsColumns.Copying
{
public class CopyingRows
{
public static void Main(string[] args)
{
// The path to the documents directory.
string dataDir = Aspose.Cells.Examples.Utils.GetDataDir(System.Reflecti... | mit | C# |
1664a07b338f435a6c75fe47f813ab80e980df82 | fix lock in listener | lontivero/Open.HttpProxy | Open.HttpProxy/Listeners/TcpListener.cs | Open.HttpProxy/Listeners/TcpListener.cs | using System;
using System.Collections.Concurrent;
using System.Net;
using System.Net.Sockets;
namespace Open.HttpProxy.Listeners
{
using EventArgs;
using Utils;
public enum ListenerStatus
{
Listening,
Stopped
}
internal class TcpListener
{
public event EventHandler<ConnectionEventArgs> ConnectionReque... | using System;
using System.Net;
using System.Net.Sockets;
namespace Open.HttpProxy.Listeners
{
using EventArgs;
using Utils;
public enum ListenerStatus
{
Listening,
Stopped
}
internal class TcpListener
{
public event EventHandler<ConnectionEventArgs> ConnectionRequested;
private static readonly Bloc... | mit | C# |
190d85302165adba14b01723a499ba48bfa527ce | Bump version | glorylee/FluentValidation,deluxetiky/FluentValidation,roend83/FluentValidation,GDoronin/FluentValidation,olcayseker/FluentValidation,cecilphillip/FluentValidation,IRlyDontKnow/FluentValidation,ruisebastiao/FluentValidation,roend83/FluentValidation,robv8r/FluentValidation,regisbsb/FluentValidation,mgmoody42/FluentValida... | src/CommonAssemblyInfo.cs | src/CommonAssemblyInfo.cs | #region License
// Copyright (c) Jeremy Skinner (http://www.jeremyskinner.co.uk)
//
// 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... | #region License
// Copyright (c) Jeremy Skinner (http://www.jeremyskinner.co.uk)
//
// 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... | apache-2.0 | C# |
37adb70bc6bec730101a8ba8e4506ce102bb07ee | Revert "Added method to perform validity check for effect parameters" | igece/SoxSharp | src/Effects/BaseEffect.cs | src/Effects/BaseEffect.cs | namespace SoxSharp.Effects
{
public abstract class BaseEffect : IBaseEffect
{
public abstract string Name { get; }
public abstract override string ToString();
}
}
| namespace SoxSharp.Effects
{
public abstract class BaseEffect : IBaseEffect
{
public abstract string Name { get; }
public virtual bool IsValid() { return true; }
public abstract override string ToString();
}
}
| apache-2.0 | C# |
ccf5768cc7afec331425ab34b315383d21f52687 | Add IsFilterActive; remove unneeded parameters for filter method (pass it on ctor) | neitsa/PrepareLanding,neitsa/PrepareLanding | src/Filters/TileFilter.cs | src/Filters/TileFilter.cs | using System;
using System.Collections.Generic;
using System.Linq;
using PrepareLanding.Extensions;
using RimWorld;
using RimWorld.Planet;
using UnityEngine;
using Verse;
namespace PrepareLanding.Filters
{
public abstract class TileFilter : ITileFilter
{
protected List<int> _filteredTiles = new List<i... | using System;
using System.Collections.Generic;
using System.Linq;
using PrepareLanding.Extensions;
using RimWorld;
using RimWorld.Planet;
using UnityEngine;
using Verse;
namespace PrepareLanding.Filters
{
public abstract class TileFilter : ITileFilter
{
protected List<int> _filteredTiles = new List<i... | mit | C# |
de2086eb4d1b91b6a5e82b95be30f6a346882c8d | Bump version to 2.4 | mattleibow/SQLite.Net-PCL,TiendaNube/SQLite.Net-PCL,oysteinkrog/SQLite.Net-PCL,fernandovm/SQLite.Net-PCL,igrali/SQLite.Net-PCL,caseydedore/SQLite.Net-PCL,kreuzhofer/SQLite.Net-PCL,molinch/SQLite.Net-PCL,igrali/SQLite.Net-PCL | src/GlobalAssemblyInfo.cs | src/GlobalAssemblyInfo.cs | using System.Reflection;
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [a... | using System.Reflection;
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [a... | mit | C# |
8df51bc4526639fbd4f26c6836992fdcad2b68ad | Update Index.cshtml | ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab | Anlab.Mvc/Views/Home/Index.cshtml | Anlab.Mvc/Views/Home/Index.cshtml | @{
ViewData["Title"] = "Home Page";
}
<div class="col-8">
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
Update posted: December 8, 2020<br /><br />
<strong>Please Note Holiday Closure Information:</strong><br /><br />
The Lab wi... | @{
ViewData["Title"] = "Home Page";
}
<div class="col-8">
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
Update posted: December 8, 2020<br /><br />
<strong>Please Note Holiday Closure Information:</strong><br /><br />
The Lab wi... | mit | C# |
98fd720a9327c0799b370d1c109ff4eac0e4e639 | Update Univ. Holidays | ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab | Anlab.Mvc/Views/Home/Index.cshtml | Anlab.Mvc/Views/Home/Index.cshtml | @{
ViewData["Title"] = "Home Page";
}
<div class="col-8">
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
Update posted: September 30, 2020<br /><br />
In response to the emergency need for the analysis of wine for smoke taint,
... | @{
ViewData["Title"] = "Home Page";
}
<div class="col-8">
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
Update posted: September 30, 2020<br /><br />
In response to the emergency need for the analysis of wine for smoke taint,
... | mit | C# |
8845a41c93aba6c8e5b44025b188ddf3923926b5 | Update Hive building ants | MasonSchneider/BattleAntz | BattleAntz/Assets/Scripts/Hive.cs | BattleAntz/Assets/Scripts/Hive.cs | using UnityEngine;
using System.Collections;
public class Hive : MonoBehaviour {
float nextTick = 0;
int SUGAR_RATE = 1;
int BASE_PRODUCTION = 10;
int WORKER_COST = 50;
int WORKER_PRODUCTION = 10;
int ARMY_ANT_COST = 50;
int BULL_ANT_COST = 100;
int FIRE_ANT_COST = 150;
int RETURN_VALUE = 2;
int ANT_COST = ... | using UnityEngine;
using System.Collections;
public class Hive : MonoBehaviour {
float nextTick = 0;
int SUGAR_RATE = 1;
int BASE_PRODUCTION = 10;
int WORKER_COST = 50;
int WORKER_PRODUCTION = 10;
int ARMY_ANT_COST = 50;
int BULL_ANT_COST = 100;
int FIRE_ANT_COST = 150;
int RETURN_VALUE = 2;
int ANT_COST = ... | mit | C# |
ed8965d18493f74ab345e33a28f64688a0eeeaf3 | Update ValuesOut.cs | EricZimmerman/RegistryPlugins | RegistryPlugin.WindowsPortableDevices/ValuesOut.cs | RegistryPlugin.WindowsPortableDevices/ValuesOut.cs | using System;
using RegistryPluginBase.Interfaces;
namespace RegistryPlugin.WindowsPortableDevices
{
public class ValuesOut : IValueOut
{
public ValuesOut(string device, string serialnumber, string guid, string friendlyname, DateTimeOffset? timestamp)
{
Device = device;
... | using System;
using RegistryPluginBase.Interfaces;
namespace RegistryPlugin.WindowsPortableDevices
{
public class ValuesOut : IValueOut
{
public ValuesOut(string device, string serialnumber, string guid, string friendlyname, DateTimeOffset? timestamp)
{
Device = device;
... | mit | C# |
38d9035250d8372ff646abd56f93e9f42c76e8b5 | Modify operation recorder | emoacht/Monitorian | Source/Monitorian.Core/Models/OperationRecorder.cs | Source/Monitorian.Core/Models/OperationRecorder.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Monitorian.Core.Helper;
namespace Monitorian.Core.Models
{
internal class OperationRecorder
{
public OperationRecorder(string message) => LogService.RecordOperation(message);
public void R... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Monitorian.Core.Helper;
namespace Monitorian.Core.Models
{
internal class OperationRecorder
{
public OperationRecorder(string message) => LogService.RecordOperation(message);
public void R... | mit | C# |
6e56bb04c84db9802497bf85b8e026b408235c16 | Add a method to get GameIDs | SnowflakePowered/snowflake,RonnChyran/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake | Snowflake.API/Romfile/IFileSignature.cs | Snowflake.API/Romfile/IFileSignature.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Snowflake.Romfile
{
/// <summary>
/// Represents the ROM file signature
/// </summary>
public interface IFileSignature
{
/// <summary>
/// Accepted file ext... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Snowflake.Romfile
{
/// <summary>
/// Represents the ROM file signature
/// </summary>
public interface IFileSignature
{
/// <summary>
/// Accepted file ext... | mpl-2.0 | C# |
7ba60ed700a4026491ef5e002dfb9c65cced64cf | Change type. | mika-f/Orion,OrionDevelop/Orion | Source/Orion.Shared/ProviderRedirect.cs | Source/Orion.Shared/ProviderRedirect.cs | using System;
using System.Collections.Generic;
using System.Linq;
namespace Orion.Shared
{
internal static class ProviderRedirect
{
private static readonly Dictionary<string, string> RedirectHosts = new Dictionary<string, string>
{
["mstdn.jp"] = "streaming.mstdn.jp",
... | using System;
using System.Collections.Generic;
using System.Linq;
namespace Orion.Shared
{
// F**king mstdn.jp
internal static class ProviderRedirect
{
private static readonly List<Tuple<string, string>> RedirectHosts = new List<Tuple<string, string>>
{
new Tuple<string, strin... | mit | C# |
b9c87ef8c71effcb012ae58972e37160039fad46 | Update documentation | whampson/bft-spec,whampson/cascara | Src/WHampson.Cascara/Types/ICascaraStruct.cs | Src/WHampson.Cascara/Types/ICascaraStruct.cs | #region License
/* Copyright (c) 2017 Wes Hampson
*
* 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, ... | #region License
/* Copyright (c) 2017 Wes Hampson
*
* 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, ... | mit | C# |
09092fc772e3c2755dd5aa4a49fdb12dfdb34e7a | fix JasilyTimeout API | Cologler/jasily.cologler | Jasily/Threading/JasilyTimeout.cs | Jasily/Threading/JasilyTimeout.cs | using System;
using System.Diagnostics.Contracts;
using System.Threading;
namespace Jasily.Threading
{
/// <summary>
/// alse see: http://referencesource.microsoft.com/#mscorlib/system/threading/SpinWait.cs,b8cdeb634d79d613
/// 使用算法来构造从生成 JasilyTimeout 开始到将此超时传递给系统 API 的时间。
/// </summary>
public c... | using System;
using System.Diagnostics.Contracts;
using System.Threading;
namespace Jasily.Threading
{
/// <summary>
/// alse see: http://referencesource.microsoft.com/#mscorlib/system/threading/SpinWait.cs,b8cdeb634d79d613
/// 使用算法来构造从生成 JasilyTimeout 开始到将此超时传递给系统 API 的时间。
/// </summary>
public s... | mit | C# |
35eaadcbaa1c689a9de2ec5cf029fe0fad92e188 | Update WalletWasabi.Tests/UnitTests/ListExtensionTests.cs | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Tests/UnitTests/ListExtensionTests.cs | WalletWasabi.Tests/UnitTests/ListExtensionTests.cs | using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using Xunit;
namespace WalletWasabi.Tests.UnitTests
{
public class ListExtensionTests
{
[Fact]
public void InsertSorted_Orders_Items_Correctly()
{
var actual = new List<int>();
actual.InsertSorted(5);
actual.Insert... | using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using Xunit;
namespace WalletWasabi.Tests.UnitTests
{
public class ListExtensionTests
{
[Fact]
public void InsertSorted_Orders_Items_Correctly ()
{
var actual = new List<int>();
actual.InsertSorted(5);
actual.Inser... | mit | C# |
e52c9a9a0a81ed1285d1ee02eea17388b5b1f300 | Update description, version and remove ComVisible | richardlawley/NModbus4,NModbus/NModbus,xlgwr/NModbus4,Maxwe11/NModbus4,NModbus4/NModbus4,yvschmid/NModbus4 | Modbus/Properties/AssemblyInfo.cs | Modbus/Properties/AssemblyInfo.cs | using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("NModbus4")]
[assembly: AssemblyProduct("NModbus4")]
[assembly: AssemblyCompany("Maxwe11")]
[assembly: AssemblyCopyright("Licensed under MIT License.")]
[assembly: Assem... | using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("NModbus4")]
[assembly: AssemblyProduct("NModbus4")]
[assembly: AssemblyCompany("Maxwe11")]
[assembly: AssemblyCopyright("Licensed under MIT License.")]
[assembly: Assem... | mit | C# |
fa84fe57706e72eff4dfc0f576f5f830b44bc0a2 | Remove custom schema from IdentityRegistrar. | aspnetboilerplate/aspnetboilerplate-samples,aspnetboilerplate/aspnetboilerplate-samples,GutierrezDev/aspnetboilerplate-samples,aspnetboilerplate/aspnetboilerplate-samples,GutierrezDev/aspnetboilerplate-samples,aspnetboilerplate/aspnetboilerplate-samples,aspnetboilerplate/aspnetboilerplate-samples,aspnetboilerplate/aspn... | IdentityServerDemo/src/IdentityServerDemo.Core/Identity/IdentityRegistrar.cs | IdentityServerDemo/src/IdentityServerDemo.Core/Identity/IdentityRegistrar.cs | using IdentityServerDemo.Authorization;
using IdentityServerDemo.Authorization.Roles;
using IdentityServerDemo.Authorization.Users;
using IdentityServerDemo.Editions;
using IdentityServerDemo.MultiTenancy;
using Microsoft.Extensions.DependencyInjection;
namespace IdentityServerDemo.Identity
{
public static class ... | using IdentityServerDemo.Authorization;
using IdentityServerDemo.Authorization.Roles;
using IdentityServerDemo.Authorization.Users;
using IdentityServerDemo.Editions;
using IdentityServerDemo.MultiTenancy;
using Microsoft.Extensions.DependencyInjection;
namespace IdentityServerDemo.Identity
{
public static class ... | mit | C# |
4ed3533f51e7bbc2427f3a37c9d934fdf55719e1 | Add Windows.UI.ApplicationSettings to the using directives of MainPage.xaml.cs and clean up the code. | wangjun/windows-app,wangjun/windows-app | wallabag/wallabag.Windows/MainPage.xaml.cs | wallabag/wallabag.Windows/MainPage.xaml.cs | using wallabag.Common;
using wallabag.Views;
using Windows.UI.ApplicationSettings;
using Windows.UI.Xaml.Controls;
namespace wallabag
{
public sealed partial class MainPage : basicPage
{
public MainPage()
{
this.InitializeComponent();
SettingsPane.GetForCurrentView().Co... | using Windows.UI.Xaml.Controls;
using wallabag.Common;
using wallabag.Views;
namespace wallabag
{
public sealed partial class MainPage : basicPage
{
public MainPage()
{
this.InitializeComponent();
Windows.UI.ApplicationSettings.SettingsPane.GetForCurrentView().CommandsR... | mit | C# |
9d68a1eab82dd3fc9af930ab97b2fb2d0c38cb07 | Make PoEItemModCategory implement IReadOnlyList<PoEItemModList> | jcmoyer/Yeena | Yeena/PathOfExile/PoEItemModCategory.cs | Yeena/PathOfExile/PoEItemModCategory.cs | // Copyright 2013 J.C. Moyer
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to ... | // Copyright 2013 J.C. Moyer
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to ... | apache-2.0 | C# |
e7e40350a1d32d86e259e957096875a16863b2de | Bump to version 0.1.1. | FacilityApi/FacilityCSharp | SolutionInfo.cs | SolutionInfo.cs | using System.Reflection;
[assembly: AssemblyVersion("0.1.1.0")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCopyright("Copyright 2016 Ed Ball")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
| using System.Reflection;
[assembly: AssemblyVersion("0.1.0.0")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCopyright("Copyright 2016 Ed Ball")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
| mit | C# |
3e31196b9e2c985dc1b5c0dddca251f365287e3f | Check all commands for validation msg with Identifier strings, close #116 | kotorihq/kotori-core | KotoriCore/Commands/Project/CreateProjectKey.cs | KotoriCore/Commands/Project/CreateProjectKey.cs | using System.Collections.Generic;
using KotoriCore.Configurations;
using KotoriCore.Helpers;
namespace KotoriCore.Commands
{
/// <summary>
/// Create project key command.
/// </summary>
public class CreateProjectKey : Command
{
/// <summary>
/// The instance.
/// </summary>... | using System.Collections.Generic;
using KotoriCore.Configurations;
using KotoriCore.Helpers;
namespace KotoriCore.Commands
{
/// <summary>
/// Create project key command.
/// </summary>
public class CreateProjectKey : Command
{
/// <summary>
/// Gets the instance.
/// </sum... | mit | C# |
5a3903c1b8a32dad609072a61c84651344faf684 | Update assembly info for development of the next version | nanathan/ManeuverNodeSplitter | ManeuverNodeSplitter/Properties/AssemblyInfo.cs | ManeuverNodeSplitter/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("Ma... | 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("Ma... | mit | C# |
dc489d7ba198e9e4110dd603b713b349204097c9 | Remove unused method | wyldphyre/KaomojiTray | KaomojiTray/MainWindow.xaml.cs | KaomojiTray/MainWindow.xaml.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;... | apache-2.0 | C# |
a69bb797fbfb2f65d0caeee94bb222b1ad347cf9 | Return the value of the animation | martijn00/LottieXamarin,fabionuno/LottieXamarin,fabionuno/LottieXamarin,martijn00/LottieXamarin | Lottie.iOS/LOTAnimationView.cs | Lottie.iOS/LOTAnimationView.cs | using System;
using System.Threading.Tasks;
using Foundation;
namespace Airbnb.Lottie
{
public partial class LOTAnimationView
{
/// <summary>
/// Asynchronously play the animation.
/// </summary>
public async Task<bool> PlayAsync()
{
var tcs = new TaskComple... | using System;
using System.Threading.Tasks;
using Foundation;
namespace Airbnb.Lottie
{
public partial class LOTAnimationView
{
/// <summary>
/// Asynchronously play the animation.
/// </summary>
public async Task<bool> PlayAsync()
{
var tcs = new TaskComple... | apache-2.0 | C# |
520835b263bff83268c771815cd0974f7c823369 | Add comment to explain empty binding | kendaleiv/ui-specflow-selenium,kendaleiv/ui-specflow-selenium,kendaleiv/ui-specflow-selenium | Web.UI.Tests/GherkinTableSteps.cs | Web.UI.Tests/GherkinTableSteps.cs | using System;
using System.Collections.Generic;
using System.Linq;
using TechTalk.SpecFlow;
using TechTalk.SpecFlow.Assist;
using Xunit;
namespace Web.UI.Tests
{
[Binding]
public class GherkinTableSteps
{
private static IEnumerable<CourseInformation> Courses;
[Given(@"I have the course in... | using System;
using System.Collections.Generic;
using System.Linq;
using TechTalk.SpecFlow;
using TechTalk.SpecFlow.Assist;
using Xunit;
namespace Web.UI.Tests
{
[Binding]
public class GherkinTableSteps
{
private static IEnumerable<CourseInformation> Courses;
[Given(@"I have the course in... | mit | C# |
66956b0a60bac73c39185eb11c24759957986d0d | add scenario test | jwChung/Experimentalism,jwChung/Experimentalism | test/ExperimentalUnitTest/Scenario.cs | test/ExperimentalUnitTest/Scenario.cs | using System;
using System.Collections.Generic;
using System.Reflection;
using Xunit;
using Xunit.Extensions;
namespace Jwc.Experimental
{
public class Scenario
{
[Theorem]
public void TheoremOnMethodIndicatesTestCase()
{
Assert.True(true, "excuted.");
}
[T... | using Xunit;
namespace Jwc.Experimental
{
public class Scenario
{
[Theorem]
public void TheoremAttributeOnMethodIndicatesTestCase()
{
Assert.True(true, "excuted.");
}
}
} | mit | C# |
08e1dcda0c531c996e95a6a02241136629da9bfd | Update state string to Header referer | davidebbo/SimpleWAWS,projectkudu/TryAppService,fashaikh/SimpleWAWS,davidebbo/SimpleWAWS,projectkudu/TryAppService,projectkudu/SimpleWAWS,fashaikh/SimpleWAWS,projectkudu/SimpleWAWS,fashaikh/SimpleWAWS,davidebbo/SimpleWAWS,projectkudu/SimpleWAWS,projectkudu/TryAppService,fashaikh/SimpleWAWS,projectkudu/TryAppService,davi... | SimpleWAWS/Authentication/GoogleAuthProvider.cs | SimpleWAWS/Authentication/GoogleAuthProvider.cs | using System;
using System.Collections.Generic;
using System.Configuration;
using System.Globalization;
using System.Linq;
using System.Net;
using System.Text;
using System.Web;
namespace SimpleWAWS.Authentication
{
public class GoogleAuthProvider : BaseOpenIdConnectAuthProvider
{
public override stri... | using System;
using System.Collections.Generic;
using System.Configuration;
using System.Globalization;
using System.Linq;
using System.Net;
using System.Text;
using System.Web;
namespace SimpleWAWS.Authentication
{
public class GoogleAuthProvider : BaseOpenIdConnectAuthProvider
{
public override stri... | apache-2.0 | C# |
5bdd0277b7ed936d389f9024b499996d2117212b | Increase version number to 1.2.0.0. | TorbenRahbekKoch/SoftwarePassion.Common | Source/Projects/Core/Properties/AssemblyInfo.cs | Source/Projects/Core/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("Com... | 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("Com... | mit | C# |
f09a4be01798ecfe2bb2de7849a61fab4437ab33 | Update demo | sunkaixuan/SqlSugar | Src/Asp.Net/SqlServerTest/Demo/DemoD_DbFirst.cs | Src/Asp.Net/SqlServerTest/Demo/DemoD_DbFirst.cs | using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OrmTest
{
public class DemoD_DbFirst
{
public static void Init()
{
SqlSugarClient db = new SqlSugarClient(new ConnectionConfig()
{
DbType = Db... | using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OrmTest
{
public class DemoD_DbFirst
{
public static void Init()
{
SqlSugarClient db = new SqlSugarClient(new ConnectionConfig()
{
DbType = Db... | apache-2.0 | C# |
28b5f07273bd38469fa87b5379ccb115996ed4ca | Update tests | CareerHub/.NET-CareerHub-API-Client,CareerHub/.NET-CareerHub-API-Client | Test/API/Authorization/AuthorizationApiFacts.cs | Test/API/Authorization/AuthorizationApiFacts.cs | using CareerHub.Client.API.Authorization;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Xunit;
namespace CareerHub.Client.Tests.API.Authorization {
public class AuthorizationApiFacts {
[Fact]
public void Get_TokenInfo_Url() {
string access... | using CareerHub.Client.API.Authorization;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Xunit;
namespace CareerHub.Client.Tests.API.Authorization {
public class AuthorizationApiFacts {
[Fact]
public void Get_TokenInfo_Url() {
string access... | mit | C# |
a457cb90ffdea12b93178cbfaf3e381987862d9c | Improve PpwAuxiliaryDatabaseObject further (in progress) + rename IHbmMapping to IPpwHbmMapping | peopleware/net-ppwcode-vernacular-nhibernate | src/PPWCode.Vernacular.NHibernate.I.Tests/IntegrationTests/BaseQueryTests.cs | src/PPWCode.Vernacular.NHibernate.I.Tests/IntegrationTests/BaseQueryTests.cs | // Copyright 2017 by PeopleWare n.v..
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed... | // Copyright 2017 by PeopleWare n.v..
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed... | apache-2.0 | C# |
4f48aa3d2e72b4c8647c8576a09eeee246885511 | Use interface for bind/unbind instead of raw component | ppy/osu-framework,ZLima12/osu-framework,ZLima12/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,peppy/osu-framework | osu.Framework/Audio/AdjustableAudioComponent.cs | osu.Framework/Audio/AdjustableAudioComponent.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.Bindables;
namespace osu.Framework.Audio
{
/// <summary>
/// An audio component which allows for basic bindable adjustments to be applied.
... | // 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.Bindables;
namespace osu.Framework.Audio
{
/// <summary>
/// An audio component which allows for basic bindable adjustments to be applied.
... | mit | C# |
a3f29625587fd0cb52c8d4042dd1b48f82d62db2 | Disable "deselect all mods" button if none are selected | ppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,ppy/osu | osu.Game/Overlays/Mods/DeselectAllModsButton.cs | osu.Game/Overlays/Mods/DeselectAllModsButton.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Bindables;
using osu.Framework.Input.Bindings;
using osu.Framework.Input.Events;
using osu.Game.G... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Bindables;
using osu.Framework.Input.Bindings;
using osu.Framework.Input.Events;
using osu.Game.G... | mit | C# |
d7417312fb8084969192fab54c5a708b0ffe0a9e | Fix nuget package order. | avidafinance/FinancialUtility | Avida.FinancialUtility.Tests/SwedenTests.cs | Avida.FinancialUtility.Tests/SwedenTests.cs | using Avida.FinancialUtility.NationalIdentification;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Avida.FinancialUtility.Tests
{
[TestClass]
public class SwedenTests
{
... | using Avida.FinancialUtility.NationalIdentification;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Avida.FinancialUtility.Tests
{
[TestClass]
public class SwedenTests
{
... | apache-2.0 | C# |
8500e39b1eb1dad1904a66649d959bfd4d0c7544 | test 2 | MatthewKapteyn/SubmoduleTest | SubmoduleTest/IwantTOStashThis.cs | SubmoduleTest/IwantTOStashThis.cs | using System;
using System.Collections.Generic;
using System.Text;
namespace SubmoduleTest
{
class IwantTOStashThis
{
// This change is lovely, keep this one
// generic asdfjoa asdfk;jasd
}
}
| using System;
using System.Collections.Generic;
using System.Text;
namespace SubmoduleTest
{
class IwantTOStashThis
{
// This change is lovely, keep this one
}
}
| unlicense | C# |
c5d2dc2f6a4e0751d0592f0ea028232017c5e34e | Remove unnecessary newline | smoogipooo/osu,DrabWeb/osu,johnneijzen/osu,DrabWeb/osu,peppy/osu,ZLima12/osu,ppy/osu,DrabWeb/osu,peppy/osu-new,naoey/osu,UselessToucan/osu,ZLima12/osu,EVAST9919/osu,NeoAdonis/osu,smoogipoo/osu,smoogipoo/osu,UselessToucan/osu,2yangk23/osu,ppy/osu,naoey/osu,ppy/osu,naoey/osu,johnneijzen/osu,NeoAdonis/osu,peppy/osu,NeoAdo... | osu.Game/Database/IHasFiles.cs | osu.Game/Database/IHasFiles.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 System.Collections.Generic;
namespace osu.Game.Database
{
/// <summary>
/// A model that contains a list of files it is responsible for.
/// </summar... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
namespace osu.Game.Database
{
/// <summary>
/// A model that contains a list of files it is responsible for.
/// </summar... | mit | C# |
9990d3d35048a83d765928e2c40528b0f86ec2d3 | Remove old comments | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Fluent/ViewModels/MainViewModel.cs | WalletWasabi.Fluent/ViewModels/MainViewModel.cs | using NBitcoin;
using ReactiveUI;
using System.Reactive;
using WalletWasabi.Gui.ViewModels;
using WalletWasabi.Fluent.ViewModels.Dialogs;
using Global = WalletWasabi.Gui.Global;
namespace WalletWasabi.Fluent.ViewModels
{
public class MainViewModel : ViewModelBase, IScreen, IDialogHost
{
private Global _global;
p... | using NBitcoin;
using ReactiveUI;
using System.Reactive;
using WalletWasabi.Gui.ViewModels;
using WalletWasabi.Fluent.ViewModels.Dialogs;
using Global = WalletWasabi.Gui.Global;
namespace WalletWasabi.Fluent.ViewModels
{
public class MainViewModel : ViewModelBase, IScreen, IDialogHost
{
private Global _global;
p... | mit | C# |
507f5416eb7b8d4bab818c020a30d1b2ecceafa4 | Store extracted pages in subfolder | eggapauli/MyDocs,eggapauli/MyDocs | WindowsStore/Service/PdfPageExtractorService.cs | WindowsStore/Service/PdfPageExtractorService.cs | using MyDocs.Common.Contract.Service;
using MyDocs.Common.Model.Logic;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Windows.Data.Pdf;
using Windows.Storage;
namespace MyDocs.WindowsStore.Service
{
public class PdfPageExtractorService : IPa... | using MyDocs.Common.Contract.Service;
using MyDocs.Common.Model.Logic;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Windows.Data.Pdf;
using Windows.Storage;
namespace MyDocs.WindowsStore.Service
{
public class PdfPageExtractorService : IPa... | mit | C# |
e65cb9c5fa9c306e1907a71e5c86d1369afa689b | fix 2s instead of 3 for stun and ice | kangoo13/GameToolBJTU,kangoo13/GameToolBJTU,kangoo13/GameToolBJTU,kangoo13/GameToolBJTU | Unity_TD/Assets/MonsterInfo.cs | Unity_TD/Assets/MonsterInfo.cs | using UnityEngine;
using System.Collections;
public class MonsterInfo : MonoBehaviour {
public bool isPoisoned = false;
public bool isImmunedToPoison = false;
public bool isImmunedToIce = false;
public bool isImmunedToStunned = false;
public bool isRegenerable = false;
public void touchedByIce()
{
if (!isI... | using UnityEngine;
using System.Collections;
public class MonsterInfo : MonoBehaviour {
public bool isPoisoned = false;
public bool isImmunedToPoison = false;
public bool isImmunedToIce = false;
public bool isImmunedToStunned = false;
public bool isRegenerable = false;
void Start()
{
}
public void touc... | mit | C# |
79b6a2d37b7de1a86f3b19135e5e9d79b19472ad | Disable GetNextInfoId_Max test, takes forever | ermau/WinRT.NET | WinRT.NET/Tests/AsyncInfoTests.cs | WinRT.NET/Tests/AsyncInfoTests.cs | //
// IAsyncInfo.cs
//
// Author:
// Eric Maupin <me@ermau.com>
//
// Copyright (c) 2011 Eric Maupin
//
// 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... | //
// IAsyncInfo.cs
//
// Author:
// Eric Maupin <me@ermau.com>
//
// Copyright (c) 2011 Eric Maupin
//
// 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# |
5fd7722c4b2f2bbf2277c107f179ea63d806aed5 | add Foreground, Background | TakeAsh/cs-WpfUtility | WpfUtility/DataGridExAttribute.cs | WpfUtility/DataGridExAttribute.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TakeAshUtility;
namespace WpfUtility {
[AttributeUsage(AttributeTargets.Property)]
public class DataGridExAttribute :
Attribute {
public DataGridExAttribute() { }
public DataGri... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TakeAshUtility;
namespace WpfUtility {
[AttributeUsage(AttributeTargets.Property)]
public class DataGridExAttribute :
Attribute {
public DataGridExAttribute() { }
public DataGri... | mit | C# |
f337cace8c57127963d6b6748cc318ddefd5a18d | update log file name | zhouyongtao/my_aspnetmvc_learning,zhouyongtao/my_aspnetmvc_learning | my_aspnetmvc_learning/Controllers/ImageController.cs | my_aspnetmvc_learning/Controllers/ImageController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using NLog;
namespace my_aspnetmvc_learning.Controllers
{
public class ImageController : Controller
{
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
// GET: U... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace my_aspnetmvc_learning.Controllers
{
public class ImageController : Controller
{
// GET: Upload
public ActionResult Index()
{
return View();
}
... | mit | C# |
f4d2262cf177c755ca0509069df5f6349c9cef4b | Add Genre model implementation. | TeamYAGNI/LibrarySystem | LibrarySystem/LibrarySystem.Models/Genre.cs | LibrarySystem/LibrarySystem.Models/Genre.cs | // <copyright file="Genre.cs" company="YAGNI">
// All rights reserved.
// </copyright>
// <summary>Holds implementation of Genre model.</summary>
using System.Collections.Generic;
namespace LibrarySystem.Models
{
/// <summary>
/// Represent a <see cref="Genre"/> entity model.
/// </summary>
public cl... | namespace LibrarySystem.Models
{
public class Genre
{
}
} | mit | C# |
dfe5734a5d8aea9ca238ae9ced813bc1175ce76d | Fix highlight deserialization | synhershko/HebrewSearch | NElasticsearch/NElasticsearch/Models/Hit.cs | NElasticsearch/NElasticsearch/Models/Hit.cs | using System.Collections.Generic;
using System.Diagnostics;
namespace NElasticsearch.Models
{
/// <summary>
/// Individual hit response from ElasticSearch.
/// </summary>
[DebuggerDisplay("{_type} in {_index} id {_id}")]
public class Hit<T>
{
public string _index { get; set; }
... | using System.Collections.Generic;
using System.Diagnostics;
namespace NElasticsearch.Models
{
/// <summary>
/// Individual hit response from ElasticSearch.
/// </summary>
[DebuggerDisplay("{_type} in {_index} id {_id}")]
public class Hit<T>
{
public string _index { get; set; }
... | agpl-3.0 | C# |
30f635c1bfa9a0a5b8a35ef91d80cacd91e23c28 | Fix for StringValidator InvalidCharacters (from Nels_P_Olsen) | flcdrg/XSDExtractor | Parsers/Validators/StringValidatorParser.cs | Parsers/Validators/StringValidatorParser.cs | #region License
/*
JFDI the .Net Job Framework (http://jfdi.sourceforge.net)
Copyright (C) 2006 Steven Ward (steve.ward.uk@gmail.com)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
v... | #region License
/*
JFDI the .Net Job Framework (http://jfdi.sourceforge.net)
Copyright (C) 2006 Steven Ward (steve.ward.uk@gmail.com)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
v... | lgpl-2.1 | C# |
8f60f00fec76b782499a8dc62e5681ebdee4a49f | add runtimemeshcomponent to build file | indyfree/MoleculeVR,indyfree/MoleculeVR,indyfree/MoleculeVR | Source/MeshGenerator/MeshGenerator.Build.cs | Source/MeshGenerator/MeshGenerator.Build.cs | // Fill out your copyright notice in the Description page of Project Settings.
using UnrealBuildTool;
public class MeshGenerator : ModuleRules
{
public MeshGenerator(TargetInfo Target)
{
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "ProceduralMeshComponent" });... | // Fill out your copyright notice in the Description page of Project Settings.
using UnrealBuildTool;
public class MeshGenerator : ModuleRules
{
public MeshGenerator(TargetInfo Target)
{
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "ProceduralMeshComponent" });... | mit | C# |
eb76aeed645c5984d978523aa0892fb2816dfacf | Revert "Introduced TryValidate<T>() extension method for HttpRequest which accompanies Validate<T>(), but is more flexible, because it allows to explicitly handle the case when model validator is missing. (#230)" (#238) | jchannon/Botwin | src/Carter/ModelBinding/ValidationExtensions.cs | src/Carter/ModelBinding/ValidationExtensions.cs | namespace Carter.ModelBinding
{
using System;
using System.Collections.Generic;
using System.Linq;
using FluentValidation.Results;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
public static class ValidationExtensions
{
/// <summary>
//... | namespace Carter.ModelBinding
{
using System;
using System.Collections.Generic;
using System.Linq;
using FluentValidation.Results;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
public static class ValidationExtensions
{
/// <summary>
//... | mit | C# |
5e08cdb62513e23faa61a22866b43615ab30ceea | update 'DataGenericCache' package version | jeduardocosta/data-generic-cache,jeduardocosta/DataGenericCache | src/DataGenericCache/Properties/AssemblyInfo.cs | src/DataGenericCache/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("Da... | 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("Da... | mit | C# |
516911f820589462e2db5eea8b1c2481de00a7e0 | add NeutralResourcesLanguageAttribute | Weswit/Lightstreamer-example-StockList-client-winphone,Lightstreamer/Lightstreamer-example-StockList-client-winphone | WP7StockListDemo/Properties/AssemblyInfo.cs | WP7StockListDemo/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;
[assembly: AssemblyTitle("Lightstreamer Windows Phone Demo")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: Asse... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Lightstreamer Windows Phone Demo")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Lightstream... | apache-2.0 | C# |
725d72d9d4e2ff70d6e4e2fd0feaa539326e36f3 | Address feedback. | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/Tor/Http/ClearnetHttpClient.cs | WalletWasabi/Tor/Http/ClearnetHttpClient.cs | using System;
using System.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
namespace WalletWasabi.Tor.Http
{
/// <summary>
/// HTTP client implementation based on .NET's <see cref="HttpClient"/> which provides least privacy for Wasabi users,
/// as HTTP requests are being sent over... | using System;
using System.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
namespace WalletWasabi.Tor.Http
{
/// <summary>
/// HTTP client implementation based on .NET's <see cref="HttpClient"/> which provides least privacy for Wasabi users,
/// as HTTP requests are being sent over... | mit | C# |
efa7167550d7c9a2fd1384b7d84dd08fa3b23324 | Update EntityFrameworkConvertToDbGeometry.cs | GeoJSON-Net/GeoJSON.Net.Contrib | src/GeoJSON.Net.Contrib.EntityFramework/EntityFrameworkConvertToDbGeometry.cs | src/GeoJSON.Net.Contrib.EntityFramework/EntityFrameworkConvertToDbGeometry.cs | using System.Data.Entity.Spatial;
using GeoJSON.Net.Geometry;
using GeoJSON.Net.Contrib.Wkb.Conversions;
namespace GeoJSON.Net.Contrib.EntityFramework
{
public static partial class EntityFrameworkConvert
{
[Obsolete("This method will be removed in future releases, consider migrating now to the... | using System.Data.Entity.Spatial;
using GeoJSON.Net.Geometry;
using GeoJSON.Net.Contrib.Wkb.Conversions;
namespace GeoJSON.Net.Contrib.EntityFramework
{
public static partial class EntityFrameworkConvert
{
public static DbGeometry ToDbGeometry(this IGeometryObject geometryObject, int coordinateSyste... | mit | C# |
a95d48fa141b8f5dfec6c03d4c2e29bb33c8506e | change h4 to h2 | smbc-digital/iag-webapp,smbc-digital/iag-webapp,smbc-digital/iag-webapp | src/StockportWebapp/Views/Shared/InlineQuote.cshtml | src/StockportWebapp/Views/Shared/InlineQuote.cshtml | @model StockportWebapp.Models.InlineQuote
<div class="inline-quote-container">
<img src="@Model.Image" alt="@Model.ImageAltText" />
<h2>@Model.Author</h2>
<div class="quote-body">
<span class="green open fa fa-2x fa-quote-left" aria-hidden="true"></span>
<p class="lead-paragraph">@Model.Quo... | @model StockportWebapp.Models.InlineQuote
<div class="inline-quote-container">
<img src="@Model.Image" alt="@Model.ImageAltText" />
<h4>@Model.Author</h4>
<div class="quote-body">
<span class="green open fa fa-2x fa-quote-left" aria-hidden="true"></span>
<p class="lead-paragraph">@Model.Quo... | mit | C# |
b471be128ee1e420bdec690128859f862e747941 | Fix typos in cluster reroute explanation | cstlaurent/elasticsearch-net,adam-mccoy/elasticsearch-net,robrich/elasticsearch-net,adam-mccoy/elasticsearch-net,jonyadamit/elasticsearch-net,geofeedia/elasticsearch-net,joehmchan/elasticsearch-net,mac2000/elasticsearch-net,joehmchan/elasticsearch-net,SeanKilleen/elasticsearch-net,starckgates/elasticsearch-net,wawrzyn/... | src/Nest/Domain/Cluster/ClusterRerouteExplanation.cs | src/Nest/Domain/Cluster/ClusterRerouteExplanation.cs | using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Nest
{
[JsonObject]
public class ClusterRerouteExplanation
{
[JsonProperty("command")]
public string Command { get; set; }
[JsonProperty("parameters")]
public ClusterRerouteParameters P... | using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Nest
{
[JsonObject]
public class ClusterRerouteExplanation
{
[JsonProperty("command")]
public string Comand { get; set; }
[JsonProperty("parameters")]
public ClusterRerouteParameters Pa... | apache-2.0 | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.