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 |
|---|---|---|---|---|---|---|---|---|
2bb4fccc147f25f88492b99d3c7d3437500485c7 | add necessary game data to the Main window | svmnotn/cuddly-octo-adventure | Game/UI/MainWindow.cs | Game/UI/MainWindow.cs | namespace COA.Game.UI {
using System;
using System.Windows.Forms;
using Controls;
using Data;
internal partial class MainWindow : Form {
UserControl current;
internal UserControl Current {
get { return current; }
set {
if(!Controls.Contains(value)) {
Controls.Add(value)... | namespace COA.Game.UI {
using System;
using System.Windows.Forms;
using Data;
internal partial class MainWindow : Form {
Archive archive;
UserControl current;
internal UserControl Current {
get { return current; }
set {
if(current != null) {
current.Visible = false;
... | mit | C# |
db5099de3ad38a6a986f4870ed30e4e97df51bfa | Add missing licence header | peppy/osu,peppy/osu,ppy/osu,peppy/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu-new,smoogipooo/osu | osu.Game.Tests/Database/GeneralUsageTests.cs | osu.Game.Tests/Database/GeneralUsageTests.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.Threading;
using System.Threading.Tasks;
using NUnit.Framework;
#nullable enable
namespace osu.Game.Tests.Database
{
[TestFixture]
pu... | using System;
using System.Threading;
using System.Threading.Tasks;
using NUnit.Framework;
#nullable enable
namespace osu.Game.Tests.Database
{
[TestFixture]
public class GeneralUsageTests : RealmTest
{
/// <summary>
/// Just test the construction of a new database works.
/// </sum... | mit | C# |
54d8dd34a375fb9df5b4eea32e73741a9bae9885 | Add the accumulator addressing mode. | joshpeterson/mos,joshpeterson/mos,joshpeterson/mos | Mos6510/Instructions/AddressingMode.cs | Mos6510/Instructions/AddressingMode.cs | namespace Mos6510.Instructions
{
public enum AddressingMode
{
Absolute,
AbsoluteX,
AbsoluteY,
Accumulator,
Immediate,
Implied,
IndirectX,
IndirectY,
Zeropage,
ZeropageX,
ZeropageY,
}
}
| namespace Mos6510.Instructions
{
public enum AddressingMode
{
Implied,
Immediate,
Absolute,
AbsoluteX,
AbsoluteY,
Zeropage,
ZeropageX,
ZeropageY,
IndirectX,
IndirectY
}
}
| mit | C# |
9be3f71384e6d6ab8d2e07ca4f79746d70039c79 | Update Exercise8B.cs | lizaamini/CSharpExercises | Sheet-8/Exercise8B.cs | Sheet-8/Exercise8B.cs | using System;
namespace Exercise8B
{
class MainClass
{
public static void Main (string[] args)
{
Console.WriteLine ("Please enter a 7-bit binary number: ");
String binary = Console.ReadLine ();
while (binary.Length != 7) {
Console.WriteLine ("Please enter a 7-bit binary number: ");
binary = Con... | mit | C# | |
068fe1e2538b6b7c30da527874826d7c84045427 | Add PrintToChat method for 7 Days to Die thanks to @bawNg | Visagalis/Oxide,LaserHydra/Oxide,bawNg/Oxide,Visagalis/Oxide,bawNg/Oxide,MSylvia/Oxide,Nogrod/Oxide-2,ApocDev/Oxide,Nogrod/Oxide-2,ApocDev/Oxide,MSylvia/Oxide,LaserHydra/Oxide | Oxide.Ext.SevenDays/SevenDaysPlugin.cs | Oxide.Ext.SevenDays/SevenDaysPlugin.cs | namespace Oxide.Plugins
{
public abstract class SevenDaysPlugin : CSharpPlugin
{
GameManager _gameManager;
protected GameManager gameManager
{
get
{
if (_gameManager == null)
_gameManager = UnityEngine.Object.FindObjectOfType<G... | namespace Oxide.Plugins
{
public abstract class SevenDaysPlugin : CSharpPlugin
{
}
}
| mit | C# |
3bff2141ce6d29020c5e2ad8f297dedab6ca087c | Update AssemblyInfo.cs | DevExpress/BigQueryProvider | BigQueryProvider/Properties/AssemblyInfo.cs | BigQueryProvider/Properties/AssemblyInfo.cs | /*
Copyright 2015 Developer Express Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agree... | /*
Copyright 2015 Developer Express Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agree... | apache-2.0 | C# |
d5490c37a709bd468db6645b525f740a6076f664 | Fix failing when passing null | angellaa/RetailStoreSpike | RetailStore/RetailStore/RetailStore.cs | RetailStore/RetailStore/RetailStore.cs | using System.Collections.Generic;
namespace RetailStore
{
public class RetailStore
{
private readonly Screen m_Screen;
private readonly Dictionary<string, string> m_Products;
public RetailStore(Screen screen, Dictionary<string, string> products)
{
m_Screen = screen... | using System.Collections.Generic;
namespace RetailStore
{
public class RetailStore
{
private readonly Screen m_Screen;
private readonly Dictionary<string, string> m_Products;
public RetailStore(Screen screen, Dictionary<string, string> products)
{
m_Screen = screen... | mit | C# |
b3bd17ca45e82afb696f34d931070f791f6ddc0d | Call the ResolveDependency method on the scope (#30) | mgrosperrin/commandlineparser | src/MGR.CommandLineParser/DependencyResolverCommandActivator.cs | src/MGR.CommandLineParser/DependencyResolverCommandActivator.cs | using System;
using System.Reflection;
using MGR.CommandLineParser.Command;
namespace MGR.CommandLineParser
{
/// <summary>
/// Implementation of <see cref="ICommandActivator"/> based on <see cref="DependencyResolver"/>.
/// </summary>
public sealed class DependencyResolverCommandActivator : ICommandA... | using System;
using System.Reflection;
using MGR.CommandLineParser.Command;
namespace MGR.CommandLineParser
{
/// <summary>
/// Implementation of <see cref="ICommandActivator"/> based on <see cref="DependencyResolver"/>.
/// </summary>
public sealed class DependencyResolverCommandActivator : ICommandA... | mit | C# |
92c3097d497c6b80ca795a81539cb608fba06674 | remove unnecessary restriction | ResourceDataInc/Simpler.Data,ResourceDataInc/Simpler.Data,gregoryjscott/Simpler,ResourceDataInc/Simpler.Data,gregoryjscott/Simpler | Simpler/TitoTask.cs | Simpler/TitoTask.cs | using System;
using Simpler.Injection;
namespace Simpler
{
[InjectSubTasks]
public abstract class TitoTask<TI, TO> : Task
{
public override dynamic Inputs
{
get { return InputsModel; }
set
{
InputsModel = (TI)Activator.CreateInstance(type... | using System;
using Simpler.Injection;
namespace Simpler
{
[InjectSubTasks]
public abstract class TitoTask<TI, TO> : Task where TI : class where TO : class
{
public override dynamic Inputs
{
get { return InputsModel; }
set
{
InputsModel =... | mit | C# |
7af35e075dd0c741235d28e05bb597de66a935dc | Add doc and degree | aloisdg/edx-csharp | edX/Module1/Program.cs | edX/Module1/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
namespace Module1
{
class Program
{
/// <summary>
/// Facebook allow 71 gender options
/// </summary>
enum Gender
{
Male,
Female,
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Module1
{
class Program
{
enum Gender
{
Male,
Female,
Other
}
enum SchoolStatus
{
Student,
Professor,
Other
}
class Address
{
public string AddressLine... | mit | C# |
5218e6be97aa20428104366afb34bf6e0800c451 | Add IEmbed#ToEmbedBuilder extension method (#863) | AntiTcb/Discord.Net,RogueException/Discord.Net | src/Discord.Net.Rest/Extensions/EmbedBuilderExtensions.cs | src/Discord.Net.Rest/Extensions/EmbedBuilderExtensions.cs | using System;
namespace Discord
{
public static class EmbedBuilderExtensions
{
public static EmbedBuilder WithColor(this EmbedBuilder builder, uint rawValue) =>
builder.WithColor(new Color(rawValue));
public static EmbedBuilder WithColor(this EmbedBuilder builder, byte r, byte g, b... | namespace Discord
{
public static class EmbedBuilderExtensions
{
public static EmbedBuilder WithColor(this EmbedBuilder builder, uint rawValue) =>
builder.WithColor(new Color(rawValue));
public static EmbedBuilder WithColor(this EmbedBuilder builder, byte r, byte g, byte b) =>
... | mit | C# |
dcc5d7fe43aa53abcb17f9ab2ee061d1d9b916a2 | Update version numbers and copyright dates in AssemblyInfo.cs files. | eylvisaker/AgateLib | Drivers/AgateMDX/Properties/AssemblyInfo.cs | Drivers/AgateMDX/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | mit | C# |
1df0952797cd9bd976a350eea04fa545f0b2616e | Add new fields | SoftFx/TTWebClient-CSharp | TTWebClient/Domain/TTHistoryRequest.cs | TTWebClient/Domain/TTHistoryRequest.cs | using System;
namespace TTWebClient.Domain
{
/// <summary>
/// Streaming directions
/// </summary>
public enum TTStreamingDirections
{
Forward,
Backward
}
/// <summary>
/// Trade history request
/// </summary>
public class TTTradeHistoryRequest
{
... | using System;
namespace TTWebClient.Domain
{
/// <summary>
/// Streaming directions
/// </summary>
public enum TTStreamingDirections
{
Forward,
Backward
}
/// <summary>
/// Trade history request
/// </summary>
public class TTTradeHistoryRequest
{
... | mit | C# |
73545125ed1c688a73083f1fb208cee6abb6abf6 | Use TempyConfiguration.Configuration | fxlv/tempy,fxlv/tempy,fxlv/tempy,fxlv/tempy | TempyAPI/Program.cs | TempyAPI/Program.cs | using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Serilog;
using TempyLogger;
namespace TempyAPI
{
public class Program
{
public static void Main(string[] args)
{
TempyConfiguration.Configuration tConfiguration = new Tem... | using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Serilog;
using TempyWorker;
namespace TempyAPI
{
public class Program
{
public static void Main(string[] args)
{
TempyConfiguration tConfiguration = new TempyConfigurati... | isc | C# |
40019e91c0ffd61061a17e940631f81e4a85f20f | fix duplicate logic | Pathoschild/StardewMods | TractorMod/Framework/CustomSaveData.cs | TractorMod/Framework/CustomSaveData.cs | using System.Collections.Generic;
using System.Linq;
using Microsoft.Xna.Framework;
using StardewValley.Buildings;
namespace TractorMod.Framework
{
/// <summary>Contains custom data that's stored outside the save file to avoid issues.</summary>
internal class CustomSaveData
{
/*********
**... | using System.Collections.Generic;
using System.Linq;
using Microsoft.Xna.Framework;
using StardewValley.Buildings;
namespace TractorMod.Framework
{
/// <summary>Contains custom data that's stored outside the save file to avoid issues.</summary>
internal class CustomSaveData
{
/*********
**... | mit | C# |
9a09c97457bfbd233ee29f961d5326c4ee054b41 | Fix "Barrel Roll" tooltip not limiting decimal places for spin speed | NeoAdonis/osu,ppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,peppy/osu,ppy/osu | osu.Game/Rulesets/Mods/ModBarrelRoll.cs | osu.Game/Rulesets/Mods/ModBarrelRoll.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.Bindables;
using osu.Framework.Extensions;
using osu.Framework.Graphics;
using osu.Game.Configuration;
using osu.Game.Rulesets.Objects;... | // 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.Bindables;
using osu.Framework.Extensions;
using osu.Framework.Graphics;
using osu.Game.Configuration;
using osu.Game.Rulesets.Objects;... | mit | C# |
04fe4a0c5792c5c76f8e87586cb81ecd052eb276 | Fix RectangleNode bounds. | SuperJMN/Avalonia,Perspex/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,grokys/Perspex,wieslawsoltes/Perspex,wieslawsoltes/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,grokys/Perspex,wieslawsoltes/Perspex,SuperJMN/Avalonia,Perspex/Perspex,jkoritzinsky/Avalonia,jkoritzinsky/A... | src/Avalonia.Visuals/Rendering/SceneGraph/RectangleNode.cs | src/Avalonia.Visuals/Rendering/SceneGraph/RectangleNode.cs | // Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using System;
using Avalonia.Media;
namespace Avalonia.Rendering.SceneGraph
{
public class RectangleNode : IGeometryNode
{
public Rectan... | // Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using System;
using Avalonia.Media;
namespace Avalonia.Rendering.SceneGraph
{
public class RectangleNode : IGeometryNode
{
public Rectan... | mit | C# |
747037d006bd173a3dc322cce01c851536da4580 | Improve 'Non found errors' module description | ChristopherJennings/KInspector,KenticoBSoltis/KInspector,ChristopherJennings/KInspector,JosefDvorak/KInspector,pnmcosta/KInspector,petrsvihlik/KInspector,KenticoBSoltis/KInspector,martbrow/KInspector,pnmcosta/KInspector,ChristopherJennings/KInspector,petrsvihlik/KInspector,JosefDvorak/KInspector,pnmcosta/KInspector,Ken... | KInspector.Modules/Modules/EventLog/PageNotFoundsModule.cs | KInspector.Modules/Modules/EventLog/PageNotFoundsModule.cs | using System;
using Kentico.KInspector.Core;
namespace Kentico.KInspector.Modules
{
public class PageNotFoundsModule : IModule
{
public ModuleMetadata GetModuleMetadata()
{
return new ModuleMetadata
{
Name = "Not found errors (404)",
Sup... | using System;
using Kentico.KInspector.Core;
namespace Kentico.KInspector.Modules
{
public class PageNotFoundsModule : IModule
{
public ModuleMetadata GetModuleMetadata()
{
return new ModuleMetadata
{
Name = "Not found errors (404)",
Sup... | mit | C# |
9b6ea72eb2d0c4724562e6d294aa01da34e8bad4 | Edit DataQueue.cs | 60071jimmy/UartOscilloscope,60071jimmy/UartOscilloscope | QueueDataGraphic/QueueDataGraphic/CSharpFiles/DataQueue.cs | QueueDataGraphic/QueueDataGraphic/CSharpFiles/DataQueue.cs | /********************************************************************
* Develop by Jimmy Hu *
* This program is licensed under the Apache License 2.0. *
* DataQueue.cs *
* 本檔案建立繪圖資料佇列單元物件 *
********************************************************************
*/
using System;
us... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QueueDataGraphic.CSharpFiles
{ // namespace start
class DataQueue
{
}
} ... | apache-2.0 | C# |
7f4bfad10a11e6b9bf8a3813a30cb1e77e34ae4f | fix for broken caustics reference | John3/Torque3D,Duion/Torque3D,chaigler/Torque3D,FITTeamIndecisive/Torque3D,Phantom139/Torque3D,GarageGames/Torque3D,Will-of-the-Wisp/Torque3D,Bloodknight/Torque3D,aaravamudan2014/Torque3D,GarageGames/Torque3D,aaravamudan2014/Torque3D,Azaezel/Torque3D,ValtoGameEngines/Torque3D,rextimmy/Torque3D,Bloodknight/Torque3D,Gara... | Templates/Full/game/core/scripts/client/postFx/caustics.cs | Templates/Full/game/core/scripts/client/postFx/caustics.cs | //-----------------------------------------------------------------------------
// Copyright (c) 2012 GarageGames, LLC
//
// 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 restrictio... | //-----------------------------------------------------------------------------
// Copyright (c) 2012 GarageGames, LLC
//
// 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 restrictio... | mit | C# |
0f530a3d02eaba9a41039f9b599410b8512c7079 | add redis to controller to get stats | agrc/api.mapserv.utah.gov,agrc/api.mapserv.utah.gov,agrc/api.mapserv.utah.gov,agrc/api.mapserv.utah.gov | WebAPI.Dashboard/Areas/admin/Controllers/HomeController.cs | WebAPI.Dashboard/Areas/admin/Controllers/HomeController.cs | using System.Linq;
using System.Web.Mvc;
using Raven.Client;
using StackExchange.Redis;
using WebAPI.Common.Models.Raven.Admin;
using WebAPI.Dashboard.Controllers;
namespace WebAPI.Dashboard.Areas.admin.Controllers
{
[Authorize]
public class HomeController : RavenController
{
private readonly Conn... | using System.Linq;
using System.Web.Mvc;
using Raven.Client;
using WebAPI.Common.Models.Raven.Admin;
using WebAPI.Dashboard.Controllers;
namespace WebAPI.Dashboard.Areas.admin.Controllers
{
[Authorize]
public class HomeController : RavenController
{
public HomeController(IDocumentStore store)
... | mit | C# |
bffc0e6c799b812540d819423bda1076ed63967b | Define the 'return' operator | jonathanvdc/cs-wasm,jonathanvdc/cs-wasm | libwasm/Instructions/Operators.cs | libwasm/Instructions/Operators.cs | using System.Collections.Generic;
namespace Wasm.Instructions
{
/// <summary>
/// A collection of operator definitions.
/// </summary>
public static class Operators
{
static Operators()
{
opsByOpCode = new Dictionary<byte, Operator>();
Unreachable = Register... | using System.Collections.Generic;
namespace Wasm.Instructions
{
/// <summary>
/// A collection of operator definitions.
/// </summary>
public static class Operators
{
static Operators()
{
opsByOpCode = new Dictionary<byte, Operator>();
Unreachable = Register... | mit | C# |
7300a72904edb9881116bfd499f9f92d4e50687e | Update 20180327.LuckWheelManager.cs | twilightspike/cuddly-disco,twilightspike/cuddly-disco | main/20180327.LuckWheelManager.cs | main/20180327.LuckWheelManager.cs | using UnityEngine;
using UnityEngine.UI;
using System.Collections;
using System.Collections.Generic;
using System;
public class LuckWheelManager: MonoBehaviour{
/*stuffset*/
private bool _beStarted;
private float[] _angleSector;
private float _angleFinal;
private float _angleBegin;
private float _lerpRotateTim... | using UnityEngine;
using UnityEngine.UI;
using System.Collections;
using System.Collections.Generic;
using System;
public class LuckWheelManager: MonoBehaviour{
/*stuffset*/
private bool _beStarted;
private float[] _angleSector;
private float _angleFinal;
private float _angleBegin;
private float _lerpRotateTim... | mit | C# |
0d71903aef9da89dcd1a5e18a5e53bd6f60db866 | add methods to interface | aloisdeniel/Mvvmicro | Sources/Mvvmicro/Dependencies/IContainer.cs | Sources/Mvvmicro/Dependencies/IContainer.cs | namespace Mvvmicro
{
using System;
/// <summary>
/// A container for managing dependencies between objects.
/// </summary>
public interface IContainer
{
/// <summary>
/// Register a factory for the given type.
/// </summary>
/// <returns>The register.</returns>
... | namespace Mvvmicro
{
using System;
/// <summary>
/// A container for managing dependencies between objects.
/// </summary>
public interface IContainer
{
/// <summary>
/// Register a factory for the given type.
/// </summary>
/// <returns>The register.</returns>
... | mit | C# |
121b7a497c44c2eb7c8c748e33c98e140eefd27d | Move back to list link | mattgwagner/alert-roster | alert-roster.web/Views/Home/New.cshtml | alert-roster.web/Views/Home/New.cshtml | @model alert_roster.web.Models.Message
@{
ViewBag.Title = "Create New Message";
}
<h2>@ViewBag.Title</h2>
<div>
@Html.ActionLink("Back to List", "Index")
</div>
@using (Html.BeginForm("New", "Home", FormMethod.Post))
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<h4>Message</h4... | @model alert_roster.web.Models.Message
@{
ViewBag.Title = "Create New Message";
}
<h2>@ViewBag.Title</h2>
@using (Html.BeginForm("New", "Home", FormMethod.Post))
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<h4>Message</h4>
<hr />
@Html.ValidationSummary(true)
... | mit | C# |
ddb48a190cdce70615914d6da4f1d867b334fc00 | Fix `Quantity` to be nullable on `SubscriptionSchedulePhaseItem` | stripe/stripe-dotnet | src/Stripe.net/Entities/SubscriptionsSchedules/SubscriptionSchedulePhaseItem.cs | src/Stripe.net/Entities/SubscriptionsSchedules/SubscriptionSchedulePhaseItem.cs | namespace Stripe
{
using System.Collections.Generic;
using Newtonsoft.Json;
using Stripe.Infrastructure;
public class SubscriptionSchedulePhaseItem : StripeEntity<SubscriptionSchedulePhaseItem>
{
/// <summary>
/// Define thresholds at which an invoice will be sent, and the subscript... | namespace Stripe
{
using System.Collections.Generic;
using Newtonsoft.Json;
using Stripe.Infrastructure;
public class SubscriptionSchedulePhaseItem : StripeEntity<SubscriptionSchedulePhaseItem>
{
/// <summary>
/// Define thresholds at which an invoice will be sent, and the subscript... | apache-2.0 | C# |
521a12fd5ccf9f6f8df0e8cfadf2fbd4421438ac | Add test for IComponent typeconverter register in TypeDescriptor (#40959) (#40977) | BrennanConroy/corefx,BrennanConroy/corefx,BrennanConroy/corefx | src/System.ComponentModel.TypeConverter/tests/TypeDescriptorTests.netcoreapp.cs | src/System.ComponentModel.TypeConverter/tests/TypeDescriptorTests.netcoreapp.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 Xunit;
namespace System.ComponentModel.Tests
{
public partial class TypeDescriptorTests
{
[Th... | // 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 Xunit;
namespace System.ComponentModel.Tests
{
public partial class TypeDescriptorTests
{
[Th... | mit | C# |
fa7a484a05623a04cfa169247dbab5a4c7b903da | Add XML comments to LogLevel | atata-framework/atata,atata-framework/atata,YevgeniyShunevych/Atata,YevgeniyShunevych/Atata | src/Atata/Logging/LogLevel.cs | src/Atata/Logging/LogLevel.cs | namespace Atata
{
/// <summary>
/// Specifies the level of log event.
/// </summary>
public enum LogLevel
{
/// <summary>
/// Trace log level.
/// </summary>
Trace,
/// <summary>
/// Debug log level.
/// </summary>
Debu... | namespace Atata
{
/// <summary>
/// Specifies the level of log event.
/// </summary>
public enum LogLevel
{
Trace,
Debug,
Info,
Warn,
Error,
Fatal
}
}
| apache-2.0 | C# |
2cf1eec7da74277570f441e6b804b07806f54ba4 | remove test data | akaSybe/Disqus.NET | src/Disqus.NET/Disqus.NET.Tests/DisqusTestsInitializer.cs | src/Disqus.NET/Disqus.NET.Tests/DisqusTestsInitializer.cs | using System;
using NUnit.Framework;
namespace Disqus.NET.Tests
{
public class DisqusTestsInitializer
{
private const string DisqusKey = "";
protected static class TestData
{
public const string AccessToken = "";
public const string Forum = "";
publ... | using System;
using NUnit.Framework;
namespace Disqus.NET.Tests
{
public class DisqusTestsInitializer
{
private const string DisqusKey = "X06iuWTeIlPzxRByY43SXFQO3oBnFoYtJ8MHQQG6J8MOEoBiHIHJogK7A69whLs7";
protected static class TestData
{
public const string AccessToken = ... | mit | C# |
f68a55854f89cfca2a13bce0ddecdbdef584dd49 | upgrade ecommon.jsonnet to 1.4.1 | tangxuehua/ecommon,Aaron-Liu/ecommon | src/Extensions/ECommon.JsonNet/Properties/AssemblyInfo.cs | src/Extensions/ECommon.JsonNet/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过以下
// 特性集控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("ECommon.JsonNet")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: As... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过以下
// 特性集控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("ECommon.JsonNet")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: As... | mit | C# |
b5ae26141f360165afec8d0d6039f6404155a02e | Change OrderDetails table name from 'OrderDetails' to 'Order Details' in the mapping. | shilin-he/spa-northwind,shilin-he/spa-northwind | src/Northwind.Model/Mapping/OrderDetailMap.cs | src/Northwind.Model/Mapping/OrderDetailMap.cs | using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.ModelConfiguration;
namespace Northwind.Model.Mapping
{
public class OrderDetailMap : EntityTypeConfiguration<OrderDetail>
{
public OrderDetailMap()
{
// Primary Key
HasKey(t => new { t.OrderId,... | using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.ModelConfiguration;
namespace Northwind.Model.Mapping
{
public class OrderDetailMap : EntityTypeConfiguration<OrderDetail>
{
public OrderDetailMap()
{
// Primary Key
HasKey(t => new { t.OrderId,... | unlicense | C# |
b3be3f82f8e5a12c531113c51b4f89a404b06841 | Sort completion items. | mrward/typescript-addin,chrisber/typescript-addin,chrisber/typescript-addin,mrward/typescript-addin | src/TypeScriptBinding/TypeScriptCompletionItemProvider.cs | src/TypeScriptBinding/TypeScriptCompletionItemProvider.cs | //
// TypeScriptCompletionItemProvider.cs
//
// Author:
// Matt Ward <ward.matt@gmail.com>
//
// Copyright (C) 2013 Matthew Ward
//
// 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 w... | //
// TypeScriptCompletionItemProvider.cs
//
// Author:
// Matt Ward <ward.matt@gmail.com>
//
// Copyright (C) 2013 Matthew Ward
//
// 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 w... | mit | C# |
2556a3ff2386a28e6558fe3c67124750e1d4ac1d | change version | Sdzeng/Abp.TinyMapper | Abp.TinyMapper/Properties/AssemblyInfo.cs | Abp.TinyMapper/Properties/AssemblyInfo.cs | using Nelibur.ObjectMapper.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Abp.TinyMapper")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: ... | using Nelibur.ObjectMapper.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Abp.TinyMapper")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: ... | mit | C# |
e73ea95a4d8a6aec85943e6d494ee656f1c089a8 | Change Cwd implementation | skarpdev/dotnet-version-cli | src/CsProj/FileSystem/DotNetFileSystemProvider.cs | src/CsProj/FileSystem/DotNetFileSystemProvider.cs | using System;
using System.Collections.Generic;
using System.IO;
namespace Skarpdev.DotnetVersion.CsProj.FileSystem
{
public class DotNetFileSystemProvider : IFileSystemProvider
{
/// <summary>
/// List the files of the given path
/// </summary>
/// <param name="path"></param>
... | using System;
using System.Collections.Generic;
using System.IO;
namespace Skarpdev.DotnetVersion.CsProj.FileSystem
{
public class DotNetFileSystemProvider : IFileSystemProvider
{
/// <summary>
/// List the files of the given path
/// </summary>
/// <param name="path"></param>
... | mit | C# |
564d6ba3291ddbff162a0997723a0423c85a0526 | Remove this test as the API is broken | stripe/stripe-dotnet,richardlawley/stripe.net | src/Stripe.net.Tests/account/account_behaviors.cs | src/Stripe.net.Tests/account/account_behaviors.cs | using Machine.Specifications;
namespace Stripe.Tests
{
[Behaviors]
public class account_behaviors
{
protected static StripeAccountSharedOptions CreateOrUpdateOptions;
protected static StripeAccount StripeAccount;
//It should_have_the_correct_email_address = () =>
// Str... | using Machine.Specifications;
namespace Stripe.Tests
{
[Behaviors]
public class account_behaviors
{
protected static StripeAccountSharedOptions CreateOrUpdateOptions;
protected static StripeAccount StripeAccount;
//It should_have_the_correct_email_address = () =>
// Str... | apache-2.0 | C# |
0affe7b79d338e808f001476af5b2ae5cee89293 | Remove unnecessary using | peppy/osu,ppy/osu,peppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu,ppy/osu,NeoAdonis/osu,smoogipooo/osu | osu.Game/Rulesets/Objects/Legacy/Mania/ConvertHitObjectParser.cs | osu.Game/Rulesets/Objects/Legacy/Mania/ConvertHitObjectParser.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 osuTK;
using osu.Game.Audio;
using System.Collections.Generic;
namespace osu.Game.Rulesets.Objects.Legacy.Mania
{
/// <summary>
/// A HitObjectParser to p... | // 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 osuTK;
using osu.Game.Audio;
using System.Collections.Generic;
using osu.Framework.Bindables;
namespace osu.Game.Rulesets.Objects.Legacy.Mania
{
/// <summary>... | mit | C# |
7016803f7d2af9597781f66b6ff06c655b0781c4 | Revert exposing Capture.Text (#27669) | mmitche/corefx,ericstj/corefx,shimingsg/corefx,shimingsg/corefx,ViktorHofer/corefx,wtgodbe/corefx,shimingsg/corefx,ptoonen/corefx,shimingsg/corefx,ptoonen/corefx,BrennanConroy/corefx,ViktorHofer/corefx,ericstj/corefx,ptoonen/corefx,BrennanConroy/corefx,ViktorHofer/corefx,ptoonen/corefx,Jiayili1/corefx,Jiayili1/corefx,e... | src/System.Text.RegularExpressions/src/System/Text/RegularExpressions/Capture.cs | src/System.Text.RegularExpressions/src/System/Text/RegularExpressions/Capture.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.
// Capture is just a location/length pair that indicates the
// location of a regular expression match. A single reg... | // 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.
// Capture is just a location/length pair that indicates the
// location of a regular expression match. A single reg... | mit | C# |
d751a0a69484fba49d429129c8c60c61447346b3 | Add icons font | maximegelinas-cegepsth/GEC-strawberry-sass,maximegelinas-cegepsth/GEC-strawberry-sass | StrawberrySass/src/StrawberrySass/UI/Shared/_Layout.cshtml | StrawberrySass/src/StrawberrySass/UI/Shared/_Layout.cshtml | <!DOCTYPE html>
<html>
<head>
<base href="@ViewData["BaseUrl"]">
<title>@ViewData["Title"] - StrawberrySass</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="https://cdn.rawgit.com/strawberrysass/strawberry-branding/master/fa... | <!DOCTYPE html>
<html>
<head>
<base href="@ViewData["BaseUrl"]">
<title>@ViewData["Title"] - StrawberrySass</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="https://cdn.rawgit.com/strawberrysass/strawberry-branding/master/fa... | mit | C# |
be7319a8b728d0a299712a7419dea8696bc8f377 | Fix onRemove not being called in Selector.Clear | SnpM/Lockstep-Framework,erebuswolf/LockstepFramework,yanyiyun/LockstepFramework | Core/Game/Player/Utility/Selector.cs | Core/Game/Player/Utility/Selector.cs | using UnityEngine;
using System;
namespace Lockstep {
public static class Selector {
public static event Action onChange;
public static event Action onAdd;
public static event Action onRemove;
private static LSAgent _mainAgent;
static Selector () {
onAdd += Change;
... | using UnityEngine;
using System;
namespace Lockstep {
public static class Selector {
public static event Action onChange;
public static event Action onAdd;
public static event Action onRemove;
private static LSAgent _mainAgent;
static Selector () {
onAdd += Change;
... | mit | C# |
706d2ad17f3cb1bfd4080f31fb4f9497ba0ef31a | increase version number to 0.2.0.0 | ChrisDeadman/KSPPartRemover | KSPPartRemover/Properties/AssemblyInfo.cs | KSPPartRemover/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("KSPPartRemover")]
[assembly: AssemblyDes... | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("KSPPartRemover")]
[assembly: AssemblyDes... | mit | C# |
7138d46b252ae9e174c76050882548f8aee70e90 | Enforce HTTPS (Disable) | WorkplaceX/Framework,WorkplaceX/Framework,WorkplaceX/Framework,WorkplaceX/Framework,WorkplaceX/Framework | Framework/Server/StartupFramework.cs | Framework/Server/StartupFramework.cs | namespace Framework.Server
{
using Framework.Config;
using Framework.DataAccessLayer.DatabaseMemory;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using System;
/// <summary>
... | namespace Framework.Server
{
using Framework.Config;
using Framework.DataAccessLayer.DatabaseMemory;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using System;
/// <summary>
... | mit | C# |
5e56100cf7049b99c6058ef59fe745df25493403 | use Mean() method in Accord.NET instead of IEnumerable.Average() | y-takashina/HtmZetaOne | HtmZetaOne/Sampling.cs | HtmZetaOne/Sampling.cs | using System.Collections.Generic;
using System.Linq;
using Accord.MachineLearning;
using Accord.Statistics;
namespace HtmZetaOne
{
public static class Sampling
{
public static double[] CalcSamplePoints(IEnumerable<double> data, int n)
{
var array = data.Where(v => !double.IsNaN(v))... | using System.Collections.Generic;
using System.Linq;
using Accord.MachineLearning;
using Accord.Statistics;
namespace HtmZetaOne
{
public static class Sampling
{
public static double[] CalcSamplePoints(IEnumerable<double> data, int n)
{
var array = data.Where(v => !double.IsNaN(v))... | mit | C# |
1a5d2dbb1c4f82c9589f9bb369cee0441f744e1c | Fix delete | mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander | Battery-Commander.Web/Views/Reports/Index.cshtml | Battery-Commander.Web/Views/Reports/Index.cshtml | @model Unit
@{
ViewBag.Title = "Reports";
}
<h2>@ViewBag.Reports</h2>
@Html.ActionLink("Add", "Add", new { ViewBag.UnitId })
<div>
<table class="table table striped">
@foreach (var report in Model.ReportSettings)
{
<tr>
<td>@report.Type</td>
<td><a... | @model Unit
@{
ViewBag.Title = "Reports";
}
<h2>@ViewBag.Reports</h2>
@Html.ActionLink("Add", "Add", new { ViewBag.UnitId })
<div>
<table class="table table striped">
@foreach (var report in Model.ReportSettings)
{
<tr>
<td>@report.Type</td>
<td><a... | mit | C# |
be340d4ba4181bafdba189078b6f698012fdb0c3 | Fix the typo. | berdankoca/aspnetboilerplate,luchaoshuai/aspnetboilerplate,berdankoca/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,beratcarsi/aspnetboilerplate,ilyhacker/aspnetboilerplate,oceanho/aspnetboilerplate,Nongzhsh/aspnetboilerplate,zclmoon/aspnetboilerplate,ilyhacker/aspnetboilerplate,4nonym0us/aspnetboilerplate,feng... | src/Abp/Configuration/Startup/LocalizationConfiguration.cs | src/Abp/Configuration/Startup/LocalizationConfiguration.cs | using System.Collections.Generic;
using Abp.Localization;
namespace Abp.Configuration.Startup
{
/// <summary>
/// Used for localization configurations.
/// </summary>
internal class LocalizationConfiguration : ILocalizationConfiguration
{
/// <inheritdoc/>
public IList<LanguageInfo... | using System.Collections.Generic;
using Abp.Localization;
namespace Abp.Configuration.Startup
{
/// <summary>
/// Used for localization configurations.
/// </summary>
internal class LocalizationConfiguration : ILocalizationConfiguration
{
/// <inheritdoc/>
public IList<LanguageInfo... | mit | C# |
81d3832e584503d782641dfac8810b42c2b28d37 | Use autoproperty for CellRangeReference.Range | ClosedXML/ClosedXML,igitur/ClosedXML | ClosedXML/Excel/CalcEngine/CellRangeReference.cs | ClosedXML/Excel/CalcEngine/CellRangeReference.cs | using System;
using System.Collections;
namespace ClosedXML.Excel.CalcEngine
{
internal class CellRangeReference : IValueObject, IEnumerable
{
private readonly XLCalcEngine _ce;
public CellRangeReference(IXLRange range, XLCalcEngine ce)
{
Range = range;
_ce = c... | using System;
using System.Collections;
namespace ClosedXML.Excel.CalcEngine
{
internal class CellRangeReference : IValueObject, IEnumerable
{
private IXLRange _range;
private XLCalcEngine _ce;
public CellRangeReference(IXLRange range, XLCalcEngine ce)
{
_range = r... | mit | C# |
62661dd6bed94e3d00c45919f9ef02c329d19f6b | Update CSharpGeneratorSettings.cs | RSuter/NJsonSchema,NJsonSchema/NJsonSchema | src/NJsonSchema.CodeGeneration/CSharp/CSharpGeneratorSettings.cs | src/NJsonSchema.CodeGeneration/CSharp/CSharpGeneratorSettings.cs | //-----------------------------------------------------------------------
// <copyright file="CSharpGeneratorSettings.cs" company="NJsonSchema">
// Copyright (c) Rico Suter. All rights reserved.
// </copyright>
// <license>https://github.com/rsuter/NJsonSchema/blob/master/LICENSE.md</license>
// <author>Rico S... | //-----------------------------------------------------------------------
// <copyright file="CSharpGeneratorSettings.cs" company="NJsonSchema">
// Copyright (c) Rico Suter. All rights reserved.
// </copyright>
// <license>https://github.com/rsuter/NJsonSchema/blob/master/LICENSE.md</license>
// <author>Rico S... | mit | C# |
7588b9812eefbcc83ad3f08186611d2fe1977dee | increase version number | gigya/microdot | Gigya.ServiceContract/Properties/AssemblyInfo.cs | Gigya.ServiceContract/Properties/AssemblyInfo.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# |
f86c5e676932f899b28fdc1efd7e72ec7e7ca342 | Revert "Revert "Force fix for new databases"" | Generic-Voting-Application/voting-application,JDawes-ScottLogic/voting-application,stevenhillcox/voting-application,tpkelly/voting-application,stevenhillcox/voting-application,stevenhillcox/voting-application,Generic-Voting-Application/voting-application,tpkelly/voting-application,Generic-Voting-Application/voting-appl... | VotingApplication/VotingApplication.Web.Api/Global.asax.cs | VotingApplication/VotingApplication.Web.Api/Global.asax.cs | using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Threading;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using Newtonsoft.Json;
using VotingApplication.Data.Context;
using VotingApplicati... | using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Threading;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using Newtonsoft.Json;
using VotingApplication.Data.Context;
using VotingApplicati... | apache-2.0 | C# |
3ec91c58b823d3f4c8ff6afe0c2a0d5aa1a09be7 | Fix NPE where saveData was accessed before being initialized | edwardrowe/unity-custom-tool-example | Assets/PrimativeCreator/Editor/PrimitiveCreatorSaveData.cs | Assets/PrimativeCreator/Editor/PrimitiveCreatorSaveData.cs | namespace RedBlueGames.ToolsExamples
{
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class PrimitiveCreatorSaveData : ScriptableObject
{
public List<PrimitiveCreator.Config> ConfigPresets;
private void OnEnable()
{
if (th... | namespace RedBlueGames.ToolsExamples
{
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class PrimitiveCreatorSaveData : ScriptableObject
{
public List<PrimitiveCreator.Config> ConfigPresets;
public bool HasConfigForIndex(int index)
{
... | mit | C# |
b008a86d8c0904a05a847ea27101c98a3336a825 | Remove unused using statement | smoogipoo/osu,peppy/osu,peppy/osu,smoogipooo/osu,ppy/osu,NeoAdonis/osu,peppy/osu-new,NeoAdonis/osu,ppy/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu | osu.Game.Tournament.Tests/Screens/TestSceneTeamWinScreen.cs | osu.Game.Tournament.Tests/Screens/TestSceneTeamWinScreen.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.Graphics;
using osu.Game.Tournament.Screens.TeamWin;
namespace osu.Game.Tournament.Tests.Screens
{
publ... | // 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.Graphics;
using osu.Game.Tournament.Screens.TeamWin;
namespace osu.Game.Tou... | mit | C# |
c9ab3d52e8d685ff7c84cc029362ad634c20894e | Fix typo in DocumentPositions.cs | AngleSharp/AngleSharp,AngleSharp/AngleSharp,AngleSharp/AngleSharp,AngleSharp/AngleSharp,AngleSharp/AngleSharp | src/AngleSharp/Dom/DocumentPositions.cs | src/AngleSharp/Dom/DocumentPositions.cs | namespace AngleSharp.Dom
{
using AngleSharp.Attributes;
using System;
/// <summary>
/// Enumeration of possible document position values.
/// </summary>
[Flags]
[DomName("Document")]
public enum DocumentPositions : byte
{
/// <summary>
/// It is the same node.
... | namespace AngleSharp.Dom
{
using AngleSharp.Attributes;
using System;
/// <summary>
/// Enumeration of possible document position values.
/// </summary>
[Flags]
[DomName("Document")]
public enum DocumentPositions : byte
{
/// <summary>
/// It is the same node.
... | mit | C# |
7351ff231902609371ea2aed3839314419dd210c | Document EnumerableExtensions and its Sum method | omar/ByteSize | src/ByteSizeLib/EnumerableExtensions.cs | src/ByteSizeLib/EnumerableExtensions.cs | using System.Collections.Generic;
using System.Linq;
namespace ByteSizeLib
{
/// <summary>
/// Extension methods on sequence of <see cref="ByteSize"/> values.
/// </summary>
public static class EnumerableExtensions
{
/// <summary>
/// Computes the sum of a sequence of <see cref="Byt... | using System.Collections.Generic;
using System.Linq;
namespace ByteSizeLib
{
public static class EnumerableExtensions
{
public static ByteSize Sum(this IEnumerable<ByteSize> byteSizes)
{
return byteSizes.Aggregate((current, byteSize) => current + byteSize);
}
}
} | mit | C# |
3b7488783f9cc9c694b9c4228839eae1a3550d22 | resolve reset password issue in the TodoTemplate #2496 (#2579) | bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework | src/Templates/TodoTemplate/Bit.TodoTemplate/Web/Pages/ResetPasswordPage.razor.cs | src/Templates/TodoTemplate/Bit.TodoTemplate/Web/Pages/ResetPasswordPage.razor.cs | using TodoTemplate.Shared.Dtos.Account;
namespace TodoTemplate.App.Pages;
public partial class ResetPasswordPage
{
[AutoInject] private HttpClient httpClient = default!;
[AutoInject] private NavigationManager navigationManager = default!;
[AutoInject] private IAuthenticationService authService = defaul... | using TodoTemplate.Shared.Dtos.Account;
namespace TodoTemplate.App.Pages;
public partial class ResetPasswordPage
{
[AutoInject] private HttpClient httpClient = default!;
[AutoInject] private NavigationManager navigationManager = default!;
[AutoInject] private IAuthenticationService authService = defaul... | mit | C# |
ed2e0f20aef538296bd9baeff39674d869f06d9e | fix footer link | kreeben/resin,kreeben/resin | src/Sir.HttpServer/Views/_Layout.cshtml | src/Sir.HttpServer/Views/_Layout.cshtml | <!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="/css/theme.css">
</head>
<body>
<a href="/" title="Go.go! v0.3a"><h1 class="logo">Go<span class="sub">■</span>g... | <!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="/css/theme.css">
</head>
<body>
<a href="/" title="Go.go! v0.3a"><h1 class="logo">Go<span class="sub">■</span>g... | mit | C# |
bee0851f62848f0e31ff3dc7daa25899a869540b | Update BehaviorOfT.cs | wieslawsoltes/AvaloniaBehaviors,XamlBehaviors/XamlBehaviors,wieslawsoltes/AvaloniaBehaviors,XamlBehaviors/XamlBehaviors | src/Avalonia.Xaml.Interactivity/BehaviorOfT.cs | src/Avalonia.Xaml.Interactivity/BehaviorOfT.cs | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.ComponentModel;
namespace Avalonia.Xaml.Interactivity
{
/// <summary>
/// A base class for behaviors making them code compatib... | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.ComponentModel;
namespace Avalonia.Xaml.Interactivity
{
/// <summary>
/// A base class for behaviors making them code compatib... | mit | C# |
716c150c853c8c9a7ff8f80ce04ede85a4009fc9 | clean up | tainicom/Aether | Source/Core/Serialization/DefaultTypeResolver.cs | Source/Core/Serialization/DefaultTypeResolver.cs | #region License
// Copyright 2015 Kastellanos Nikolaos
//
// 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 requi... | #region License
// Copyright 2015 Kastellanos Nikolaos
//
// 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 requi... | apache-2.0 | C# |
1dbca983ffc62214dd24399d42ba590ae7f33dc7 | Fix GetObject definition | mono/at-spi-sharp,mono/at-spi-sharp,mono/at-spi-sharp | at-spi/Hyperlink.cs | at-spi/Hyperlink.cs | // 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, publish,
// distribute, sublicense, and/or ... | // 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, publish,
// distribute, sublicense, and/or ... | mit | C# |
b0f2deb9fb4d05f05c686545b78f46ef23c76042 | Update copyright | MindscapeHQ/raygun4net,MindscapeHQ/raygun4net,MindscapeHQ/raygun4net | Mindscape.Raygun4Net.AspNetCore/Properties/AssemblyInfo.cs | Mindscape.Raygun4Net.AspNetCore/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("Ra... | 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("Ra... | mit | C# |
c5339528af094e27c37fd083d6afadbb13be7c7d | use pooled dbcontext for perf (ef core 2.0) | collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists | src/FilterLists.Services/DependencyInjection/Extensions/ConfigureServicesCollection.cs | src/FilterLists.Services/DependencyInjection/Extensions/ConfigureServicesCollection.cs | using FilterLists.Data.Contexts;
using FilterLists.Data.Repositories.Contracts;
using FilterLists.Data.Repositories.Implementations;
using FilterLists.Services.Contracts;
using FilterLists.Services.Implementations;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extension... | using FilterLists.Data.Contexts;
using FilterLists.Data.Repositories.Contracts;
using FilterLists.Data.Repositories.Implementations;
using FilterLists.Services.Contracts;
using FilterLists.Services.Implementations;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extension... | mit | C# |
6eec48167260a31618719d66b11d5d49eb9e30bd | Allow Eye Dropper to be used as macro parameter editor | marcemarc/Umbraco-CMS,marcemarc/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,umbraco/Umbraco-CMS,robertjf/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,dawoe/Umbraco-CMS,robertjf/Umbraco-CMS,KevinJump/Umbraco-CMS,robertjf/Umbraco-CMS,abryukhov/Umbraco-CMS,abjerner/Umbraco-CMS,marcemarc/Umbraco-CM... | src/Umbraco.Infrastructure/PropertyEditors/EyeDropperColorPickerPropertyEditor.cs | src/Umbraco.Infrastructure/PropertyEditors/EyeDropperColorPickerPropertyEditor.cs | using Microsoft.Extensions.Logging;
using Umbraco.Cms.Core.IO;
using Umbraco.Cms.Core.Serialization;
using Umbraco.Cms.Core.Services;
using Umbraco.Cms.Core.Strings;
namespace Umbraco.Cms.Core.PropertyEditors
{
[DataEditor(
Constants.PropertyEditors.Aliases.ColorPickerEyeDropper,
EditorType.Proper... | using Microsoft.Extensions.Logging;
using Umbraco.Cms.Core.IO;
using Umbraco.Cms.Core.Serialization;
using Umbraco.Cms.Core.Services;
using Umbraco.Cms.Core.Strings;
namespace Umbraco.Cms.Core.PropertyEditors
{
[DataEditor(
Constants.PropertyEditors.Aliases.ColorPickerEyeDropper,
"Eye Dropper Colo... | mit | C# |
41e8d5e5fc3e43bfb045151070d7f9b51b6c3491 | Update LiteralInlineRenderer.cs | lunet-io/markdig | src/Markdig/Renderers/Html/Inlines/LiteralInlineRenderer.cs | src/Markdig/Renderers/Html/Inlines/LiteralInlineRenderer.cs | // Copyright (c) Alexandre Mutel. All rights reserved.
// This file is licensed under the BSD-Clause 2 license.
// See the license.txt file in the project root for more information.
using Markdig.Syntax.Inlines;
namespace Markdig.Renderers.Html.Inlines
{
/// <summary>
/// A HTML renderer for a <see cref="Lite... | // Copyright (c) Alexandre Mutel. All rights reserved.
// This file is licensed under the BSD-Clause 2 license.
// See the license.txt file in the project root for more information.
using Markdig.Syntax.Inlines;
namespace Markdig.Renderers.Html.Inlines
{
/// <summary>
/// A HTML renderer for a <see cref="Lite... | bsd-2-clause | C# |
5ce92c441beb8b1b46f489f24b42ce9ea0eea98b | Update TestCampaign.cs | plivo/plivo-dotnet,plivo/plivo-dotnet | tests_netcore/Plivo.NetCore.Test/Resources/TestCampaign.cs | tests_netcore/Plivo.NetCore.Test/Resources/TestCampaign.cs | using System.Collections.Generic;
using Xunit;
using Plivo.Http;
using Plivo.Resource;
using Plivo.Resource.Campaign;
using Plivo.Utilities;
using System;
namespace Plivo.NetCore.Test.Resources
{
public class TestCampaign : BaseTestCase
{
[Fact]
public void TestCampaignList()
{
... | using System.Collections.Generic;
using Xunit;
using Plivo.Http;
using Plivo.Resource;
using Plivo.Resource.Campaign;
using Plivo.Utilities;
using System;
namespace Plivo.NetCore.Test.Resources
{
public class TestCampaign : BaseTestCase
{
[Fact]
public void TestCampaignList()
{
... | mit | C# |
a3979fa5130953822c2f238e4ea575ea4cc46d75 | Fix test datacard path case | tarakreddy/ADMPlugin,strhea/ADMPlugin,ADAPT/ADMPlugin | TestUtilities/DatacardUtility.cs | TestUtilities/DatacardUtility.cs | using System;
using System.IO;
using System.IO.Compression;
using System.Reflection;
namespace TestUtilities
{
public static class DatacardUtility
{
public static string WriteDatacard(string name)
{
var directory = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
... | using System;
using System.IO;
using System.IO.Compression;
using System.Reflection;
namespace TestUtilities
{
public static class DatacardUtility
{
public static string WriteDatacard(string name)
{
var directory = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
... | epl-1.0 | C# |
f919746b01ab5add05df35870d86bd6b318197fb | Document CoffeeScript usage. | honestegg/cassette,damiensawyer/cassette,honestegg/cassette,honestegg/cassette,andrewdavey/cassette,damiensawyer/cassette,andrewdavey/cassette,andrewdavey/cassette,BluewireTechnologies/cassette,BluewireTechnologies/cassette,damiensawyer/cassette | src/Website/Views/Documentation/Scripts_CoffeeScript.cshtml | src/Website/Views/Documentation/Scripts_CoffeeScript.cshtml | <h1>CoffeeScript</h1>
<p>Cassette provides built-in support for the excellent <a href="http://coffeescript.org/">CoffeeScript</a> language.
Add <code>.coffee</code> files to your project and Cassette will compile them into JavaScript and bundle them with the rest of your scripts.
</p>
<p>
<strong>Important:</stro... | <h1>CoffeeScript</h1>
<p>Documentation under construction. Please check back soon!</p> | mit | C# |
49ab72f70ab734ebbf9310957a5672b3cd1f51f7 | Remove bad '#r "System.Web.Http"' | mattchenderson/azure-webjobs-sdk-templates,Azure/azure-webjobs-sdk-templates,soninaren/azure-webjobs-sdk-templates,davidlai-msft/azure-webjobs-sdk-templates,mattchenderson/azure-webjobs-sdk-templates,davidlai-msft/azure-webjobs-sdk-templates,soninaren/azure-webjobs-sdk-templates,mattchenderson/azure-webjobs-sdk-templat... | Templates/HttpTrigger-CSharp/run.csx | Templates/HttpTrigger-CSharp/run.csx | using System;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using System.Diagnostics;
using Microsoft.Azure.WebJobs.Host;
public static Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
var queryParamms = req.GetQueryNameValuePairs()
.ToDic... | #r "System.Web.Http"
using System;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using System.Diagnostics;
using Microsoft.Azure.WebJobs.Host;
public static Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
var queryParamms = req.GetQueryNameValue... | mit | C# |
92fdf15774239b605c3bcaf6295e18392400a32f | Use correct claims in case UserPrincipal has more than one identity | anyeloamt1/Bonobo-Git-Server,larshg/Bonobo-Git-Server,padremortius/Bonobo-Git-Server,Acute-sales-ltd/Bonobo-Git-Server,PGM-NipponSysits/IIS.Git-Connector,igoryok-zp/Bonobo-Git-Server,igoryok-zp/Bonobo-Git-Server,crowar/Bonobo-Git-Server,larshg/Bonobo-Git-Server,padremortius/Bonobo-Git-Server,Ollienator/Bonobo-Git-Serve... | Bonobo.Git.Server/Extensions/UserExtensions.cs | Bonobo.Git.Server/Extensions/UserExtensions.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Security;
using System.Security.Claims;
using System.Security.Principal;
using System.Web;
namespace Bonobo.Git.Server
{
public static class UserExtensions
{
public static string GetClaim(this IPrincipal user, string claim... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Security;
using System.Security.Claims;
using System.Security.Principal;
using System.Web;
namespace Bonobo.Git.Server
{
public static class UserExtensions
{
public static string GetClaim(this IPrincipal user, string claim... | mit | C# |
6b936cd29e579500652f17c1680391dc0d5a55b3 | Remove unused directives | Paymentsense/Dapper.SimpleSave | PS.Mothership.Core/PS.Mothership.Core.Common/Contracts/IEchoSignCallbackService.cs | PS.Mothership.Core/PS.Mothership.Core.Common/Contracts/IEchoSignCallbackService.cs | using System.ServiceModel;
using PS.Mothership.Core.Common.Enums.EchoSign;
namespace PS.Mothership.Core.Common.Contracts
{
[ServiceContract(Name = "EchoSignService")]
public interface IEchoSignCallbackService
{
[OperationContract]
void DocumentNotification(string agreementId, AgreementStat... | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel;
using System.Text;
using System.Threading.Tasks;
using PS.Mothership.Core.Common.Enums.EchoSign;
namespace PS.Mothership.Core.Common.Contracts
{
[ServiceContract(Name = "EchoSignService")]
public interface IEchoSignC... | mit | C# |
3fad8106e79139b7dc514286fd8b6249128bacef | Fix crash on multiple symbols | occar421/MyAnalyzerSamples | PublicFieldAnalyzer/PublicFieldAnalyzer/PublicFieldAnalyzer/PublicFieldAnalyzer.cs | PublicFieldAnalyzer/PublicFieldAnalyzer/PublicFieldAnalyzer/PublicFieldAnalyzer.cs | using System.Collections.Immutable;
using System.Linq;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Diagnostics;
namespace AnalyzerTests
{
[DiagnosticAnalyzer(LanguageNames.CSharp)]
class PublicFieldAnalyzer : DiagnosticA... | using System.Collections.Immutable;
using System.Linq;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Diagnostics;
namespace AnalyzerTests
{
[DiagnosticAnalyzer(LanguageNames.CSharp)]
class PublicFieldAnalyzer : DiagnosticA... | mit | C# |
696a647ea21a000dc5a88e4adca1ce0229a71e9c | Remove previous manual code for DatastoreClientBuilder now it's generated | jskeet/google-cloud-dotnet,jskeet/google-cloud-dotnet,jskeet/google-cloud-dotnet,jskeet/google-cloud-dotnet,googleapis/google-cloud-dotnet,googleapis/google-cloud-dotnet,jskeet/gcloud-dotnet,googleapis/google-cloud-dotnet,jskeet/google-cloud-dotnet | apis/Google.Cloud.Datastore.V1/Google.Cloud.Datastore.V1/DatastoreClientBuilder.cs | apis/Google.Cloud.Datastore.V1/Google.Cloud.Datastore.V1/DatastoreClientBuilder.cs | // Copyright 2019 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | // Copyright 2019 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | apache-2.0 | C# |
8058dafb681d3ffc9324bd6d78307853283d1d7d | add missing param/return | xmlunit/xmlunit.net,xmlunit/xmlunit.net | src/main/net-core/Diff/IComparisonFormatter.cs | src/main/net-core/Diff/IComparisonFormatter.cs | /*
This file is licensed to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
di... | /*
This file is licensed to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
di... | apache-2.0 | C# |
41729d3df12a218dbe1190e5bc3e438e2ca0772d | Prepare for export | NebcoOrganization/Yuffie,NebcoOrganization/Yuffie | WebApp/Controllers/HomeController.cs | WebApp/Controllers/HomeController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using Yuffie.WebApp;
namespace WebApp.Controllers
{
public class HomeController : Controller
{
public IActionResult In... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using Yuffie.WebApp;
namespace WebApp.Controllers
{
public class HomeController : Controller
{
public IActionResult Index()
{
... | mit | C# |
c2d6575d5380ca27e27116197d72ff1638ffb938 | Optimize element and text rendering for modern Windows versions | InspiringCode/Inspiring.MVVM | Source/Mvvm/Views/WindowService/WindowService.cs | Source/Mvvm/Views/WindowService/WindowService.cs | namespace Inspiring.Mvvm.Views {
using System.Windows;
using System.Windows.Media;
using Inspiring.Mvvm.Common;
using Inspiring.Mvvm.Screens;
public class WindowService : IWindowService {
public static readonly Event<InitializeWindowEventArgs> InitializeWindowEvent = new Event<InitializeWi... | namespace Inspiring.Mvvm.Views {
using System.Windows;
using System.Windows.Media;
using Inspiring.Mvvm.Common;
using Inspiring.Mvvm.Screens;
public class WindowService : IWindowService {
public static readonly Event<InitializeWindowEventArgs> InitializeWindowEvent = new Event<InitializeWi... | epl-1.0 | C# |
695a1a345e11fbcd0bb1ddc7119c5fca4d56a518 | Fix namespace | canton7/Stylet,cH40z-Lord/Stylet,canton7/Stylet,cH40z-Lord/Stylet | StyletUnitTests/StyletIoC/UnboundGenericTests.cs | StyletUnitTests/StyletIoC/UnboundGenericTests.cs | using NUnit.Framework;
using StyletIoC;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StyletUnitTests
{
[TestFixture]
public class StyletIoCUnboundGenericTests
{
interface I1<T> { }
class C1<T> : I1<T> { }
... | using NUnit.Framework;
using StyletIoC;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StyletUnitTests.StyletIoC
{
[TestFixture]
public class StyletIoCUnboundGenericTests
{
interface I1<T> { }
class C1<T> : I1<T... | mit | C# |
2190168241f70827f15e6e9b39ede5ad2de6dedd | Update Program.cs | medhajoshi27/GitTest1 | ConsoleApplication1/ConsoleApplication1/Program.cs | ConsoleApplication1/ConsoleApplication1/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
//hello
Console.WriteLine("HELLO");
Console.WriteLine("World... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
//hello
Console.WriteLine("HELLO");
Console.WriteLine("World... | mit | C# |
078490c63033721bc9ec04284b07ed4a8bc0ee57 | Fix status update after conflict resolving | michael-reichenauer/GitMind | GitMind/Features/Diffing/Private/GitDiffService.cs | GitMind/Features/Diffing/Private/GitDiffService.cs | using System;
using System.IO;
using System.Threading.Tasks;
using GitMind.ApplicationHandling;
using GitMind.Common.ProgressHandling;
using GitMind.Features.StatusHandling;
using GitMind.Git;
using GitMind.Git.Private;
using GitMind.GitModel;
using GitMind.Utils;
namespace GitMind.Features.Diffing.Private
{
interna... | using System.IO;
using System.Threading.Tasks;
using GitMind.ApplicationHandling;
using GitMind.Git;
using GitMind.Git.Private;
using GitMind.GitModel;
using GitMind.Utils;
namespace GitMind.Features.Diffing.Private
{
internal class GitDiffService : IGitDiffService
{
private readonly WorkingFolder workingFolder;
... | mit | C# |
db3a570079db33bcb115dca9df159b9a281c7bae | address mssing reference specification | jwChung/Experimentalism,jwChung/Experimentalism | test/ExperimentalUnitTest/AssemblyLevelTest.cs | test/ExperimentalUnitTest/AssemblyLevelTest.cs | using System.Linq;
using System.Reflection;
using Xunit;
namespace Jwc.Experimental
{
public class AssemblyLevelTest
{
[Fact]
public void SutOnlyReferencesSpecifiedAssemblies()
{
var sut = Assembly.LoadFrom("Jwc.Experimental.dll");
Assert.NotNull(sut);
... | using System.Linq;
using System.Reflection;
using Xunit;
namespace Jwc.Experimental
{
public class AssemblyLevelTest
{
[Fact]
public void SutOnlyReferencesSpecifiedAssemblies()
{
var sut = Assembly.LoadFrom("Jwc.Experimental.dll");
Assert.NotNull(sut);
... | mit | C# |
00ebef4c2950bef40fbb2cd6eb35046adc1c673f | Fix registration of IActiveStatementSpanTrackerFactory | jasonmalinowski/roslyn,mavasani/roslyn,shyamnamboodiripad/roslyn,AmadeusW/roslyn,gafter/roslyn,KevinRansom/roslyn,wvdd007/roslyn,tannergooding/roslyn,mgoertz-msft/roslyn,AlekseyTs/roslyn,gafter/roslyn,eriawan/roslyn,tannergooding/roslyn,genlu/roslyn,genlu/roslyn,mavasani/roslyn,weltkante/roslyn,tmat/roslyn,KevinRansom/... | src/EditorFeatures/Core/Implementation/EditAndContinue/ActiveStatementSpanTrackerFactory.cs | src/EditorFeatures/Core/Implementation/EditAndContinue/ActiveStatementSpanTrackerFactory.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.
#nullable enable
using System;
using System.Composition;
using Microsoft.CodeAnalysis.EditAndContinue;
using Micro... | // 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.
#nullable enable
using System;
using System.Composition;
using Microsoft.CodeAnalysis.EditAndContinue;
using Micro... | mit | C# |
fcd6d751348d78aaea22686f4250302be2991ee2 | Add helper method to create `LinearAnimation` | Weingartner/SolidworksAddinFramework | SolidworksAddinFramework/OpenGl/Animation/LinearAnimation.cs | SolidworksAddinFramework/OpenGl/Animation/LinearAnimation.cs | using System;
using System.Diagnostics;
using System.Numerics;
using ReactiveUI;
namespace SolidworksAddinFramework.OpenGl.Animation
{
public class LinearAnimation<T> : ReactiveObject, IAnimationSection
where T : IInterpolatable<T>
{
public T From { get; }
public T To { get; }
... | using System;
using System.Diagnostics;
using System.Numerics;
using ReactiveUI;
namespace SolidworksAddinFramework.OpenGl.Animation
{
public class LinearAnimation<T> : ReactiveObject, IAnimationSection
where T : IInterpolatable<T>
{
public T From { get; }
public T To { get; }
... | mit | C# |
aa17a3ffbdafecc1ec233c77178b615456708787 | Change test timing | rainersigwald/msbuild,AndyGerlicher/msbuild,AndyGerlicher/msbuild,sean-gilliam/msbuild,AndyGerlicher/msbuild,rainersigwald/msbuild,rainersigwald/msbuild,AndyGerlicher/msbuild,sean-gilliam/msbuild,sean-gilliam/msbuild,sean-gilliam/msbuild,rainersigwald/msbuild | src/Build.UnitTests/BackEnd/RedirectConsoleWriter_Tests.cs | src/Build.UnitTests/BackEnd/RedirectConsoleWriter_Tests.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;
using System.IO;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Build.Experimental;
using Shouldly;
using Xunit;
namespace Microsoft.B... | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.IO;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Build.Experimental;
using Shouldly;
using Xunit;
namespace Microsoft.B... | mit | C# |
a47d9b6487dad0303eec8728f30bc14c25d911c8 | Improve comments ColorSpectrumChannels clarifying axis mappings | AvaloniaUI/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,grokys/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,grokys/Perspex,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia | src/Avalonia.Controls/ColorPicker/ColorSpectrumChannels.cs | src/Avalonia.Controls/ColorPicker/ColorSpectrumChannels.cs | // This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under the MIT License.
using Avalonia.Controls.Primitives;
namespace Avalonia.Controls
{
/// <summary>
/// Defines the two HSV color channels displayed by a <see c... | // This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under the MIT License.
using Avalonia.Controls.Primitives;
namespace Avalonia.Controls
{
/// <summary>
/// Defines the two HSV color channels displayed by a <see c... | mit | C# |
c6fd87158aa0c65f3a4a38b8387202642fe74574 | Bump version nr. | galtrold/propeller.mvc,galtrold/propeller.mvc,galtrold/propeller.mvc,galtrold/propeller.mvc,galtrold/propeller.mvc | src/Framework/PropellerMvcModel/Properties/AssemblyInfo.cs | src/Framework/PropellerMvcModel/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("Pr... | 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("Pr... | mit | C# |
145fa82f4ed5a827de09e0cc6202eea6cb72309b | Fix issue #33 | XAM-Consulting/FreshEssentials,XAM-Consulting/FreshEssentials | src/FreshEssentials/Gestures/ListViewItemTappedAttached.cs | src/FreshEssentials/Gestures/ListViewItemTappedAttached.cs | using System;
using Xamarin.Forms;
using System.Windows.Input;
namespace FreshEssentials
{
public class ListViewItemTappedAttached
{
public static readonly BindableProperty CommandProperty =
BindableProperty.CreateAttached(
propertyName: "Command",
returnTyp... | using System;
using Xamarin.Forms;
using System.Windows.Input;
namespace FreshEssentials
{
public class ListViewItemTappedAttached
{
public static readonly BindableProperty CommandProperty =
BindableProperty.CreateAttached(
propertyName: "Command",
returnTyp... | apache-2.0 | C# |
807463edca90444b66ffe254d03103c697f69b21 | Replace any API endpoint [::] for localhost when configuring HttpClient base address | duracellko/planningpoker4azure,duracellko/planningpoker4azure,duracellko/planningpoker4azure | src/Duracellko.PlanningPoker.Web/HttpClientSetupService.cs | src/Duracellko.PlanningPoker.Web/HttpClientSetupService.cs | using System;
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting.Server;
using Microsoft.AspNetCore.Hosting.Server.Features;
using Microsoft.Extensions.Hosting;
namespace Duracellko.PlanningPoker.Web
{
public class HttpClientSetupServ... | using System;
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting.Server;
using Microsoft.AspNetCore.Hosting.Server.Features;
using Microsoft.Extensions.Hosting;
namespace Duracellko.PlanningPoker.Web
{
public class HttpClientSetupServ... | mit | C# |
5719051bbc616be9423a925bc70981d3e4db7755 | Remove duplicate mapping logic. | JasonGT/NorthwindTraders,JasonGT/NorthwindTraders,JasonGT/NorthwindTraders,JasonGT/NorthwindTraders | Northwind.Application/Customers/Queries/GetCustomerDetail/GetCustomerDetailQueryHandler.cs | Northwind.Application/Customers/Queries/GetCustomerDetail/GetCustomerDetailQueryHandler.cs | using System.Threading;
using System.Threading.Tasks;
using MediatR;
using Northwind.Application.Exceptions;
using Northwind.Domain.Entities;
using Northwind.Persistence;
namespace Northwind.Application.Customers.Queries.GetCustomerDetail
{
public class GetCustomerDetailQueryHandler : IRequestHandler<GetCustomerD... | using System.Threading;
using System.Threading.Tasks;
using MediatR;
using Northwind.Application.Exceptions;
using Northwind.Domain.Entities;
using Northwind.Persistence;
namespace Northwind.Application.Customers.Queries.GetCustomerDetail
{
public class GetCustomerDetailQueryHandler : IRequestHandler<GetCustomerD... | mit | C# |
35b9dddabdee020e952181dc657791d4299a684b | Add Uri Path Extension - constraints: new { ext = @"|json|xml|csv" } | DataBooster/DbWebApi,DataBooster/DbWebApi,DataBooster/DbWebApi,DataBooster/DbWebApi | Examples/MyDbWebApi/App_Start/WebApiConfig.cs | Examples/MyDbWebApi/App_Start/WebApiConfig.cs | using System;
using System.Web.Http;
using DataBooster.DbWebApi;
namespace MyDbWebApi
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
config.Routes.MapHttpRoute(
name: "DbWebApi",
routeTemplate: "{sp}/{ext}",
defaults: new { controller = "... | using System;
using System.Web.Http;
using DataBooster.DbWebApi;
namespace MyDbWebApi
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
config.Routes.MapHttpRoute(
name: "DbWebApi",
routeTemplate: "{sp}",
defaults: new { controller = "DbWebA... | mit | C# |
da66e0c40052f8fb719f0e3da6706720ade05ada | Change Id to be an object instead of a string. | Gekctek/JsonRpc.Router,edjCase/JsonRpc,edjCase/JsonRpc | src/JsonRpc.Core/RpcRequest.cs | src/JsonRpc.Core/RpcRequest.cs | using System.Collections.Generic;
using edjCase.JsonRpc.Core.JsonConverters;
using Newtonsoft.Json;
// ReSharper disable AutoPropertyCanBeMadeGetOnly.Local
// ReSharper disable UnusedMember.Local
namespace edjCase.JsonRpc.Core
{
/// <summary>
/// Model representing a Rpc request
/// </summary>
[JsonObject]
publ... | using System.Collections.Generic;
using edjCase.JsonRpc.Core.JsonConverters;
using Newtonsoft.Json;
// ReSharper disable AutoPropertyCanBeMadeGetOnly.Local
// ReSharper disable UnusedMember.Local
namespace edjCase.JsonRpc.Core
{
/// <summary>
/// Model representing a Rpc request
/// </summary>
[JsonObject]
publ... | mit | C# |
12a21a9e0a68071a1f5e5aecfe7f765eb052910d | Fix build method visibility | StanleyGoldman/NRules,NRules/NRules,prashanthr/NRules,StanleyGoldman/NRules | src/NRules/NRules.RuleModel/Builders/ActionGroupBuilder.cs | src/NRules/NRules.RuleModel/Builders/ActionGroupBuilder.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
namespace NRules.RuleModel.Builders
{
/// <summary>
/// Builder to compose a group of rule actions.
/// </summary>
public class ActionGroupBuilder : RuleElementBuilder, IBuilder<ActionGroupElement>
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
namespace NRules.RuleModel.Builders
{
/// <summary>
/// Builder to compose a group of rule actions.
/// </summary>
public class ActionGroupBuilder : RuleElementBuilder, IBuilder<ActionGroupElement>
{
... | mit | C# |
06720ca68077eeb545932e881d5413f2bb1bf784 | Initialize AggregateRepository only for CommandConsumer | Elders/Cronus,Elders/Cronus | src/Elders.Cronus/Properties/AssemblyInfo.cs | src/Elders.Cronus/Properties/AssemblyInfo.cs | // <auto-generated/>
using System.Reflection;
[assembly: AssemblyTitleAttribute("Elders.Cronus")]
[assembly: AssemblyDescriptionAttribute("Elders.Cronus")]
[assembly: AssemblyProductAttribute("Elders.Cronus")]
[assembly: AssemblyVersionAttribute("1.2.8")]
[assembly: AssemblyInformationalVersionAttribute("1.2.8")]
[as... | // <auto-generated/>
using System.Reflection;
[assembly: AssemblyTitleAttribute("Elders.Cronus")]
[assembly: AssemblyDescriptionAttribute("Elders.Cronus")]
[assembly: AssemblyProductAttribute("Elders.Cronus")]
[assembly: AssemblyVersionAttribute("1.2.7")]
[assembly: AssemblyInformationalVersionAttribute("1.2.7")]
[as... | apache-2.0 | C# |
da0114bb9264952cc84f2656df801f5cf3b9bc90 | use loose comparison in GetRecords | nerai/CMenu | src/ExampleMenu/Recording/FileRecordStore.cs | src/ExampleMenu/Recording/FileRecordStore.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace ExampleMenu.Recording
{
/// <summary>
/// Stores records to files
/// </summary>
public class FileRecordStore : IRecordStore
{
public FileRecordStore ()
{
RecordDirectory = ".\\Records\\";
}
... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace ExampleMenu.Recording
{
/// <summary>
/// Stores records to files
/// </summary>
public class FileRecordStore : IRecordStore
{
public FileRecordStore ()
{
RecordDirectory = ".\\Records\\";
}
... | mit | C# |
f6401567875ceffee7b4d720d9cd7e6616c16dda | Include missing fields. | planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell | src/Firehose.Web/Authors/MaximilianLærum.cs | src/Firehose.Web/Authors/MaximilianLærum.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class MaximilianLærum : IAmACommunityMember
{
public string FirstName => "Maximilian";
public str... | public class MaximilianLærum : IAmACommunityMember
{
public string FirstName => "Maximilian";
public string LastName => "Lærum";
public string ShortBioOrTagLine => "PowerShell enthusiast";
public string StateOrRegion => "Norway";
public string TwitterHandle => "tr4psec";
... | mit | C# |
87fbb45099a39c9942424033c11ddf537ea142a6 | Fix comment | adamhathcock/sharpcompress,adamhathcock/sharpcompress,adamhathcock/sharpcompress | src/SharpCompress/Common/Entry.cs | src/SharpCompress/Common/Entry.cs | using System;
using System.Collections.Generic;
namespace SharpCompress.Common
{
public abstract class Entry : IEntry
{
/// <summary>
/// The File's 32 bit CRC Hash
/// </summary>
public abstract long Crc { get; }
/// <summary>
/// The string key of the file in... | using System;
using System.Collections.Generic;
namespace SharpCompress.Common
{
public abstract class Entry : IEntry
{
/// <summary>
/// The File's 32 bit CRC Hash
/// </summary>
public abstract long Crc { get; }
/// <summary>
/// The string key of the file in... | mit | C# |
bbae674e231454355601690b47ad1a596ce03ee8 | 修改 Welcome view 接收 view Object. | NemoChenTW/MvcMovie,NemoChenTW/MvcMovie,NemoChenTW/MvcMovie | src/MvcMovie/Views/HelloWorld/Welcome.cshtml | src/MvcMovie/Views/HelloWorld/Welcome.cshtml | @{
ViewData["Title"] = "About";
}
<h2>Welcome</h2>
<ul>
@for (int i = 0; i < (int)ViewData["NumTimes"]; i++)
{
<li>@ViewData["Message"]</li>
}
</ul> | @*
For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860
*@
@{
}
| apache-2.0 | C# |
10e50ae7a7627eaa713878eec59169338a226118 | Fix MethodInvoker.Invoke to use PreviousCallContainsDebuggerStepInCode | shrah/corert,yizhang82/corert,gregkalapos/corert,botaberg/corert,shrah/corert,krytarowski/corert,botaberg/corert,krytarowski/corert,botaberg/corert,shrah/corert,yizhang82/corert,yizhang82/corert,gregkalapos/corert,tijoytom/corert,yizhang82/corert,krytarowski/corert,gregkalapos/corert,tijoytom/corert,gregkalapos/corert,... | src/System.Private.Reflection.Core/src/Internal/Reflection/Core/Execution/MethodInvoker.cs | src/System.Private.Reflection.Core/src/Internal/Reflection/Core/Execution/MethodInvoker.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;
using System.Reflection;
using System.Diagnostics;
using System.Globalization;
using System.Reflection... | // 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;
using System.Reflection;
using System.Diagnostics;
using System.Globalization;
using System.Reflection... | mit | C# |
ee17b84e25c44dd27f2c96e0eef70156015bc38b | set mezzi db | vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf | src/backend/SO115App.Persistence.MongoDB/GestioneComposizioneMezzi/SetComposizioneMezzi.cs | src/backend/SO115App.Persistence.MongoDB/GestioneComposizioneMezzi/SetComposizioneMezzi.cs | using MongoDB.Driver;
using Persistence.MongoDB;
using SO115App.API.Models.Classi.Composizione;
using SO115App.Models.Servizi.Infrastruttura.Composizione;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace SO115App.Persistence.MongoDB.GestioneComposizioneMezzi
{
public class SetComposizione... | using MongoDB.Driver;
using Persistence.MongoDB;
using SO115App.API.Models.Classi.Composizione;
using SO115App.Models.Servizi.Infrastruttura.Composizione;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace SO115App.Persistence.MongoDB.GestioneComposizioneMezzi
{
public class SetComposizione... | agpl-3.0 | C# |
a3bdd989ba474e9a3df1e95b805ff3456fccf6e5 | Remove OpCode and Task from mapping | TIMEmSYSTEM/slab-mongodb | sources/TIMEmSYSTEM.SemanticLogging.Mongo/EventEntryExtensions.cs | sources/TIMEmSYSTEM.SemanticLogging.Mongo/EventEntryExtensions.cs | using System.Collections.Generic;
using System.Linq;
using Microsoft.Practices.EnterpriseLibrary.SemanticLogging;
using MongoDB.Bson;
namespace TIMEmSYSTEM.SemanticLogging.Mongo
{
internal static class EventEntryExtensions
{
internal static BsonDocument AsBsonDocument(this EventEntry eventEntry)
... | using System.Collections.Generic;
using System.Linq;
using Microsoft.Practices.EnterpriseLibrary.SemanticLogging;
using MongoDB.Bson;
namespace TIMEmSYSTEM.SemanticLogging.Mongo
{
internal static class EventEntryExtensions
{
internal static BsonDocument AsBsonDocument(this EventEntry eventEntry)
... | mit | C# |
2339bdc9663cdc27efb17ae5b020f9c29ebaf985 | Update SslSettingsPartDriver.cs | DonnotRain/Orchard,Praggie/Orchard,vairam-svs/Orchard,andyshao/Orchard,phillipsj/Orchard,dozoft/Orchard,Anton-Am/Orchard,phillipsj/Orchard,omidnasri/Orchard,grapto/Orchard.CloudBust,angelapper/Orchard,omidnasri/Orchard,AndreVolksdorf/Orchard,yersans/Orchard,IDeliverable/Orchard,sfmskywalker/Orchard-Off-The-Grid-Sample-... | src/Orchard.Web/Modules/Orchard.SecureSocketsLayer/Drivers/SslSettingsPartDriver.cs | src/Orchard.Web/Modules/Orchard.SecureSocketsLayer/Drivers/SslSettingsPartDriver.cs | using Orchard.Caching;
using Orchard.ContentManagement;
using Orchard.ContentManagement.Drivers;
using Orchard.ContentManagement.Handlers;
using Orchard.Localization;
using Orchard.SecureSocketsLayer.Models;
namespace Orchard.SecureSocketsLayer.Drivers {
public class SslSettingsPartDriver : ContentPartDriver<SslS... | using Orchard.Caching;
using Orchard.ContentManagement;
using Orchard.ContentManagement.Drivers;
using Orchard.ContentManagement.Handlers;
using Orchard.Localization;
using Orchard.SecureSocketsLayer.Models;
namespace Orchard.SecureSocketsLayer.Drivers {
public class SslSettingsPartDriver : ContentPartDriver<SslS... | bsd-3-clause | C# |
9b4224f3151835fead03ea7bf3e3c939d6bbdb0f | Update twitchsocketclient | Aux/NTwitch,Aux/NTwitch | src/NTwitch.WebSocket/TwitchSocketClient.cs | src/NTwitch.WebSocket/TwitchSocketClient.cs | using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace NTwitch.WebSocket
{
public partial class TwitchSocketClient : ITwitchClient
{
private SocketApiClient SocketClient { get; }
public string SocketUrl { get; }
public TwitchSocketClient() : this(new T... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace NTwitch.WebSocket
{
public partial class TwitchSocketClient : ITwitchClient
{
private SocketApiClient SocketClient { get; }
public string SocketUrl { get; }
public TwitchSocketCl... | mit | C# |
81a64ad8d80b0da269d0a72337ddff112a9d7aa7 | Add new option to redirect to output from command line | Seddryck/Idunn.SqlServer | IdunnSql.Console/ExecuteOptions.cs | IdunnSql.Console/ExecuteOptions.cs | using CommandLine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IdunnSql.Console
{
[Verb("execute", HelpText = "Execute the permission checks defined in a file")]
public class ExecuteOptions
{
[Option('s', "source", R... | using CommandLine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IdunnSql.Console
{
[Verb("execute", HelpText = "Execute the permission checks defined in a file")]
public class ExecuteOptions
{
[Option('s', "source", R... | apache-2.0 | C# |
0eb86139fe8f0daf9dc6893150b701980d90e52d | Mark CharEnumerator as [Serializable] (#11124) | jamesqo/coreclr,mmitche/coreclr,tijoytom/coreclr,James-Ko/coreclr,ragmani/coreclr,russellhadley/coreclr,parjong/coreclr,ruben-ayrapetyan/coreclr,rartemev/coreclr,krytarowski/coreclr,hseok-oh/coreclr,sagood/coreclr,JonHanna/coreclr,ragmani/coreclr,wateret/coreclr,krk/coreclr,jamesqo/coreclr,James-Ko/coreclr,kyulee1/core... | src/mscorlib/shared/System/CharEnumerator.cs | src/mscorlib/shared/System/CharEnumerator.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.
/*============================================================
**
**
**
** Purpose: Enumerates the characters on a s... | // 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.
/*============================================================
**
**
**
** Purpose: Enumerates the characters on a s... | mit | C# |
a15e49c9c32bf9a746096caeb5399806c0398126 | Update AssemblyInfo.cs | robbihun/NStatsD.Client | NStatsD/Properties/AssemblyInfo.cs | NStatsD/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("NStatsD.Client")]
[assembly: AssemblyDesc... | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("NStatsD.Client")]
[assembly: AssemblyDesc... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.