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
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Android.App; using Android.Content; using Android.OS; using Android.Runtime; using Android.Views; using Android.Widget; namespace userAuth.cpl.Droid { [BroadcastReceiver] public class InitBroadcast : BroadcastReceiver { ...
 using System; using System.Collections.Generic; using System.Linq; using System.Text; using Android.App; using Android.Content; using Android.OS; using Android.Runtime; using Android.Views; using Android.Widget; namespace userAuth.cpl.Droid { [BroadcastReceiver] public class InitBroadcast : BroadcastReceiver { ...
mit
C#
478159200f4098a756a10388d59d16e08551c44c
fix execFlags attribute in config
pchalamet/cassandra-sharp,yonglehou/cassandra-sharp,cj525/cassandra-sharp,zjpxl217/cassandra-sharp,pchalamet/cassandra-sharp,yonglehou/cassandra-sharp,cj525/cassandra-sharp
CassandraSharp.Interfaces/Config/TransportConfig.cs
CassandraSharp.Interfaces/Config/TransportConfig.cs
// cassandra-sharp - high performance .NET driver for Apache Cassandra // Copyright (c) 2011-2013 Pierre Chalamet // // 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.apach...
// cassandra-sharp - high performance .NET driver for Apache Cassandra // Copyright (c) 2011-2013 Pierre Chalamet // // 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.apach...
apache-2.0
C#
3a190331e3856c8b6a4402974c21934f53540ba8
Update test
sakapon/KLibrary-Labs
CoreLab/UnitTest/Mathematics/FrequencyFilterTest.cs
CoreLab/UnitTest/Mathematics/FrequencyFilterTest.cs
using KLibrary.Labs.Mathematics; using KLibrary.Labs.Reactive; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Reactive.Linq; using System.Threading; namespace UnitTest.Mathematics { [TestClass] public class FrequencyFilterTest { [TestMethod] public void ctor...
using KLibrary.Labs.Mathematics; using KLibrary.Labs.Reactive; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Reactive.Linq; using System.Threading; namespace UnitTest.Mathematics { [TestClass] public class FrequencyFilterTest { [TestMethod] public void ctor...
mit
C#
faa9581c1b1fea7f348f30d4c2dc87c0bd65aa88
Handle indenting better.
DartVS/DartVS,DartVS/DartVS,modulexcite/DartVS,DartVS/DartVS,modulexcite/DartVS,modulexcite/DartVS
DanTup.DartVS.Vsix/Providers/SmartIndentProvider.cs
DanTup.DartVS.Vsix/Providers/SmartIndentProvider.cs
using System.ComponentModel.Composition; using System.Linq; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.Text.Editor; using Microsoft.VisualStudio.Utilities; namespace DanTup.DartVS.Providers { [Export(typeof(ISmartIndentProvider))] [ContentType(DartContentTypeDefinition.DartContentType)] class ...
using System.Linq; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.Text.Editor; using Microsoft.VisualStudio.Utilities; namespace DanTup.DartVS.Providers { // TODO: Currently this breaks when VS converts 4 spaces to 1 tab. To fix, we really need to // know if VS is going to covert x spaces to tabs (...
mit
C#
acbcddc9077796c4534b0c4e274bd63f5dc7926a
Correct cake error
kingstonrichard/kingstonrichard.github.io,kingstonrichard/kingstonrichard.github.io
build.cake
build.cake
#tool "nuget:?package=Wyam&version=2.2.7" #addin "nuget:?package=Cake.Wyam&version=2.2.7" var target = Argument("target", "Build"); Task("Build") .Does(() => { Wyam(); }); Task("Preview") .Does(() => { Wyam(new WyamSettings { Preview = true, Watch =...
#tool "nuget:?package=Wyam&version=2.2.7" #addin "nuget:?package=Cake.Wyam&version=2.2.7" var target = Argument("target", "Build"); Task("Build") .Does(() => { Wyam(); }); Task("Preview") .Does(() => { Wyam(new WyamSettings { Preview = true, Watch =...
mit
C#
634183360b3f613bf5c827f3db9632e68f214511
Remove default version suffix
ErwinSteffens/DotNetAirbrake,ErwinSteffens/DotNetAirbrake
build.cake
build.cake
var versionSuffix = Argument("version-suffix", ""); var target = Argument("target", "Default"); var configuration = Argument("configuration", "Release"); Task("Clean") .Does(() => { CleanDirectories("./src/**/bin"); CleanDirectories("./src/**/obj"); }); Task("Restore") .IsDependentOn("Clean") .Doe...
var versionSuffix = Argument("version-suffix", "test"); var target = Argument("target", "Default"); var configuration = Argument("configuration", "Release"); Task("Clean") .Does(() => { CleanDirectories("./src/**/bin"); CleanDirectories("./src/**/obj"); }); Task("Restore") .IsDependentOn("Clean") ...
mit
C#
a6e0f152d2c4a67b2eb63bcd21b63a292779a612
set up a randomizer to create a random array with 20 values, wrote logic to display values in the array at each pass of the sort
brlittle86/data-structures
RadixSortAlgorithm/RadixSortAlgorithm/Program.cs
RadixSortAlgorithm/RadixSortAlgorithm/Program.cs
using System; namespace RadixSortAlgorithm { class Program { static void Main(string[] args) { const int valueCount = 20; int[] randomArray = new int[valueCount]; Random rnd = new Random(); for (int i = 0; i < valueCount; i++) { ...
using System; namespace RadixSortAlgorithm { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); } public static void RadixSort(int[] array) { int max = Int32.MinValue; for (int i = 0; i < array.Leng...
mit
C#
a06004c3702d0615feda82da0140aae3db2cbf01
handle case where no arguments are passed
Arke64/ArkeOS
ArkeOS.Tools.Assembler/Program.cs
ArkeOS.Tools.Assembler/Program.cs
using System; using System.IO; namespace ArkeOS.Tools.Assembler { public static class Program { public static void Main(string[] args) { if (args.Length < 1) { Console.WriteLine("Need at least one argument: the file to assemble"); return; } ...
using System; using System.IO; namespace ArkeOS.Tools.Assembler { public static class Program { public static void Main(string[] args) { var input = args[0]; if (!File.Exists(input)) { Console.WriteLine("The specified file cannot be found."); retur...
mit
C#
e0c0e52853c00188285d1be678d783f2b0622bb6
Define standard layout
12joan/hangman
hangman.cs
hangman.cs
using System; using System.IO; namespace Hangman { public class Hangman { public static void Main(string[] args) { // char key = Console.ReadKey(true).KeyChar; // var game = new Game("HANG THE MAN"); // bool wasCorrect = game.GuessLetter(key); // Console.WriteLine(wasCorrect.ToString());...
using System; namespace Hangman { public class Hangman { public static void Main(string[] args) { // char key = Console.ReadKey(true).KeyChar; // var game = new Game("HANG THE MAN"); // bool wasCorrect = game.GuessLetter(key); // Console.WriteLine(wasCorrect.ToString()); // var ou...
unlicense
C#
6459327c88306ad06b98347c6994de1da7301998
format remove options code
gaochundong/Knifer
Gimela.Toolkit.CommandLines.Remove/RemoveOptions.cs
Gimela.Toolkit.CommandLines.Remove/RemoveOptions.cs
using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics.CodeAnalysis; using System.Globalization; namespace Gimela.Toolkit.CommandLines.Remove { internal static class RemoveOptions { public static readonly ReadOnlyCollection<string> DirectoryOptions; public static readon...
using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics.CodeAnalysis; using System.Globalization; namespace Gimela.Toolkit.CommandLines.Remove { internal static class RemoveOptions { public static readonly ReadOnlyCollection<string> DirectoryOptions; public static re...
mit
C#
8deb5cd0d8c1738075cb93e4b7d3927e975dfeac
Update AssemblyInfo.cs
WSDOT-GIS/WSDOT-Traveler-Info-DotNet-Client
Client/Properties/AssemblyInfo.cs
Client/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("Cl...
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("Cl...
unlicense
C#
2b11e95a6c89182d04f19fc54a94c6705e5fffa2
Mark fields in DeviceInfo as public API
WolfspiritM/Colore,CoraleStudios/Colore
Corale.Colore/Razer/DeviceInfo.cs
Corale.Colore/Razer/DeviceInfo.cs
// --------------------------------------------------------------------------------------- // <copyright file="DeviceInfo.cs" company="Corale"> // Copyright © 2015 by Adam Hellberg and Brandon Scott. // // Permission is hereby granted, free of charge, to any person obtaining a copy of // this software and ...
// --------------------------------------------------------------------------------------- // <copyright file="DeviceInfo.cs" company="Corale"> // Copyright © 2015 by Adam Hellberg and Brandon Scott. // // Permission is hereby granted, free of charge, to any person obtaining a copy of // this software and ...
mit
C#
5bc9f84fc96b410852a484bcea56ae7778799216
Update AzureStorageBase.cs
tiksn/TIKSN-Framework
TIKSN.Core/Data/AzureStorage/AzureStorageBase.cs
TIKSN.Core/Data/AzureStorage/AzureStorageBase.cs
using Microsoft.Azure.Storage; using Microsoft.Extensions.Configuration; namespace TIKSN.Data.AzureStorage { public abstract class AzureStorageBase { private readonly IConfigurationRoot _configuration; private readonly string _connectionStringKey; protected AzureStorageBase(IConfigura...
using Microsoft.Azure.Storage; using Microsoft.Extensions.Configuration; namespace TIKSN.Data.AzureStorage { public abstract class AzureStorageBase { private readonly IConfigurationRoot _configuration; private readonly string _connectionStringKey; protected AzureStorageBase(IConfigura...
mit
C#
b2a47e621672e7a51957d34f93527f730c742403
Add uniqiue identifier when adding customer user program source
qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,Wox-launcher/Wox
Plugins/Wox.Plugin.Program/AddProgramSource.xaml.cs
Plugins/Wox.Plugin.Program/AddProgramSource.xaml.cs
using System.Windows; using System.Windows.Forms; using Wox.Plugin.Program.Programs; namespace Wox.Plugin.Program { /// <summary> /// Interaction logic for AddProgramSource.xaml /// </summary> public partial class AddProgramSource { private PluginInitContext _context; private Setti...
using System.Windows; using System.Windows.Forms; using Wox.Plugin.Program.Programs; namespace Wox.Plugin.Program { /// <summary> /// Interaction logic for AddProgramSource.xaml /// </summary> public partial class AddProgramSource { private PluginInitContext _context; private Setti...
mit
C#
a3b4c8caacbf21f72da18f9e0152e710ee13346f
fix since bug in RetrieveParams;
ceee/PocketSharp
PocketSharp/Models/Parameters/RetrieveParameters.cs
PocketSharp/Models/Parameters/RetrieveParameters.cs
using RestSharp; using System; using System.Collections.Generic; using System.Reflection; using System.Runtime.Serialization; namespace PocketSharp.Models { public class RetrieveParameters : ParameterBase { public StateEnum? State { get; set; } public bool? Favorite { get; set; } public string Tag {...
using RestSharp; using System; using System.Collections.Generic; using System.Reflection; using System.Runtime.Serialization; namespace PocketSharp.Models { public class RetrieveParameters : ParameterBase { public StateEnum? State { get; set; } public bool? Favorite { get; set; } public string Tag {...
mit
C#
75807be7a41e09c12b9c99e03fd5813e2aa4e3ab
add heap statistic for future implementation
lookuper/LiveProcessInspector
LiveProcessInspector/LiveProcessInspector/Screens/ClrRuntimeViewModel.cs
LiveProcessInspector/LiveProcessInspector/Screens/ClrRuntimeViewModel.cs
using Caliburn.Micro; using Microsoft.Diagnostics.Runtime; using System; using System.Collections.Generic; using System.ComponentModel.Composition; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LiveProcessInspector.Screens { [Export(typeof(ClrRuntimeViewModel))] public class ClrRunti...
using Caliburn.Micro; using Microsoft.Diagnostics.Runtime; using System; using System.Collections.Generic; using System.ComponentModel.Composition; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LiveProcessInspector.Screens { [Export(typeof(ClrRuntimeViewModel))] public class ClrRunti...
mit
C#
85342f8276b32aa5358dc82bbcf1c2512817b79c
Remove Obselete Validation in the 'CloneViewModel'
tommcclean/PortalCMS,tommcclean/PortalCMS,tommcclean/PortalCMS
Portal.CMS.Web/Areas/PageBuilder/ViewModels/Section/CloneViewModel.cs
Portal.CMS.Web/Areas/PageBuilder/ViewModels/Section/CloneViewModel.cs
using Portal.CMS.Entities.Entities; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web.Mvc; namespace Portal.CMS.Web.Areas.PageBuilder.ViewModels.Section { public class CloneViewModel { [DisplayName("Page")] ...
using Portal.CMS.Entities.Entities; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web.Mvc; namespace Portal.CMS.Web.Areas.PageBuilder.ViewModels.Section { public class CloneViewModel { [Required] [Dis...
mit
C#
d970e0515104c4c8beba10764766b19d09a1993e
Add dispose method.
RockFramework/Rock.Messaging,peteraritchie/Rock.Messaging,bfriesen/Rock.Messaging
Rock.Messaging.IntegrationTests/MQ/ExampleMessagingScenarioFactory.cs
Rock.Messaging.IntegrationTests/MQ/ExampleMessagingScenarioFactory.cs
using System; namespace Rock.Messaging { public class ExampleMessagingScenarioFactory : IMessagingScenarioFactory { private readonly int _intData; public ExampleMessagingScenarioFactory() : this(0) { } public ExampleMessagingScenarioFactory(int intData = 0...
using System; namespace Rock.Messaging { public class ExampleMessagingScenarioFactory : IMessagingScenarioFactory { private readonly int _intData; public ExampleMessagingScenarioFactory() : this(0) { } public ExampleMessagingScenarioFactory(int intData = 0...
mit
C#
899dcd7f1d347df226ba02a9e45f2ff9ba03fa72
Solve build related issue
Promact/trappist,Promact/trappist,Promact/trappist,Promact/trappist,Promact/trappist
Trappist/src/Promact.Trappist.Core/Controllers/QuestionsController.cs
Trappist/src/Promact.Trappist.Core/Controllers/QuestionsController.cs
using Microsoft.AspNetCore.Mvc; using Promact.Trappist.DomainModel.Models.Question; using Promact.Trappist.Repository.Questions; using System; namespace Promact.Trappist.Core.Controllers { [Route("api")] public class QuestionsController : Controller { private readonly IQuestionRepository _question...
using Microsoft.AspNetCore.Mvc; using Promact.Trappist.DomainModel.Models.Question; using Promact.Trappist.Repository.Questions; using System; namespace Promact.Trappist.Core.Controllers { [Route("api")] public class QuestionsController : Controller { private readonly IQuestionRepository _question...
mit
C#
e9f9d21604d8596bc29362859d7e057b773dc2a6
Fix zero size parent container in visual tests
ppy/osu-framework,ZLima12/osu-framework,ppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework
osu.Framework.Tests/VisualTestGame.cs
osu.Framework.Tests/VisualTestGame.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.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Cursor; using osu.Framework.Graphics.Containers; using osu.Framework.Platform;...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Cursor; using osu.Framework.Graphics.Containers; using osu.Framework.Platform;...
mit
C#
410463d14bb5e5130e6d2a5a5d07c86b6716f03d
Add test case for open generics
jquintus/spikes,jquintus/spikes,jquintus/spikes,jquintus/spikes
ConsoleApps/FunWithSpikes/FunWithNinject/Conventions/ConventionsTests.cs
ConsoleApps/FunWithSpikes/FunWithNinject/Conventions/ConventionsTests.cs
using Ninject; using Ninject.Extensions.Conventions; using NUnit.Framework; namespace FunWithNinject.Conventions { [TestFixture] public class ConventionsTests { [Test] public void Bind_OneClassWithMultipleInterfaces_BindsOneInstanceToAll() { // Assemble usin...
using Ninject; using NUnit.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Ninject.Extensions.Conventions; namespace FunWithNinject.Conventions { [TestFixture] public class ConventionsTests { [Test] public...
mit
C#
ab42a1634f0946977f3203907d621555083b1850
Add user-controllable exception handling
treehopper-electronics/treehopper-sdk,treehopper-electronics/treehopper-sdk,treehopper-electronics/treehopper-sdk,treehopper-electronics/treehopper-sdk,treehopper-electronics/treehopper-sdk,treehopper-electronics/treehopper-sdk
NET/API/Treehopper/Settings.cs
NET/API/Treehopper/Settings.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Treehopper { /// <summary> /// This class represents global settings used by the Treehopper API /// </summary> public class Settings { /// <summary> /// Get...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Treehopper { /// <summary> /// This class represents global settings used by the Treehopper API /// </summary> public class Settings { /// <summary> /// The...
mit
C#
ab0e52a1860b067d47a844dde60a0c9acf0c68e5
Split WCF functionality out of Autofac.Extras.Multitenant into a separate assembly/package, Autofac.Extras.Multitenant.Wcf. Both packages are versioned 3.1.0.
autofac/Autofac.Extras.DomainServices
Properties/VersionAssemblyInfo.cs
Properties/VersionAssemblyInfo.cs
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.18051 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generate...
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.34003 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generate...
mit
C#
1ce0ec8e8f3b5350e9c35167c30cdf56612a4bcf
Increase the default retries to 10 (#22)
projectkudu/KuduSync.NET,projectkudu/KuduSync.NET
KuduSync.NET/OperationManager.cs
KuduSync.NET/OperationManager.cs
using System; using System.Threading; namespace KuduSync.NET { internal static class OperationManager { private const int DefaultRetries = 10; private const int DefaultDelayBeforeRetry = 250; // 250 ms public static void Attempt(Action action, int retries = DefaultRetries, int delayBef...
using System; using System.Threading; namespace KuduSync.NET { internal static class OperationManager { private const int DefaultRetries = 3; private const int DefaultDelayBeforeRetry = 250; // 250 ms public static void Attempt(Action action, int retries = DefaultRetries, int delayBefo...
apache-2.0
C#
68f98723db76f6e7ad0b0759360bf9dc81b692a6
Update _Layout.cshtml
CarmelSoftware/Generic-Data-Repository-for-ASP.NET-MVC
Views/Shared/_Layout.cshtml
Views/Shared/_Layout.cshtml
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width" /> <title>@ViewBag.Title</title> @Styles.Render("~/Content/css") @Scripts.Render("~/bundles/modernizr") <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://max...
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width" /> <title>@ViewBag.Title</title> @Styles.Render("~/Content/css") @Scripts.Render("~/bundles/modernizr") <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://max...
mit
C#
48bf7351dbbb8c05f005ba59661119dee9dbff66
Update FadeParticlesNearPoint.cs
grreuze/Utils
Scripts/FadeParticlesNearPoint.cs
Scripts/FadeParticlesNearPoint.cs
using UnityEngine; [ExecuteInEditMode] [RequireComponent(typeof(ParticleSystem))] public class FadeParticlesNearPoint : MonoBehaviour { ParticleSystem ps; [Header("Use \"Infinity\" to ignore an axis")] [SerializeField] Vector3 point; [SerializeField] float radius; [SerializeField] float startFadeDistan...
using UnityEngine; [RequireComponent(typeof(ParticleSystem))] public class FadeParticlesNearPoint : MonoBehaviour { ParticleSystem ps; [Header("Use \"Infinity\" to ignore an axis")] [SerializeField] Vector3 point; [SerializeField] float radius; [SerializeField] float startFadeDistance = 3; bool isLoca...
mit
C#
b478972cc8f46d351b8f83198c0d4441cf2cfc0f
Modify the comment in IUtterance.cs.
AIWolfSharp/AIWolf_NET
AIWolfLib/IUtterance.cs
AIWolfLib/IUtterance.cs
// // IUtterance.cs // // Copyright (c) 2018 Takashi OTSUKI // // This software is released under the MIT License. // http://opensource.org/licenses/mit-license.php // namespace AIWolf.Lib { #if JHELP /// <summary> /// 発話クラスが実装すべきプロパティ /// </summary> #else /// <summary> /// The properties to be in...
// // IUtterance.cs // // Copyright (c) 2018 Takashi OTSUKI // // This software is released under the MIT License. // http://opensource.org/licenses/mit-license.php // namespace AIWolf.Lib { #if JHELP /// <summary> /// 発話クラスが実装すべきプロパティとメソッド /// </summary> #else /// <summary> /// Abstract utterance...
mit
C#
a6e40d34f0c47a895e303eef36b3224bc28a478a
Change version to 1.2 prior tagging.
RajOpteamix/moq,tectronics/moq
Source/Properties/AssemblyInfo.cs
Source/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyTitle("Moq")] [assembly: AssemblyDescription("Mocking library for .NET 3.5 and C# 3.0, heavily based on Linq")] [assembly: AssemblyCompany("Moq Project")] [assembly: AssemblyProduct("Moq")] [assembly: AssemblyTrademark("")] [as...
using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyTitle("Moq")] [assembly: AssemblyDescription("Mocking library for .NET 3.5 and C# 3.0, heavily based on Linq")] [assembly: AssemblyCompany("Moq Project")] [assembly: AssemblyProduct("Moq")] [assembly: AssemblyTrademark("")] [as...
bsd-3-clause
C#
922bbb03da514c993d46bf1d320d8830622f46e7
update version
jmkelly/elephanet,YoloDev/elephanet,jmkelly/elephanet,YoloDev/elephanet
Elephanet/Properties/AssemblyInfo.cs
Elephanet/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("El...
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("El...
mit
C#
e04ad8357d1e32b849e059a65c71e10e0cecc97a
Make spinner piece respond to scale changes
DrabWeb/osu,naoey/osu,smoogipooo/osu,NeoAdonis/osu,johnneijzen/osu,naoey/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,2yangk23/osu,peppy/osu,peppy/osu,ppy/osu,ZLima12/osu,peppy/osu,peppy/osu-new,ZLima12/osu,smoogipoo/osu,2yangk23/osu,smoogipoo/osu,johnneijzen/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,NeoAdonis/osu,Dra...
osu.Game.Rulesets.Osu/Edit/Masks/SpinnerMasks/Components/SpinnerPiece.cs
osu.Game.Rulesets.Osu/Edit/Masks/SpinnerMasks/Components/SpinnerPiece.cs
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Game.Graphics; usin...
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Game.Graphics; usin...
mit
C#
ccd828d9efb4741e844b4fa12003a1c48f2b8c32
Добавить интенты bot_ad_invite и bot_ad_promo (#892)
vknet/vk,vknet/vk
VkNet/Enums/SafetyEnums/Intent.cs
VkNet/Enums/SafetyEnums/Intent.cs
namespace VkNet.Enums.SafetyEnums { /// <summary> /// Метка, которая обозначает приблизительное содержание сообщения от сообщества /// </summary> public sealed class Intent : SafetyEnum<Intent> { /// <summary> /// Интент, который должен сопровождать рекламную рассылку для ботов. /// </summary> public stati...
namespace VkNet.Enums.SafetyEnums { /// <summary> /// Метка, которая обозначает приблизительное содержание сообщения от сообщества /// </summary> public sealed class Intent : SafetyEnum<Intent> { /// <summary> /// Интент, который должен сопровождать рекламную рассылку для ботов. /// </summary> public stati...
mit
C#
9d1d7804daee4b81fab85f2e93fdfd1b0b30d6ff
Fix Razor tests broken by change to full string passing.
wasabii/Cogito,wasabii/Cogito
Cogito.Web.Razor.Tests/RazorTemplateBuilderTests.cs
Cogito.Web.Razor.Tests/RazorTemplateBuilderTests.cs
using System; using System.IO; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Cogito.Web.Razor.Tests { [TestClass] public class RazorTemplateBuilderTests { TextReader LoadTemplateText(string name) { return new StreamReader(typeof(RazorTemplateBuilderTests).Asse...
using System; using System.IO; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Cogito.Web.Razor.Tests { [TestClass] public class RazorTemplateBuilderTests { TextReader LoadTemplateText(string name) { return new StreamReader(typeof(RazorTemplateBuilderTests).Asse...
mit
C#
712a81c00bec3c6b371f47b76d66e8dde098c94d
Make ReflectionCoreNonPortable.GetTypeForRuntimeTypeHandle nonpublic.
kyulee1/corert,yizhang82/corert,shrah/corert,gregkalapos/corert,tijoytom/corert,botaberg/corert,krytarowski/corert,tijoytom/corert,krytarowski/corert,yizhang82/corert,kyulee1/corert,krytarowski/corert,gregkalapos/corert,krytarowski/corert,sandreenko/corert,kyulee1/corert,tijoytom/corert,shrah/corert,sandreenko/corert,s...
src/System.Private.CoreLib/src/Internal/Reflection/Core/NonPortable/ReflectionCoreNonPortable.cs
src/System.Private.CoreLib/src/Internal/Reflection/Core/NonPortable/ReflectionCoreNonPortable.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.Runtime.CompilerServices; namespace Internal.Reflection.Core.NonPortable { public st...
// 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.Runtime.CompilerServices; namespace Internal.Reflection.Core.NonPortable { public st...
mit
C#
b1ccdd4191e3249ccedbb58f76893d4a310429ff
Tweak SemaphoreDisposer to null out the held semaphore
CyrusNajmabadi/roslyn,dotnet/roslyn,KevinRansom/roslyn,weltkante/roslyn,KevinRansom/roslyn,bartdesmet/roslyn,shyamnamboodiripad/roslyn,mavasani/roslyn,weltkante/roslyn,sharwell/roslyn,mavasani/roslyn,CyrusNajmabadi/roslyn,bartdesmet/roslyn,KevinRansom/roslyn,sharwell/roslyn,sharwell/roslyn,CyrusNajmabadi/roslyn,diryboy...
src/Compilers/Core/Portable/InternalUtilities/SemaphoreSlimExtensions.cs
src/Compilers/Core/Portable/InternalUtilities/SemaphoreSlimExtensions.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.Threading; using System.Threading.Tasks; namespace Roslyn.Utilities { internal stat...
// 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.Threading; using System.Threading.Tasks; namespace Roslyn.Utilities { internal stat...
mit
C#
3b74ed31389d1ce6cd08022bb625620b4e71f17b
Fix list view template for soldiers
mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander
BatteryCommander.Web/Views/Soldier/List.cshtml
BatteryCommander.Web/Views/Soldier/List.cshtml
@model IEnumerable<BatteryCommander.Common.Models.Soldier> @{ ViewBag.Title = "List"; } <h2>@ViewBag.Title</h2> <table class="table"> <tr> <th> @Html.DisplayNameFor(model => model.FirstOrDefault().LastName) </th> <th> @Html.DisplayN...
@model IEnumerable<BatteryCommander.Common.Models.Soldier> @{ ViewBag.Title = "List"; } <h2>List</h2> <table class="table"> <tr> <th> @Html.DisplayNameFor(model => model.LastName) </th> <th> @Html.DisplayNameFor(model => model.FirstName) </th> ...
mit
C#
936776c28ba97ba9d3f6f5609736dce92140200f
Update Game.cs
svmnotn/friendly-guacamole
Assets/src/data/Game.cs
Assets/src/data/Game.cs
using System.Collections.Generic; using System; // TODO REMOVE using UnityEngine; public class Game { Queue<Player> players; public Player curr; public Action PlayerSwitch; public Action<Vector> GridAdded; public Action<Vector, Vector> CellWon; Dictionary<Vector, Grid> map; public Game(Queue<Player> pl...
using System.Collections.Generic; using System; // TODO REMOVE using UnityEngine; public class Game { Queue<Player> players; public Player curr; public Action PlayerSwitch; public Action<Vector> GridAdded; public Action<Vector, Vector> CellWon; Dictionary<Vector, Grid> map; public Game(Queue<Player> pl...
mit
C#
d874cda53fda3e3d17026d9a883facc8072935a5
Disable CS0660 where Full Solution Analysis produces a different result
dotnet/roslyn,shyamnamboodiripad/roslyn,weltkante/roslyn,AmadeusW/roslyn,brettfo/roslyn,tmat/roslyn,KevinRansom/roslyn,AmadeusW/roslyn,mgoertz-msft/roslyn,jmarolf/roslyn,jasonmalinowski/roslyn,jmarolf/roslyn,bartdesmet/roslyn,weltkante/roslyn,AlekseyTs/roslyn,sharwell/roslyn,aelij/roslyn,physhi/roslyn,weltkante/roslyn,...
src/Compilers/CSharp/Portable/Symbols/TypeSymbol.SymbolAndDiagnostics.cs
src/Compilers/CSharp/Portable/Symbols/TypeSymbol.SymbolAndDiagnostics.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.Collections.Immutable; #pragma warning disable CS0660 // Warning is reported only for Full Solution A...
// 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.Collections.Immutable; namespace Microsoft.CodeAnalysis.CSharp.Symbols { internal partial class T...
mit
C#
a8a4dcfcd2fad4433659af12a359503ffecf41b4
Test commit
chefarbeiter/QuickIEnumerableToExcelExporter
src/QuickIEnumerableToExcelExporter/Extension.cs
src/QuickIEnumerableToExcelExporter/Extension.cs
using System.Collections.Generic; namespace QuickIEnumerableToExcelExporter { public static class Extension { /// <summary> /// /// </summary> /// <typeparam name="T"></typeparam> /// <param name="enumerable"></param> /// <param name="target"></param> pu...
using System.Collections.Generic; namespace QuickIEnumerableToExcelExporter { public static class Extension { public static void ExportToExcel<T>(this IEnumerable<T> enumerable, string target) => ExportToExcel(enumerable, target, new ExportConfiguration()); public static void Expo...
mit
C#
0a14ffddc384f54ef7f5c13ef37eedb0423563f3
Update AssemblyInfo.cs
Socres/Socres
src/Socres.FakingEasy/Properties/AssemblyInfo.cs
src/Socres.FakingEasy/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("Socres.FakingEasy")] [assembly: AssemblyD...
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("Socres.FakingEasy")] [assembly: AssemblyD...
mit
C#
6fb38737f72b8e4fbb41f1df5f580040f62170e3
Update UploadTicketQuota.cs
mfilippov/vimeo-dot-net,agricfowl/vimeo-dot-net,mohibsheth/vimeo-dot-net,cornem/vimeo-dot-net,needham-develop/vimeo-dot-net,justinspradlin/vimeo-dot-net
VimeoDotNet/VimeoDotNet/Models/UploadTicketQuota.cs
VimeoDotNet/VimeoDotNet/Models/UploadTicketQuota.cs
using System; namespace VimeoDotNet.Models { [Serializable] public class UploadTicketQuota { public bool sd { get; set; } public bool hd { get; set; } public long total_space { get; set; } public long space_used { get; set; } public long free_space { get; set; } ...
using System; namespace VimeoDotNet.Models { [Serializable] public class UploadTicketQuota { public bool sd { get; set; } public bool hd { get; set; } public long total_space { get; set; } public long space_used { get; set; } public int free_space { get; set; } ...
mit
C#
e9f605e35fcb84becd9777d366e495fb06d5893b
Update WalletWasabi/Services/Terminate/TerminateService.cs
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Services/Terminate/TerminateService.cs
WalletWasabi/Services/Terminate/TerminateService.cs
using System; using System.Threading; using System.Threading.Tasks; using WalletWasabi.Logging; namespace WalletWasabi.Services.Terminate { public class TerminateService { private Func<Task> _terminateApplicationAsync; private const long TerminateStatusIdle = 0; private const long TerminateStatusInProgress = ...
using System; using System.Threading; using System.Threading.Tasks; using WalletWasabi.Logging; namespace WalletWasabi.Services.Terminate { public class TerminateService { private Func<Task> _terminateApplicationAsync; private const long TerminateStatusIdle = 0; private const long TerminateStatusInProgress = ...
mit
C#
a7d8d6938f867a134f6638248aea4b481163999b
Remove the unused bindattrs parameter from the ShaderStageProcessor delegate.
izrik/ChamberLib,izrik/ChamberLib,izrik/ChamberLib
Content/ProcessorDelegates.cs
Content/ProcessorDelegates.cs
using System; namespace ChamberLib.Content { public delegate IModel ModelProcessor(ModelContent asset, IContentProcessor processor); public delegate ITexture2D TextureProcessor(TextureContent asset, IContentProcessor processor); public delegate IShaderStage ShaderStageProcessor(ShaderContent asset, IConte...
using System; namespace ChamberLib.Content { public delegate IModel ModelProcessor(ModelContent asset, IContentProcessor processor); public delegate ITexture2D TextureProcessor(TextureContent asset, IContentProcessor processor); public delegate IShaderStage ShaderStageProcessor(ShaderContent asset, IConte...
lgpl-2.1
C#
f35fb7aea5451aed8de063c3885c1c0d191456e6
Update assembly copyright date
Eastrall/Xamarin.Forms.WrapLayout
Xamarin.Forms.WrapLayout/Properties/AssemblyInfo.cs
Xamarin.Forms.WrapLayout/Properties/AssemblyInfo.cs
using System.Resources; 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. [ass...
using System.Resources; 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. [ass...
mit
C#
42260eb0fd1b7b87ac1615065fed8ace9251bd48
improve nullable definitions in an interface
jbe2277/waf
src/System.Waf/Samples/Writer/Writer.Applications/Views/IShellView.cs
src/System.Waf/Samples/Writer/Writer.Applications/Views/IShellView.cs
using System; using System.Waf.Applications; using System.ComponentModel; namespace Waf.Writer.Applications.Views { public interface IShellView : IView { double Left { get; set; } double Top { get; set; } double Width { get; set; } double Height { get; ...
using System; using System.Waf.Applications; using System.ComponentModel; namespace Waf.Writer.Applications.Views { public interface IShellView : IView { double Left { get; set; } double Top { get; set; } double Width { get; set; } double Height { get; ...
mit
C#
6af2738b558eca360fa6ee80ac4882ac40398c25
Support high TemplateIds
jacobdufault/forge,jacobdufault/forge
Forge.Entities/Implementation/ContextObjects/TemplateConversionContext.cs
Forge.Entities/Implementation/ContextObjects/TemplateConversionContext.cs
// The MIT License (MIT) // // Copyright (c) 2013 Jacob Dufault // // 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, cop...
// The MIT License (MIT) // // Copyright (c) 2013 Jacob Dufault // // 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, cop...
mit
C#
a79837c7e293052fdf3a974e4c91c07b870abf82
Add - Notifica della partenza su MeMo
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.Models/Servizi/CQRS/Commands/ConfermaPartenze/ConfermaPartenzeNotification.cs
src/backend/SO115App.Models/Servizi/CQRS/Commands/ConfermaPartenze/ConfermaPartenzeNotification.cs
//----------------------------------------------------------------------- // <copyright file="ConfermaPartenzeNotification.cs" company="CNVVF"> // Copyright (C) 2017 - CNVVF // // This file is part of SOVVF. // SOVVF is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero Genera...
//----------------------------------------------------------------------- // <copyright file="ConfermaPartenzeNotification.cs" company="CNVVF"> // Copyright (C) 2017 - CNVVF // // This file is part of SOVVF. // SOVVF is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero Genera...
agpl-3.0
C#
5dad289b4803282f1b230367b566779187f7fa5f
Fix ExampleGameManager
erebuswolf/LockstepFramework,SnpM/Lockstep-Framework,yanyiyun/LockstepFramework
Example/ExampleGameManager.cs
Example/ExampleGameManager.cs
using UnityEngine; using System.Collections; using Lockstep.Data; using TypeReferences; using System; namespace Lockstep.Example { public class ExampleGameManager : GameManager { [SerializeField,DataCode ("Agents")] private string _spawnCode; [SerializeField] private int _spawnAmou...
using UnityEngine; using System.Collections; using Lockstep.Data; using TypeReferences; using System; namespace Lockstep.Example { public class ExampleGameManager : GameManager { [SerializeField,DataCode ("Agents")] private string _spawnCode; [SerializeField] private int _spawnAmou...
mit
C#
9ba6d5f3a830c1c587424680d8dd88bb051468d2
Fix a bug where multi-level `include` elements get processed more than once.
lukyad/Eco
Eco/Elements/include.cs
Eco/Elements/include.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Eco.Extensions; using Eco.SettingsVisitors; namespace Eco { /// <summary> /// Instructs serializer to include the specified configuration file. /// </summary> [EcoElement(typeof(in...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Eco.Extensions; namespace Eco { /// <summary> /// Instructs serializer to include the specified configuration file. /// </summary> [EcoElement(typeof(include<>)), Doc("Specifies an...
apache-2.0
C#
a5d8ac3276ab9da2e266d84a3d6a3d3abdbbdf0b
Remove unused usings
Trencadis-Labs/Internship,Trencadis-Labs/Internship,Trencadis-Labs/Internship
Courses/Apps/Enumerables/PlayingWithIEnumerable/PlayingWithIEnumerable/CustomEnumeration.generic.cs
Courses/Apps/Enumerables/PlayingWithIEnumerable/PlayingWithIEnumerable/CustomEnumeration.generic.cs
using System.Collections; using System.Collections.Generic; namespace PlayingWithIEnumerable { public class CustomEnumeration<T> : IEnumerable<T> { private readonly T[] backingArray; public CustomEnumeration(params T[] elements) { if (elements == null) { elements = new T[0]; ...
using System; using System.Collections; using System.Collections.Generic; namespace PlayingWithIEnumerable { public class CustomEnumeration<T> : IEnumerable<T> { private readonly T[] backingArray; public CustomEnumeration(params T[] elements) { if (elements == null) { elements = n...
mit
C#