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 |
|---|---|---|---|---|---|---|---|---|
0582d464e7359f40b5db5561f48a3f3c24321719 | Refactor code. | LykkeCity/CompetitionPlatform,LykkeCity/CompetitionPlatform,LykkeCity/CompetitionPlatform | src/CompetitionPlatform/Views/Home/Index.cshtml | src/CompetitionPlatform/Views/Home/Index.cshtml | @using CompetitionPlatform.Models
@model CompetitionPlatform.Models.ProjectViewModels.ProjectListIndexViewModel
@{
ViewData["Title"] = "Home Page";
}
<div class="row projects-filter-buttons">
<div class="col-md-12">
<button type="button" class="btn btn-primary btn-sm">All Projects</button>
... | @using CompetitionPlatform.Models
@model CompetitionPlatform.Models.ProjectViewModels.ProjectListIndexViewModel
@{
ViewData["Title"] = "Home Page";
}
<div class="row projects-filter-buttons">
<div class="col-md-12">
<button type="button" class="btn btn-primary btn-sm">All Projects</button>
... | mit | C# |
7179494179079dfe8f936cf33181c63a296b4409 | Remove Patient Portal Link from the Layout page | EhrgoHealth/CS6440,EhrgoHealth/CS6440 | src/EhrgoHealth.Web/Views/Shared/_Layout.cshtml | src/EhrgoHealth.Web/Views/Shared/_Layout.cshtml | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-in... | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-in... | mit | C# |
c1f148b302a81e743b75452ebea12b184c896f1f | Update Client.cs | pmpu/serverhouse,pmpu/serverhouse,pmpu/serverhouse,pmpu/serverhouse | test_tasks/code/3_chat/Client/Assets/Client.cs | test_tasks/code/3_chat/Client/Assets/Client.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.Threading;
class Client
{
static TcpClient client;//т.к статический, то в одном приложении не может быть два чата
static bool IsRunClient;
public Client(int Port, ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.Threading;
class Client
{
static TcpClient client;//т.к статический, то в одном приложении не может быть два чата
static bool IsRunClient;
public Client(int Port, ... | mit | C# |
83dc931e3854a7e1814a308cf8afe37c5abd5691 | Update XML comment document. | jyuch/ReflectionToStringBuilder | src/ReflectionToStringBuilder/ToStringConfig.cs | src/ReflectionToStringBuilder/ToStringConfig.cs | // Copyright (c) 2015 jyuch
// Released under the MIT license
// https://github.com/jyuch/ReflectionToStringBuilder/blob/master/LICENSE
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Reflection;
namespace Jyuch.ReflectionToStringBuilder
{
/// <summary>
/// Represe... | // Copyright (c) 2015 jyuch
// Released under the MIT license
// https://github.com/jyuch/ReflectionToStringBuilder/blob/master/LICENSE
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Reflection;
namespace Jyuch.ReflectionToStringBuilder
{
/// <summary>
/// Represe... | mit | C# |
99d28cbe130b36ba01b5a36e4c19a885591e83a8 | Update About.cshtml | PomeloFoundation/YuukoBlog,PomeloFoundation/YuukoBlog | src/YuukoBlog/Views/Default/Shared/About.cshtml | src/YuukoBlog/Views/Default/Shared/About.cshtml | @if (Model != null && Model.GetType() != typeof(Post))
{
<div class="sidebar-module sidebar-about">
<h3>ABOUT</h3>
<div class="sidebar-body">
<div class="face"><img src="@ViewBag.AvatarUrl"></div>
<p style="text-align: center"><a href="@ViewBag.AboutUrl">@ViewBag.Site</a></p>
</div>
</div>
... | @if (Model != null && Model.GetType() != typeof(Post))
{
<div class="sidebar-module sidebar-about">
<h3>ABOUT</h3>
<div class="sidebar-body">
<div class="face"><img src="@ViewBag.AvatarUrl"></div>
<p style="text-align: center"><a href="@ViewBag.AboutUrl">@ViewBag.Site</a></p>
<div class... | mit | C# |
2ff2a62cdd2a782c1255f71750c7d0e081a26f1c | Implement RunspaceConfiguration.Scripts | ForNeVeR/Pash,Jaykul/Pash,Jaykul/Pash,Jaykul/Pash,WimObiwan/Pash,sburnicki/Pash,mrward/Pash,ForNeVeR/Pash,mrward/Pash,sburnicki/Pash,WimObiwan/Pash,WimObiwan/Pash,Jaykul/Pash,sillvan/Pash,sburnicki/Pash,mrward/Pash,sburnicki/Pash,WimObiwan/Pash,sillvan/Pash,sillvan/Pash,mrward/Pash,ForNeVeR/Pash,sillvan/Pash,ForNeVeR/P... | Source/System.Management/Automation/Runspaces/RunspaceConfiguration.cs | Source/System.Management/Automation/Runspaces/RunspaceConfiguration.cs | // Copyright (C) Pash Contributors. License: GPL/BSD. See https://github.com/Pash-Project/Pash/
using System;
using System.Management.Automation;
namespace System.Management.Automation.Runspaces
{
public abstract class RunspaceConfiguration
{
private RunspaceConfigurationEntryCollection<CmdletConfigurationEntry> ... | // Copyright (C) Pash Contributors. License: GPL/BSD. See https://github.com/Pash-Project/Pash/
using System;
using System.Management.Automation;
namespace System.Management.Automation.Runspaces
{
public abstract class RunspaceConfiguration
{
private RunspaceConfigurationEntryCollection<CmdletConfigurationEntry> ... | bsd-3-clause | C# |
cac1b5b7ed9aced289a490d40379b81cf9f8fa00 | Fix sample | NRules/NRules,StanleyGoldman/NRules,StanleyGoldman/NRules,prashanthr/NRules | samples/SimpleRulesTest/SimpleRulesTest/Program.cs | samples/SimpleRulesTest/SimpleRulesTest/Program.cs | using NRules;
using NRules.Fluent;
namespace SimpleRulesTest
{
internal class Program
{
private static void Main(string[] args)
{
var dwelling = new Dwelling {Address = "1 Main Street, New York, NY", Type = DwellingTypes.SingleHouse};
var dwelling2 = new Dwelling {Addre... | using NRules;
using NRules.Fluent;
namespace SimpleRulesTest
{
internal class Program
{
private static void Main(string[] args)
{
var dwelling = new Dwelling {Address = "1 Main Street, New York, NY", Type = DwellingTypes.SingleHouse};
var dwelling2 = new Dwelling {Addre... | mit | C# |
3dadf62f7e2fba9717f12def9c1efdbdbe02fa6a | Update lab | tamasflamich/effort | Main/Source/lab/Effort.Lab.EF6/Form_NotMapped.cs | Main/Source/lab/Effort.Lab.EF6/Form_NotMapped.cs | using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data;
using System.Data.Common;
using System.Data.Entity;
using System.Drawing;
using System.Li... | using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data;
using System.Data.Common;
using System.Data.Entity;
using System.Drawing;
using System.Li... | mit | C# |
b2f31cec5484fea0f8abaa445bd8cbd03adeb96d | Update QuadraticBezierDrawNode.cs | wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D | src/Core2D/Modules/Renderer/SkiaSharp/Nodes/QuadraticBezierDrawNode.cs | src/Core2D/Modules/Renderer/SkiaSharp/Nodes/QuadraticBezierDrawNode.cs | #nullable enable
using Core2D.Model.Renderer;
using Core2D.Model.Renderer.Nodes;
using Core2D.ViewModels.Shapes;
using Core2D.ViewModels.Style;
using SkiaSharp;
namespace Core2D.Modules.Renderer.SkiaSharp.Nodes;
internal class QuadraticBezierDrawNode : DrawNode, IQuadraticBezierDrawNode
{
public QuadraticBezierS... | #nullable enable
using Core2D.Model.Renderer;
using Core2D.Model.Renderer.Nodes;
using Core2D.ViewModels.Shapes;
using Core2D.ViewModels.Style;
using SkiaSharp;
namespace Core2D.Modules.Renderer.SkiaSharp.Nodes;
internal class QuadraticBezierDrawNode : DrawNode, IQuadraticBezierDrawNode
{
public QuadraticBezierS... | mit | C# |
05ff447d7da7fdf46a6b994e1797a8aaea525c14 | Fix service collection extensions: New overload having lambda for options, return void and added doc comments. | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Microsoft.AspNetCore.Routing/DependencyInjection/RoutingServiceCollectionExtensions.cs | src/Microsoft.AspNetCore.Routing/DependencyInjection/RoutingServiceCollectionExtensions.cs | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Text.Encodings.Web;
using Microsoft.AspNetCore.Routing;
using Microsoft.AspNetCore.Routing.Internal;
using Microsoft.Extensio... | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Text.Encodings.Web;
using Microsoft.AspNetCore.Routing;
using Microsoft.AspNetCore.Routing.Internal;
using Microsoft.Extensio... | apache-2.0 | C# |
9632d27eb76bfc2b6e46b0b30cbeb21f0c42182a | Update BaseCommitmentOrchestrator.cs | SkillsFundingAgency/das-providerapprenticeshipsservice,SkillsFundingAgency/das-providerapprenticeshipsservice,SkillsFundingAgency/das-providerapprenticeshipsservice | src/SFA.DAS.ProviderApprenticeshipsService.Web/Orchestrators/BaseCommitmentOrchestrator.cs | src/SFA.DAS.ProviderApprenticeshipsService.Web/Orchestrators/BaseCommitmentOrchestrator.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using MediatR;
using SFA.DAS.HashingService;
using SFA.DAS.ProviderApprenticeshipsService.Application.Exceptions;
using SFA.DAS.ProviderApprenticeshipsService.Domain.Interfaces;
using SFA.DAS.ProviderApprenticeshipsService.... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using MediatR;
using SFA.DAS.Commitments.Api.Types;
using SFA.DAS.Commitments.Api.Types.Commitment;
using SFA.DAS.Commitments.Api.Types.Commitment.Types;
using SFA.DAS.Commitments.Api.Types.TrainingProgramme;
using SFA.DAS.... | mit | C# |
f268f6b5c664f740edf57c8d297a65732dd7b90d | Add InitializeCustomTypes | quails4Eva/NSwag,quails4Eva/NSwag,NSwag/NSwag,NSwag/NSwag,quails4Eva/NSwag,quails4Eva/NSwag,NSwag/NSwag,RSuter/NSwag,RSuter/NSwag,RSuter/NSwag,RSuter/NSwag,NSwag/NSwag,RSuter/NSwag | src/NSwag.Commands/Commands/CodeGeneration/CodeGeneratorCommandBase.cs | src/NSwag.Commands/Commands/CodeGeneration/CodeGeneratorCommandBase.cs | //-----------------------------------------------------------------------
// <copyright file="CodeGeneratorCommandBase.cs" company="NSwag">
// Copyright (c) Rico Suter. All rights reserved.
// </copyright>
// <license>https://github.com/NSwag/NSwag/blob/master/LICENSE.md</license>
// <author>Rico Suter, mail@rsuter... | //-----------------------------------------------------------------------
// <copyright file="CodeGeneratorCommandBase.cs" company="NSwag">
// Copyright (c) Rico Suter. All rights reserved.
// </copyright>
// <license>https://github.com/NSwag/NSwag/blob/master/LICENSE.md</license>
// <author>Rico Suter, mail@rsuter... | mit | C# |
d6eed272172abb83bf79c8a1cf80b3c0abf5e520 | teste c | Thiago-Caramelo/patchsearch | Program.cs | Program.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace PatchSearch
{
// teste teste
class Program
{
static void Main(string[] args)
{
if (args == null || args.Length == 0)
{
return;
}
... | using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace PatchSearch
{
// teste teste
class Program
{
static void Main(string[] args)
{
if (args == null || args.Length == 0)
{
return;
}
... | mit | C# |
88af7a93cb8a471649f323282fbc46e0bca7115b | fix Items mapping | williamverdolini/CQRS-ES-Todos,williamverdolini/CQRS-ES-Todos,williamverdolini/CQRS-ES-Todos | Todo.QueryStack/Mappers/NotifierMapperProfile.cs | Todo.QueryStack/Mappers/NotifierMapperProfile.cs | using AutoMapper;
using Todo.QueryStack.Model;
namespace Todo.QueryStack.Mappers
{
class NotifierMapperProfile : Profile
{
protected override void Configure()
{
CreateMap<ToDoList, NotifiedToDoList>()
.ForMember(dest => dest.Items, opt => opt.Ignore());
... | using AutoMapper;
using Todo.QueryStack.Model;
namespace Todo.QueryStack.Mappers
{
class NotifierMapperProfile : Profile
{
protected override void Configure()
{
CreateMap<ToDoList, NotifiedToDoList>();
CreateMap<ToDoItem, NotifiedToDoItem>();
}
}
}
| mit | C# |
84a8dfed80b96351ac12178c9a355f003672008d | remove whitespace | aloisdg/algo | Algo/FisherYates/Program.cs | Algo/FisherYates/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
namespace FisherYates
{
class Program
{
static void Main()
{
var nums = Enumerable.Range(0, 10);
var numsShuffled = nums.Shuffle<int>();
foreach (var item in numsShuffled)
Console.Write("{0} ", item);
Console.WriteLine();
va... | using System;
using System.Collections.Generic;
namespace FisherYates
{
class Program
{
static void Main(string[] args)
{
var nums = Enumerable.Range(0, 10);
var numsShuffled = nums.Shuffle<int>();
foreach (var item in numsShuffled)
Console.Write("{0... | bsd-3-clause | C# |
bb034d24f9e3e8d42875522cccc6b066d3f17cec | remove pre-release designation. | ume05rw/Xb.File.Tree | Xb.Net.SmbTree.STD1.3/Properties/AssemblyInfo.cs | Xb.Net.SmbTree.STD1.3/Properties/AssemblyInfo.cs | using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
// アセンブリに関連付けられている情報を変更するには、
// これらの属性値を変更してください。
[assembly: AssemblyTitle("Xb.Net.SmbTree")]
[assembly: AssemblyDescription("Ready to Xamarin & .NET Core... | using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
// アセンブリに関連付けられている情報を変更するには、
// これらの属性値を変更してください。
[assembly: AssemblyTitle("Xb.Net.SmbTree")]
[assembly: AssemblyDescription("Ready to Xamarin & .NET Core... | lgpl-2.1 | C# |
e39dce5d4c4d3f862a22cf5a39233507d6c391c4 | Fix typo from copy-pasted build template | FiniteReality/Discord.Addons.EmojiTools,foxbot/Discord.Addons.EmojiTools,foxbot/Discord.Addons.EmojiTools,FiniteReality/Discord.Addons.EmojiTools | build.cake | build.cake | #addin nuget:?package=NuGet.Core&version=2.12.0
#addin "Cake.ExtendedNuGet"
var MyGetKey = EnvironmentVariable("MYGET_KEY");
string BuildNumber = EnvironmentVariable("TRAVIS_BUILD_NUMBER");
Task("Restore")
.Does(() =>
{
var settings = new DotNetCoreRestoreSettings
{
Sources = new[] { "https://www.... | #addin nuget:?package=NuGet.Core&version=2.12.0
#addin "Cake.ExtendedNuGet"
var MyGetKey = EnvironmentVariable("MYGET_KEY");
string BuildNumber = EnvironmentVariable("TRAVIS_BUILD_NUMBER");
Task("Restore")
.Does(() =>
{
var settings = new DotNetCoreRestoreSettings
{
Sources = new[] { "https://www.... | isc | C# |
f62825fa1ebb57d189157102cbc5d0a470004256 | Simplify build script | jamesmontemagno/MediaPlugin,jamesmontemagno/MediaPlugin | build.cake | build.cake | var TARGET = Argument ("target", Argument ("t", "Default"));
var VERSION = EnvironmentVariable ("APPVEYOR_BUILD_VERSION") ?? Argument("version", "0.0.9999");
var CONFIG = Argument("configuration", EnvironmentVariable ("CONFIGURATION") ?? "Release");
var SLN = "./src/Media.sln";
Task("Libraries").Does(()=>
{
NuGetRest... | #addin nuget:?package=Cake.XCode&version=2.0.13
#addin nuget:?package=Cake.Xamarin.Build&version=2.0.18
#addin nuget:?package=Cake.Xamarin&version=1.3.0.15
#addin nuget:?package=Cake.FileHelpers&version=1.0.4
#addin nuget:?package=Cake.Yaml&version=1.0.3
#addin nuget:?package=Cake.Json&version=1.0.2
var TARGET = Argum... | mit | C# |
c4e85a25a140fa0c4955d7887099ccb69260902f | update formatting | designsbyjuan/UnityLib | LookDownCanvas.cs | LookDownCanvas.cs | using UnityEngine;
using UnityEngine.EventSystems;
using System.Collections;
using VRStandardAssets.Utils;
public class LookDownCanvas : MonoBehaviour {
private CanvasGroup canvasGroup;
private UIFader uiFader;
private CardboardMain main;
public float UIDistance = 300f;
public float UIHeight = -400f;
publ... | using UnityEngine;
using UnityEngine.EventSystems;
using System.Collections;
using VRStandardAssets.Utils;
public class LookDownCanvas : MonoBehaviour {
private CanvasGroup canvasGroup;
private UIFader uiFader;
private CardboardMain main;
public float UIDistance = 300f;
public float UIHeight = -400f;
publ... | mit | C# |
397971c6313eff22d645c07d782547a4e7683a2e | Change FrameDataBundle.Frames into an IList | ppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,ppy/osu,peppy/osu,NeoAdonis/osu | osu.Game/Online/Spectator/FrameDataBundle.cs | osu.Game/Online/Spectator/FrameDataBundle.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
#nullable enable
using System;
using System.Collections.Generic;
using MessagePack;
using Newtonsoft.Json;
using osu.Game.Replays.Legacy;
using osu.Game.Scoring;
namesp... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
#nullable enable
using System;
using System.Collections.Generic;
using MessagePack;
using Newtonsoft.Json;
using osu.Game.Replays.Legacy;
using osu.Game.Scoring;
namesp... | mit | C# |
8c89354b36638a36def5a25ea70e6f96ac738c96 | Remove extra whitespace | DrabWeb/osu,naoey/osu,NeoAdonis/osu,NeoAdonis/osu,naoey/osu,smoogipoo/osu,2yangk23/osu,ZLima12/osu,peppy/osu,UselessToucan/osu,Frontear/osuKyzer,EVAST9919/osu,smoogipoo/osu,ppy/osu,DrabWeb/osu,UselessToucan/osu,UselessToucan/osu,DrabWeb/osu,ppy/osu,peppy/osu,peppy/osu,johnneijzen/osu,Nabile-Rahmani/osu,2yangk23/osu,joh... | osu.Game/Overlays/BeatmapSet/HeaderButton.cs | osu.Game/Overlays/BeatmapSet/HeaderButton.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.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Graphics.UserInterface;
using osu.Framework.Allocation;
namespace osu.Game.Overlays.Beatm... | // 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.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Graphics.UserInterface;
using osu.Framework.Allocation;
namespace osu.Game.Overlays.Beatm... | mit | C# |
4caae55d8e8357abddcfe1a1c0b2317f571f75a5 | Disable failed tests for issue 19341. (#19395) | rubo/corefx,jlin177/corefx,yizhang82/corefx,JosephTremoulet/corefx,billwert/corefx,YoupHulsebos/corefx,DnlHarvey/corefx,krytarowski/corefx,wtgodbe/corefx,elijah6/corefx,richlander/corefx,mmitche/corefx,krytarowski/corefx,zhenlan/corefx,nbarbettini/corefx,parjong/corefx,shimingsg/corefx,stone-li/corefx,tijoytom/corefx,r... | src/System.Configuration.ConfigurationManager/tests/System/Configuration/UriSectionTests.cs | src/System.Configuration.ConfigurationManager/tests/System/Configuration/UriSectionTests.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.Configuration;
using Xunit;
namespace System.ConfigurationTests
{
public class UriSectionTests
... | // 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.Configuration;
using Xunit;
namespace System.ConfigurationTests
{
public class UriSectionTests
... | mit | C# |
d546cc0abbb4f37555263b3634481e7ceca66aff | Update AssemblyInfo.cs | EnableSoftware/DelimitedDataParser | src/DelimitedDataParser/Properties/AssemblyInfo.cs | src/DelimitedDataParser/Properties/AssemblyInfo.cs | using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Delimited Data Parser")]
[assembly: AssemblyProduct("Delimited Data Parser")]
[assembly: AssemblyDescription("C# library for parsing and exporting tabular data in delimited for... | using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Delimited Data Parser")]
[assembly: AssemblyProduct("Delimited Data Parser")]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
[assembly: InternalsVisibleTo("Delimi... | mit | C# |
f82a7999141cee0b53bf36944b8b2ba8312e2037 | Update bot builder history to 3.0.5 | yakumo/BotBuilder,msft-shahins/BotBuilder,stevengum97/BotBuilder,yakumo/BotBuilder,yakumo/BotBuilder,stevengum97/BotBuilder,msft-shahins/BotBuilder,msft-shahins/BotBuilder,stevengum97/BotBuilder,msft-shahins/BotBuilder,yakumo/BotBuilder,stevengum97/BotBuilder | CSharp/Library/Microsoft.Bot.Builder.History/Properties/AssemblyInfo.cs | CSharp/Library/Microsoft.Bot.Builder.History/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("Microsoft.Bot.Builder.History")]
[... | 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("Microsoft.Bot.Builder.History")]
[... | mit | C# |
32bb7596aec333564657c1dff48c6e4a224c33b8 | Correct grammar error in comment. | thenerdery/UmbracoVault,thenerdery/UmbracoVault,thenerdery/UmbracoVault | UmbracoVault/Collections/TypeAliasSet.cs | UmbracoVault/Collections/TypeAliasSet.cs | using System;
using System.Collections.Generic;
using System.Globalization;
using Umbraco.Core;
using UmbracoVault.Comparers;
using UmbracoVault.Extensions;
namespace UmbracoVault.Collections
{
public class TypeAliasSet : ReadOnlySet<string>
{
private TypeAliasSet()
: base(new HashSet<stri... | using System;
using System.Collections.Generic;
using System.Globalization;
using Umbraco.Core;
using UmbracoVault.Comparers;
using UmbracoVault.Extensions;
namespace UmbracoVault.Collections
{
public class TypeAliasSet : ReadOnlySet<string>
{
private TypeAliasSet()
: base(new HashSet<stri... | apache-2.0 | C# |
ff78430ed481550aa744295b960afa6d67391b69 | Move null check into FEATURE_THREAD_THREADPOOL section. | sshnet/SSH.NET,Bloomcredit/SSH.NET,miniter/SSH.NET | src/Renci.SshNet/Abstractions/ThreadAbstraction.cs | src/Renci.SshNet/Abstractions/ThreadAbstraction.cs | using System;
namespace Renci.SshNet.Abstractions
{
internal static class ThreadAbstraction
{
/// <summary>
/// Suspends the current thread for the specified number of milliseconds.
/// </summary>
/// <param name="millisecondsTimeout">The number of milliseconds for which the th... | using System;
namespace Renci.SshNet.Abstractions
{
internal static class ThreadAbstraction
{
/// <summary>
/// Suspends the current thread for the specified number of milliseconds.
/// </summary>
/// <param name="millisecondsTimeout">The number of milliseconds for which the th... | mit | C# |
8d0d92fd3c3f2f15024feaf0dbf0bad9033649f0 | Allow $ as import root | azarkevich/VssSvnConverter | VssSvnConverter/ext/VssItemExtensions.cs | VssSvnConverter/ext/VssItemExtensions.cs | using System;
using SourceSafeTypeLib;
namespace vsslib
{
public static class VssItemExtensions
{
/// <summary>
/// If VSS conatins $/Project1 but requested $/project1, then case will not be fixed and $/project1 will be retuned.
/// This methor return case to normal -> $/Project1
/// </summary>
/// <param... | using System;
using SourceSafeTypeLib;
namespace vsslib
{
public static class VssItemExtensions
{
/// <summary>
/// If VSS conatins $/Project1 but requested $/project1, then case will not be fixed and $/project1 will be retuned.
/// This methor return case to normal -> $/Project1
/// </summary>
/// <param... | mit | C# |
9f2fb488d67c56b4a09b687725e97ed1612a8673 | Remove old implementation | kappa7194/otp | Albireo.Otp.Library/Base32.cs | Albireo.Otp.Library/Base32.cs | namespace Albireo.Otp.Library
{
using System;
internal static class Base32
{
internal static byte[] ToBytes(string input)
{
throw new NotImplementedException();
}
internal static string ToString(byte[] input)
{
throw new NotImplementedExcept... | namespace Albireo.Otp.Library
{
using System;
using System.Diagnostics.Contracts;
using System.Linq;
internal static class Base32
{
internal static byte[] ToBytes(string input)
{
Contract.Requires<ArgumentNullException>(input != null);
Contract.Ensures(Contr... | mit | C# |
d9421a8c9fb740d81d1fc28da7d371d3dca01db8 | Fix #2107 by removing some remaining T4MVC gunk | ScottShingler/NuGetGallery,ScottShingler/NuGetGallery,mtian/SiteExtensionGallery,projectkudu/SiteExtensionGallery,skbkontur/NuGetGallery,skbkontur/NuGetGallery,skbkontur/NuGetGallery,ScottShingler/NuGetGallery,grenade/NuGetGallery_download-count-patch,mtian/SiteExtensionGallery,grenade/NuGetGallery_download-count-patch... | src/NuGetGallery/Views/CuratedPackages/CreateCuratedPackageForm.cshtml | src/NuGetGallery/Views/CuratedPackages/CreateCuratedPackageForm.cshtml | @model CreateCuratedPackageRequest
@{
Layout = "~/Views/Shared/TwoColumnLayout.cshtml";
}
@section SideColumn {
<p><strong>Note: </strong>Packages might also be automatically included in your curated feed based on pre-defined rules. This form is to manually include a package in the curated feed, which will ove... | @model CreateCuratedPackageRequest
@{
Layout = "~/Views/Shared/TwoColumnLayout.cshtml";
}
@section SideColumn {
<p><strong>Note: </strong>Packages might also be automatically included in your curated feed based on pre-defined rules. This form is to manually include a package in the curated feed, which will ove... | apache-2.0 | C# |
482b74201030b6555333d1408ce87f8d4a230278 | Add description to assembly. | Bitmapped/UmbIntranetRestrict,Bitmapped/UmbIntranetRestrict,Bitmapped/UmbIntranetRestrict | src/UmbIntranetRestrict/Properties/AssemblyInfo.cs | src/UmbIntranetRestrict/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTit... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTit... | mit | C# |
b571978e930fc0050145d5e919b450dc1e6aecf9 | Update ConsoleWriterActor.cs | abogushevsky/akka-bootcamp,xxelka/akka-bootcamp,matovich/akka-bootcamp,DevEnable/akka-bootcamp,nerubseran/akka-bootcamp,BredStik/akka-bootcamp,mmisztal1980/akka-bootcamp,sjpence/akka-bootcamp,billyxing/akka-bootcamp,HenrikHagberg/akka-bootcamp,ng-martin/akka-bootcamp,Aaronontheweb/akka-bootcamp,robinwyss/akka-bootcamp,... | src/Unit-1/lesson1/Completed/ConsoleWriterActor.cs | src/Unit-1/lesson1/Completed/ConsoleWriterActor.cs | using System;
using Akka.Actor;
namespace WinTail
{
/// <summary>
/// Actor responsible for serializing message writes to the console.
/// (write one message at a time, champ :)
/// </summary>
class ConsoleWriterActor : UntypedActor
{
protected override void OnReceive(object message)
... | using System;
using Akka.Actor;
namespace WinTail
{
/// <summary>
/// Actor responsible for serializing message writes to the console.
/// (write one message at a time, champ :)
/// </summary>
class ConsoleWriterActor : UntypedActor
{
protected override void OnReceive(object message)
... | apache-2.0 | C# |
f5b460a9cd7a44fbc26726fc6c7228c9952dab30 | Remove public length property | mstrother/BmpListener | BmpListener/Bgp/Capability.cs | BmpListener/Bgp/Capability.cs | using System;
using Newtonsoft.Json;
namespace BmpListener.Bgp
{
public abstract class Capability
{
private byte CapabilityLength;
public enum CapabilityCode : byte
{
Multiprotocol = 1,
RouteRefresh = 2,
//TODO capability code 4
Graceful... | using System;
using Newtonsoft.Json;
namespace BmpListener.Bgp
{
public abstract class Capability
{
public enum CapabilityCode : byte
{
Multiprotocol = 1,
RouteRefresh = 2,
//TODO capability code 4
GracefulRestart = 64,
FourOctetAs = ... | mit | C# |
53817cce14929b6d425497291fd2695a773bcc15 | update homepage | alimon808/contoso-university,alimon808/contoso-university,alimon808/contoso-university | ContosoUniversity.Web/Views/Home/Index.cshtml | ContosoUniversity.Web/Views/Home/Index.cshtml | @{
ViewData["Title"] = "Home Page";
}
<div class="jumbotron">
<h1>Contoso University</h1>
</div>
<div class="row">
<div class="col-md-4">
<p>
Contoso University is a place for learning AspNetCore and related technologies. This demo application is an amalgamation of smaller demo appli... | @{
ViewData["Title"] = "Home Page";
}
<div class="jumbotron">
<h1>Contoso University</h1>
</div>
<div class="row">
<div class="col-md-4">
<p>
Contoso University is a sample application that demonstrates how to use Entity Framework Core in an ASP.Net Core MVC web application.
<... | mit | C# |
26db85d24d4da39cd3cec280d952fea1d967c959 | add missing ToastrOptions | WasimAhmad/Serenity,rolembergfilho/Serenity,volkanceylan/Serenity,rolembergfilho/Serenity,rolembergfilho/Serenity,WasimAhmad/Serenity,WasimAhmad/Serenity,volkanceylan/Serenity,dfaruque/Serenity,rolembergfilho/Serenity,dfaruque/Serenity,WasimAhmad/Serenity,dfaruque/Serenity,volkanceylan/Serenity,dfaruque/Serenity,WasimA... | Serenity.Script.Imports/Toastr/ToastrOptions.cs | Serenity.Script.Imports/Toastr/ToastrOptions.cs | using System;
using System.Runtime.CompilerServices;
namespace Serenity
{
/// <summary>
/// Options for the jQuery toastr plugin
/// </summary>
[Imported, Serializable]
public class ToastrOptions
{
public object Target { get; set; }
public string ContainerId { get; ... | using System;
using System.Runtime.CompilerServices;
namespace Serenity
{
/// <summary>
/// Options for the jQuery toastr plugin
/// </summary>
[Imported, Serializable]
public class ToastrOptions
{
public object Target { get; set; }
public string ContainerId { get; ... | mit | C# |
3262f6c864c8c958e1a13ac48f3b011b843ed70a | bump version | raml-org/raml-dotnet-parser,raml-org/raml-dotnet-parser | source/RAML.Parser/Properties/AssemblyInfo.cs | source/RAML.Parser/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("RAM... | 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("RAM... | apache-2.0 | C# |
a8f4baeba52cc2d09bde2a178561e2be74642510 | Use json in WCF REST response. | tlaothong/lab-swp-ws-kiatnakin,tlaothong/lab-swp-ws-kiatnakin,tlaothong/lab-swp-ws-kiatnakin | LabWsKiatnakin/DemoWcfRest/DemoService.svc.cs | LabWsKiatnakin/DemoWcfRest/DemoService.svc.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Activation;
using System.ServiceModel.Web;
using System.Text;
namespace DemoWcfRest
{
[ServiceContract(Namespace = "")]
[AspNetCompatibilityRequirements(R... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Activation;
using System.ServiceModel.Web;
using System.Text;
namespace DemoWcfRest
{
[ServiceContract(Namespace = "")]
[AspNetCompatibilityRequirements(R... | mit | C# |
eb89ecd86653290be0089f71fbd6d65575b80c47 | put x-ms-routing-name in cookie when calling auth provider | projectkudu/SimpleWAWS,projectkudu/TryAppService,davidebbo/SimpleWAWS,projectkudu/SimpleWAWS,projectkudu/SimpleWAWS,projectkudu/TryAppService,projectkudu/SimpleWAWS,projectkudu/TryAppService,fashaikh/SimpleWAWS,davidebbo/SimpleWAWS,projectkudu/TryAppService,fashaikh/SimpleWAWS,fashaikh/SimpleWAWS,davidebbo/SimpleWAWS,f... | 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# |
448bed012392bf085346aa45e269deb92ef000ca | Fix test namespace | RadicalFx/Radical.Windows | src/Radical.Windows.Tests/API/APIApprovals.cs | src/Radical.Windows.Tests/API/APIApprovals.cs | using ApprovalTests;
using ApprovalTests.Reporters;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using PublicApiGenerator;
using System;
using System.Linq;
using System.Runtime.CompilerServices;
namespace Radical.Windows.Tests.API
{
[TestClass]
public class APIApprovals
{
[TestMethod]
... | using ApprovalTests;
using ApprovalTests.Reporters;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using PublicApiGenerator;
using Radical.Windows;
using System;
using System.Linq;
using System.Runtime.CompilerServices;
namespace Radical.Tests.API
{
[TestClass]
public class APIApprovals
{
[Te... | mit | C# |
b0e2933cf7fe58ed924b6e18a9066beec5245394 | Add function to get background color | emoacht/Monitorian | Source/Monitorian.Supplement/UIInformation.cs | Source/Monitorian.Supplement/UIInformation.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
using Microsoft.Win32;
using Windows.UI.ViewManagement;
namespace Monitorian.Supplement
{
/// <summary>
/// A wrapper class of <see cref="Windows.UI.ViewManagem... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
using Windows.UI.ViewManagement;
namespace Monitorian.Supplement
{
/// <summary>
/// A wrapper class of <see cref="Windows.UI.ViewManagement.UISettings"/>
/// ... | mit | C# |
1f2cef1a4585e28e4bc5fb555c8cd2ce359b4cc8 | Update ICurrentCommandStore.cs | tiksn/TIKSN-Framework | TIKSN.Core/PowerShell/ICurrentCommandStore.cs | TIKSN.Core/PowerShell/ICurrentCommandStore.cs | namespace TIKSN.PowerShell
{
public interface ICurrentCommandStore
{
void SetCurrentCommand(CommandBase command);
}
}
| namespace TIKSN.PowerShell
{
public interface ICurrentCommandStore
{
void SetCurrentCommand(CommandBase command);
}
} | mit | C# |
d1ba9e025205fd9f4bc0f2e9f868a93f41be0ddd | Test disable of logging | jherby2k/AudioWorks | AudioWorks/tests/AudioWorks.Common.Tests/AudioEncodingExceptionTests.cs | AudioWorks/tests/AudioWorks.Common.Tests/AudioEncodingExceptionTests.cs | /* Copyright 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
version.
Audi... | /* Copyright 2018 Jeremy Herbison
This file is part of AudioWorks.
AudioWorks is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
version.
Audi... | agpl-3.0 | C# |
7b1311a55c9a2d4173ac3f3c472007f87668a827 | Fix copy/paste error in comments. | punker76/taglib-sharp,Clancey/taglib-sharp,hwahrmann/taglib-sharp,archrival/taglib-sharp,archrival/taglib-sharp,CamargoR/taglib-sharp,hwahrmann/taglib-sharp,Clancey/taglib-sharp,CamargoR/taglib-sharp,Clancey/taglib-sharp,mono/taglib-sharp,punker76/taglib-sharp | src/TagLib/Cr2/Codec.cs | src/TagLib/Cr2/Codec.cs | //
// Codec.cs:
//
// Author:
// Mike Gemuende (mike@gemuende.be)
//
// Copyright (C) 2010 Mike Gemuende
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License version
// 2.1 as published by the Free Software Foundation.
//
// This li... | //
// Codec.cs:
//
// Author:
// Mike Gemuende (mike@gemuende.be)
//
// Copyright (C) 2010 Mike Gemuende
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License version
// 2.1 as published by the Free Software Foundation.
//
// This li... | lgpl-2.1 | C# |
39990724988d99157d99aa2af85a9386ae719fde | Update "Configuration" | DRFP/Personal-Library | _Build/PersonalLibrary/Library/Configuration.cs | _Build/PersonalLibrary/Library/Configuration.cs | using Google.Apis.Books.v1;
using Google.Apis.Services;
namespace Library {
public class Configuration {
public const string applicationName = "PersonalLibrary";
public const string apiKey = "AIzaSyCeOsGdlQrvY5KpiHlJAA9m5Fn_ANhcR0I";
public const string databaseName = "PersonalLibrary.db";... | namespace Library {
public class Configuration {
public const string DatabaseName = "PersonalLibrary.db";
}
} | mit | C# |
6abb8d3745a03be8798c77a9b572b227009feba9 | Change default popup title text | danielchalmers/SteamAccountSwitcher | SteamAccountSwitcher/Popup.cs | SteamAccountSwitcher/Popup.cs | #region
using System.Windows;
#endregion
namespace SteamAccountSwitcher
{
internal class Popup
{
public static MessageBoxResult Show(string text, MessageBoxButton btn = MessageBoxButton.OK,
MessageBoxImage img = MessageBoxImage.Information, MessageBoxResult defaultbtn = MessageBoxResult.... | #region
using System.Windows;
#endregion
namespace SteamAccountSwitcher
{
internal class Popup
{
public static MessageBoxResult Show(string text, MessageBoxButton btn = MessageBoxButton.OK,
MessageBoxImage img = MessageBoxImage.Information, MessageBoxResult defaultbtn = MessageBoxResult.... | mit | C# |
73a87eb9de4115cd9ef3da780774c1c1abc33985 | fix issue where code blowing up when capacity, etc. are null | crdschurch/crds-signin-checkin,crdschurch/crds-signin-checkin,crdschurch/crds-signin-checkin,crdschurch/crds-signin-checkin | SignInCheckIn/MinistryPlatform.Translation/Models/DTO/MpEventRoomDto.cs | SignInCheckIn/MinistryPlatform.Translation/Models/DTO/MpEventRoomDto.cs | using MinistryPlatform.Translation.Models.Attributes;
using Newtonsoft.Json;
namespace MinistryPlatform.Translation.Models.DTO
{
[MpRestApiTable(Name = "Event_Rooms")]
public class MpEventRoomDto
{
[JsonProperty(PropertyName = "Event_Room_ID", NullValueHandling = NullValueHandling.Ignore)]
... | using MinistryPlatform.Translation.Models.Attributes;
using Newtonsoft.Json;
namespace MinistryPlatform.Translation.Models.DTO
{
[MpRestApiTable(Name = "Event_Rooms")]
public class MpEventRoomDto
{
[JsonProperty(PropertyName = "Event_Room_ID", NullValueHandling = NullValueHandling.Ignore)]
... | bsd-2-clause | C# |
47fd66c0c300c4fa1e6a9338c487485ec677a4c7 | Add OnboardingService tests | zmira/abremir.AllMyBricks | abremir.AllMyBricks.Onboarding.Tests/Services/OnboardingServiceTests.cs | abremir.AllMyBricks.Onboarding.Tests/Services/OnboardingServiceTests.cs | using abremir.AllMyBricks.Device.Interfaces;
using abremir.AllMyBricks.Onboarding.Interfaces;
using abremir.AllMyBricks.Onboarding.Services;
using FluentAssertions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NSubstitute;
namespace abremir.AllMyBricks.Onboarding.Tests.Services
{
[TestClass]
publ... | using FluentAssertions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NSubstitute;
namespace abremir.AllMyBricks.Onboarding.Tests.Services
{
[TestClass]
public class OnboardingServiceTests
{
[ClassInitialize]
#pragma warning disable RCS1163 // Unused parameter.
#pragma warning disable... | mit | C# |
8bb135b7726e0db8931238e4cf02ec5a7440e4d1 | Add two helper functions to YGOClient | IceYGO/ygosharp,Zayelion/ygosharp | YGOSharp.Network/YGOClient.cs | YGOSharp.Network/YGOClient.cs | using System.IO;
using YGOSharp.Network.Enums;
namespace YGOSharp.Network
{
public class YGOClient : BinaryClient
{
public YGOClient()
: base(new NetworkClient())
{
}
public YGOClient(NetworkClient client)
: base(client)
{
... | using System.IO;
namespace YGOSharp.Network
{
public class YGOClient : BinaryClient
{
public YGOClient()
: base(new NetworkClient())
{
}
public YGOClient(NetworkClient client)
: base(client)
{
}
public void Send(... | mit | C# |
4016fe1e19695637ea0a954b63ec633fcff2d5b4 | Adjust profile ruleset selector to new design | peppy/osu,ppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,peppy/osu | osu.Game/Overlays/Profile/Header/Components/ProfileRulesetTabItem.cs | osu.Game/Overlays/Profile/Header/Components/ProfileRulesetTabItem.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.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Game.Rulesets;
using osuTK;
using osuTK.Graphics;
namespace osu.Game.Overlays.Profile.Head... | // 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.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Game.Rulesets;
using osuTK;
using osuTK.Graphics;
namespace osu.Game.Overlays.Profile.Head... | mit | C# |
eee2191491f549dc29227892104fdbc34e4e50a8 | Update OrderSaga.cs | eclaus/docs.particular.net,WojcikMike/docs.particular.net,pedroreys/docs.particular.net,pashute/docs.particular.net,yuxuac/docs.particular.net | samples/saga/ravendb-custom-sagafinder/Version_5/Sample/OrderSaga.cs | samples/saga/ravendb-custom-sagafinder/Version_5/Sample/OrderSaga.cs | using NServiceBus;
using NServiceBus.Logging;
using NServiceBus.Saga;
using System;
#region TheSagaRavenDB
public class OrderSaga : Saga<OrderSagaData>,
IAmStartedByMessages<StartOrder>,
IHandleMessages<PaymentTransactionCompleted>,
IHandleMessages<CompleteOrder>
{
static ILog logger = LogManager.Get... | using NServiceBus;
using NServiceBus.Logging;
using NServiceBus.Saga;
using System;
#region TheSagaRavenDB
public class OrderSaga : Saga<OrderSagaData>,
IAmStartedByMessages<StartOrder>,
IHandleMessages<PaymentTransactionCompleted>,
IHandleMessages<CompleteOrder>
{
static ILog logger = LogManager.Get... | apache-2.0 | C# |
364fee11ddf8b55ec68a36527a80120ed275e584 | Return exit values through wrapper. | icedream/citizenmp-server-updater | src/wrapper/Program.cs | src/wrapper/Program.cs | using System;
using System.IO;
using System.Reflection;
// ReSharper disable once CheckNamespace
internal static class Program
{
private static int Main(string[] args)
{
// Mono's XBuild uses assembly redirects to make sure it uses .NET 4.5 target binaries.
// We emulate it using our own assem... | using System.Linq;
using System.Reflection;
// ReSharper disable once CheckNamespace
internal class Program
{
private static void Main(string[] args)
{
var mainAsm = Assembly.Load("citizenmp_server_updater");
mainAsm.GetType("Costura.AssemblyLoader")
.GetMethod("Attach")
... | mit | C# |
201898d95d92df7c0e8e9f0ccd7808fb262ea4c8 | Add action that can handle server_x=1 | Endlessages/EndlessAges.LauncherService | src/EndlessAges.LauncherService/Controllers/ContentManagerController.cs | src/EndlessAges.LauncherService/Controllers/ContentManagerController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace EndlessAges.LauncherService.Controllers
{
/// <summary>
/// Emulated controller ContentManager.aspx from the Endless Ages backend.
/// </summary>
[Route("Con... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace EndlessAges.LauncherService.Controllers
{
/// <summary>
/// Emulated controller ContentManager.aspx from the Endless Ages backend.
/// </summary>
[Route("Con... | mit | C# |
7775a79bffc738b5191a05e73173d100f47c2c0d | Add new file userAuth.cpl/Droid/InitBroadcast.cs | ArcanaMagus/userAuth.cpl,ArcanaMagus/userAuth.cpl,ArcanaMagus/userAuth.cpl,ArcanaMagus/userAuth.cpl | userAuth.cpl/Droid/InitBroadcast.cs | userAuth.cpl/Droid/InitBroadcast.cs |