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
eaf0fdaabc41860efd1f4af84a57f84c3ee9338a
Fix inverted result from Into(ModelState)
mios-fi/mios.validation
Mvc/ModelStateDictionaryExtensions.cs
Mvc/ModelStateDictionaryExtensions.cs
namespace Mios.Validation.Mvc { using System.Collections.Generic; using System.Web.Mvc; public static class ModelStateDictionaryExtensions { public static void AddErrors(this ModelStateDictionary modelState, IEnumerable<ValidationError> errors) { foreach(var error in errors) { modelState.AddModelEr...
namespace Mios.Validation.Mvc { using System.Collections.Generic; using System.Web.Mvc; public static class ModelStateDictionaryExtensions { public static void AddErrors(this ModelStateDictionary modelState, IEnumerable<ValidationError> errors) { foreach(var error in errors) { modelState.AddModelEr...
bsd-2-clause
C#
16d2a0166c35c020fb46feeadd001ff759ff9b74
Fix FileData.AddToRequest argument check
junian/Xamarin.Social,pacificIT/Xamarin.Social,aphex3k/Xamarin.Social,junian/Xamarin.Social,pacificIT/Xamarin.Social,moljac/Xamarin.Social,xamarin/Xamarin.Social,aphex3k/Xamarin.Social,xamarin/Xamarin.Social,moljac/Xamarin.Social
src/Xamarin.Social/FileData.cs
src/Xamarin.Social/FileData.cs
// // Copyright 2012-2013, Xamarin Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by appli...
// // Copyright 2012, Xamarin Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
apache-2.0
C#
13a1e41134461dc5f7854858333218298de96b36
Update informational versions.
scopely/msgpack-cli,msgpack/msgpack-cli,undeadlabs/msgpack-cli,modulexcite/msgpack-cli,scopely/msgpack-cli,msgpack/msgpack-cli,undeadlabs/msgpack-cli,modulexcite/msgpack-cli
src/CommonAssemblyInfo.Pack.cs
src/CommonAssemblyInfo.Pack.cs
#region -- License Terms -- // // MessagePack for CLI // // Copyright (C) 2010-2012 FUJIWARA, Yusuke // // 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.apac...
#region -- License Terms -- // // MessagePack for CLI // // Copyright (C) 2010-2012 FUJIWARA, Yusuke // // 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.apac...
apache-2.0
C#
d13b67f5c970bd951bd7780e0c6dc6ea3baeae1e
Add unit tests for simple single and multiple property resolution
Domysee/Pather.CSharp
test/Pather.CSharp.UnitTests/ResolverTests.cs
test/Pather.CSharp.UnitTests/ResolverTests.cs
using FluentAssertions; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Xunit; namespace Pather.CSharp.UnitTests { // This project can output the Class library as a NuGet Package. // To enable this option, right-click on the project and select the Propert...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Xunit; namespace Pather.CSharp.UnitTests { // This project can output the Class library as a NuGet Package. // To enable this option, right-click on the project and select the Properties menu item. In the Bu...
mit
C#
b293e0bda10bda4c5e8b8cd8e45d3f79f99694fe
Add Type Forwarder for New Appender
jjchiw/gelf4net,jjchiw/gelf4net
src/Gelf4Net/TypeForwarders.cs
src/Gelf4Net/TypeForwarders.cs
using System.Runtime.CompilerServices; [assembly:TypeForwardedTo(typeof(Gelf4Net.Layout.GelfLayout))] [assembly:TypeForwardedTo(typeof(Gelf4Net.Appender.GelfHttpAppender))] [assembly:TypeForwardedTo(typeof(Gelf4Net.Appender.AsyncGelfHttpAppender))] [assembly:TypeForwardedTo(typeof(Gelf4Net.Appender.GelfUdpAppender))] ...
using System.Runtime.CompilerServices; [assembly:TypeForwardedTo(typeof(Gelf4Net.Layout.GelfLayout))] [assembly:TypeForwardedTo(typeof(Gelf4Net.Appender.GelfHttpAppender))] [assembly:TypeForwardedTo(typeof(Gelf4Net.Appender.GelfUdpAppender))] [assembly:TypeForwardedTo(typeof(Gelf4Net.Appender.AsyncGelfUdpAppender))] [...
mit
C#
abdd37ca73cdf7d81567f59f1e543d7964c8b472
Return even information in string for error reporting
opcon/Substructio,opcon/Substructio
src/Logging/IErrorReporting.cs
src/Logging/IErrorReporting.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Substructio.Logging { public interface IErrorReporting { string ReportError(Exception e); string ReportMessage(string message); } public class NullErrorReporti...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Substructio.Logging { public interface IErrorReporting { void ReportError(Exception e); void ReportMessage(string message); } public class NullErrorReporting :...
mit
C#
c9413bc906beaf3ac20ad3573a0fa17a58727283
Fix bug related to missing omit-tag expressions
csf-dev/ZPT-Sharp,csf-dev/ZPT-Sharp
CSF.Zpt/Tal/OmitTagAttributeHandler.cs
CSF.Zpt/Tal/OmitTagAttributeHandler.cs
using System; using CSF.Zpt.Rendering; using System.Linq; namespace CSF.Zpt.Tal { /// <summary> /// Implementation of <see cref="IAttributeHandler"/> which handles a <c>tal:omit-tag</c> attribute. /// </summary> public class OmitTagAttributeHandler : IAttributeHandler { #region methods /// <summary...
using System; using CSF.Zpt.Rendering; using System.Linq; namespace CSF.Zpt.Tal { /// <summary> /// Implementation of <see cref="IAttributeHandler"/> which handles a <c>tal:omit-tag</c> attribute. /// </summary> public class OmitTagAttributeHandler : IAttributeHandler { #region methods /// <summary...
mit
C#
835c3d642db5fb40f8b5ab7cb34f51b4e787f8bb
Update RandomExtensions.cs
keith-hall/Extensions,keith-hall/Extensions
src/RandomExtensions.cs
src/RandomExtensions.cs
using System; namespace HallLibrary.Extensions { /// <summary> /// Contains extension methods for the <see cref="Random" /> class. /// </summary> public static class RandomExtensions { /// <summary> /// Returns a random long from min (inclusive) to max (exclusive). /// </summary> /// <param name="random">...
using System; namespace HallLibrary.Extensions { public static class RandomExtensionMethods { /// <summary> /// Returns a random long from min (inclusive) to max (exclusive). /// </summary> /// <param name="random">The given random instance.</param> /// <param name="min">The inclusive minimum bound.</param...
apache-2.0
C#
47cd373b2cfba28e6c400b7c7df4f117fee05ad8
Update StringExtensions.cs
keith-hall/Extensions,keith-hall/Extensions
src/StringExtensions.cs
src/StringExtensions.cs
using System.Collections.Generic; using System.Linq; namespace HallLibrary.Extensions { public static class StringExtensions { public static int IndexOfEnd (this string value, string find, int? start = null) { var pos = value.IndexOf(find, start.HasValue ? start.Value : 0); if (pos > -1) pos += find.Lengt...
using System.Collections.Generic; using System.Linq; public static class StringExtensions { public static int IndexOfEnd (this string value, string find, int? start = null) { var pos = value.IndexOf(find, start.HasValue ? start.Value : 0); if (pos > -1) pos += find.Length; return pos; } public static IEn...
apache-2.0
C#
0304e22a09808e49d1b59e115c00637289186572
Increase assembly version
R-Smith/vmPing
vmPing/Properties/AssemblyInfo.cs
vmPing/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
mit
C#
660304f456a3141ec632896b474b4a9fe675936f
Bump copyright to 2020
MindscapeHQ/raygun4net,MindscapeHQ/raygun4net,MindscapeHQ/raygun4net
Mindscape.Raygun4Net.Xamarin.iOS.Unified/Properties/AssemblyInfo.cs
Mindscape.Raygun4Net.Xamarin.iOS.Unified/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Ra...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Ra...
mit
C#
244389a089dbdd9656ad65e2f43eeb5877637b77
Fix typo.
PenguinF/sandra-three
Sandra.UI.WF.Chess/RichTextBoxBase.cs
Sandra.UI.WF.Chess/RichTextBoxBase.cs
#region License /********************************************************************************* * RichTextBoxBase.cs * * Copyright (c) 2004-2018 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You...
#region License /********************************************************************************* * RichTextBoxBase.cs * * Copyright (c) 2004-2018 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You...
apache-2.0
C#
e4f6636ab0d9335f2fc438ee55c9badfc838c7ef
Update copyright to 2018
tom-englert/ResXResourceManager
Trademark.cs
Trademark.cs
using System.Reflection; [assembly: AssemblyCompany("tom-englert.de")] [assembly: AssemblyProduct("ResXManager")] [assembly: AssemblyCopyright("Copyright tom-englert.de 2012-2018. Distributed under the MIT License.")] [assembly: AssemblyTrademark("")]
using System.Reflection; [assembly: AssemblyCompany("tom-englert.de")] [assembly: AssemblyProduct("ResXManager")] [assembly: AssemblyCopyright("Copyright tom-englert.de 2012-2017. Distributed under the MIT License.")] [assembly: AssemblyTrademark("")]
mit
C#
a77578035adf7af4a2e0b49340ccae9b4c4503e4
Bump version.
mios-fi/mios.payment
core/Properties/AssemblyInfo.cs
core/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
bsd-2-clause
C#
22ffe1496abcf9a76a8c82c20707fe994f1f7bc9
Fix actual contingent table structure
roman-yagodin/R7.University,roman-yagodin/R7.University,roman-yagodin/R7.University
R7.University.EduProgramProfiles/Views/Contingent/_ActualRow.cshtml
R7.University.EduProgramProfiles/Views/Contingent/_ActualRow.cshtml
@inherits DotNetNuke.Web.Mvc.Framework.DnnWebViewPage<ContingentViewModel> @using DotNetNuke.Web.Mvc.Helpers @using R7.University.EduProgramProfiles.ViewModels <td itemprop="eduCode">@Model.EduProgramProfile.EduProgram.Code</td> <td itemprop="eduName">@Model.EduProgramProfileTitle</td> <td itemprop="eduLevel">@...
@inherits DotNetNuke.Web.Mvc.Framework.DnnWebViewPage<ContingentViewModel> @using DotNetNuke.Web.Mvc.Helpers @using R7.University.EduProgramProfiles.ViewModels <td itemprop="eduCode">@Model.EduProgramProfile.EduProgram.Code</td> <td itemprop="eduName">@Model.EduProgramProfileTitle</td> <td itemprop="eduLevel">@...
agpl-3.0
C#
cd08de29e91918c1fa760e666b8a8bc1afdb1d60
Use metric system
AlbericTrancart/karambaToSofistik
Source/GhToSofistik/Classes/Parser.cs
Source/GhToSofistik/Classes/Parser.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace GhToSofistik.Classes { class Parser { public string file { get; protected set; } public Parser(List<Material> materials, List<CrossSection> crossSections, List<Node> nodes, List<Beam> beams, L...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace GhToSofistik.Classes { class Parser { public string file { get; protected set; } public Parser(List<Material> materials, List<CrossSection> crossSections, List<Node> nodes, List<Beam> beams, L...
apache-2.0
C#
f0be54a0e0cc11196a4ee62e371822217f81e922
Increase version
mregni/statistics-for-emby-server,mregni/statistics-for-emby-server
Statistics/Properties/AssemblyInfo.cs
Statistics/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("Statistics")] [assembly: AssemblyDescript...
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("Statistics")] [assembly: AssemblyDescript...
mit
C#
abc16af016ed2dbac88f5f27cc1d927d00894e8a
fix footer in GUI
kreeben/resin,kreeben/resin
src/Sir.HttpServer/Views/_Layout.cshtml
src/Sir.HttpServer/Views/_Layout.cshtml
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>@ViewBag.Title</title> <meta charset="UTF-8"> </head> <body> <style> body{ font-family: sans-serif; } a { text-decoration: none; color: oranger...
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>@ViewBag.Title</title> <meta charset="UTF-8"> </head> <body> <style> body{ font-family: sans-serif; } a { text-decoration: none; color: oranger...
mit
C#
6f71bcad252b3a2f59f8eadf9e821caa3ce05f74
Use the actual value of the Expanded property
sevoku/xwt,hwthomas/xwt,lytico/xwt,mono/xwt,residuum/xwt,mminns/xwt,iainx/xwt,steffenWi/xwt,hamekoz/xwt,mminns/xwt,cra0zy/xwt,TheBrainTech/xwt,akrisiun/xwt,directhex/xwt,antmicro/xwt
Xwt/Xwt/Expander.cs
Xwt/Xwt/Expander.cs
using System; using Xwt.Backends; using System.ComponentModel; using Xwt.Drawing; namespace Xwt { public class Expander: Widget { EventHandler expandChanged; Xwt.Widget child; protected new class WidgetBackendHost: Widget.WidgetBackendHost, IExpandEventSink { public void ExpandChanged () { ((Expan...
using System; using Xwt.Backends; using System.ComponentModel; using Xwt.Drawing; namespace Xwt { public class Expander: Widget { EventHandler expandChanged; Xwt.Widget child; protected new class WidgetBackendHost: Widget.WidgetBackendHost, IExpandEventSink { public void ExpandChanged () { ((Expan...
mit
C#
b4e4314acf31bcbe82dc0c9a9c41ce80e50a0e33
fix navbaritem auto-collapsing.
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Fluent/ViewModels/NavBarItemViewModel.cs
WalletWasabi.Fluent/ViewModels/NavBarItemViewModel.cs
using ReactiveUI; using System; namespace WalletWasabi.Fluent.ViewModels { public abstract class NavBarItemViewModel : ViewModelBase, IRoutableViewModel { private bool _isSelected; private bool _isExpanded; private string _title; public NavBarItemViewModel(IScreen screen) { HostScreen = screen; } ...
using ReactiveUI; using System; namespace WalletWasabi.Fluent.ViewModels { public abstract class NavBarItemViewModel : ViewModelBase, IRoutableViewModel { private bool _isSelected; private bool _isExpanded; private string _title; public NavBarItemViewModel(IScreen screen) { HostScreen = screen; } ...
mit
C#
c6725638d4282276cc0151ae6659f31f7702f2a8
Bump version to 1.7
alexguirre/RAGENativeUI,alexguirre/RAGENativeUI
Source/Properties/AssemblyInfo.cs
Source/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("RAGENativeUI")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("RAGENativeUI")] [assembly: AssemblyCopyright("Copyright 2016-2020")] [assembl...
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("RAGENativeUI")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("RAGENativeUI")] [assembly: AssemblyCopyright("Copyright 2016-2017")] [assembl...
mit
C#
856e0565152e5967e487030a4492e45863fcd3b6
Remove unnecessary finaliser.
Frontear/osuKyzer,johnneijzen/osu,osu-RP/osu-RP,DrabWeb/osu,DrabWeb/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,Damnae/osu,ppy/osu,tacchinotacchi/osu,Drezi126/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,2yangk23/osu,ZLima12/osu,smoogipoo/osu,smoogipooo/osu,johnneijzen/osu,2yangk23/osu,EVAST9919/osu,ppy/osu,ppy/...
osu.Game/Beatmaps/WorkingBeatmap.cs
osu.Game/Beatmaps/WorkingBeatmap.cs
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>. //Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using osu.Framework.Audio.Track; using osu.Game.Beatmaps.IO; namespace osu.Game.Beatmaps { public class WorkingBeatmap : IDisposable { ...
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>. //Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using osu.Framework.Audio.Track; using osu.Game.Beatmaps.IO; namespace osu.Game.Beatmaps { public class WorkingBeatmap : IDisposable { ...
mit
C#
da72806693cc9688f189f61daa17f2f45ead6145
Remove lookup logic from SkinnableSound
UselessToucan/osu,2yangk23/osu,2yangk23/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,EVAST9919/osu,NeoAdonis/osu,ppy/osu,ZLima12/osu,peppy/osu,ZLima12/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,johnneijzen/osu,ppy/osu,EVAST9919/osu,peppy/osu-new,johnneijzen/osu,smoo...
osu.Game/Skinning/SkinnableSound.cs
osu.Game/Skinning/SkinnableSound.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Audio; using osu.Framework.Audio.Sample; using osu.Framework.Ext...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Framework.Allocation; using osu.Framework.Audio; using osu.Framework.Audio.Sample; using osu...
mit
C#
05c9a2e1cc5c968c6644203ea45548bc74b73a0c
Remove unneeded intermediate variable
mjkent/WordAnalyzer
WordAnalyzer/InputStringGetter.cs
WordAnalyzer/InputStringGetter.cs
using System; using System.Net; namespace WordAnalyzer { internal static class InputStringGetter { internal static string GetInputString(string input) { if (IsLocalPath(input)) { return System.IO.File.ReadAllText(input); } else ...
using System; using System.Net; namespace WordAnalyzer { internal static class InputStringGetter { internal static string GetInputString(string input) { string text; if (IsLocalPath(input)) { text = System.IO.File.ReadAllText(input); ...
mit
C#
1d57d0cba6bd60d0f5a28630b349e75b36ccd89e
Add support for invites without attached users
AntiTcb/Discord.Net,Confruggy/Discord.Net,LassieME/Discord.Net,RogueException/Discord.Net
src/Discord.Net.Rest/Entities/Invites/RestInviteMetadata.cs
src/Discord.Net.Rest/Entities/Invites/RestInviteMetadata.cs
using System; using Model = Discord.API.InviteMetadata; namespace Discord.Rest { public class RestInviteMetadata : RestInvite, IInviteMetadata { private long _createdAtTicks; public bool IsRevoked { get; private set; } public bool IsTemporary { get; private set; } public int? ...
using System; using Model = Discord.API.InviteMetadata; namespace Discord.Rest { public class RestInviteMetadata : RestInvite, IInviteMetadata { private long _createdAtTicks; public bool IsRevoked { get; private set; } public bool IsTemporary { get; private set; } public int? ...
mit
C#
c41415f49910fbefedbd511b2af47daa927952a4
Remove beta from version number
kevinkuszyk/FluentAssertions.Ioc.Ninject,kevinkuszyk/FluentAssertions.Ioc.Ninject
src/FluentAssertions.Ioc.Ninject/Properties/AssemblyInfo.cs
src/FluentAssertions.Ioc.Ninject/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("Fl...
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("Fl...
apache-2.0
C#
dd2a0eb00226f0564ef26581edf784177be52313
Update exception handling for physical file manifest reader
sergeysolovev/webpack-aspnetcore,sergeysolovev/webpack-aspnetcore,sergeysolovev/webpack-aspnetcore
src/Webpack.AspNetCore/Static/PhysicalFileManifestReader.cs
src/Webpack.AspNetCore/Static/PhysicalFileManifestReader.cs
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Threading.Tasks; using Webpack.AspNetCore.Internal; namespace Webpack.AspNetCore.Static { internal class PhysicalFileManifestReader : IManifestReader { private readonly WebpackContext context; ...
using Newtonsoft.Json; using System.Collections.Generic; using System.IO; using System.Threading.Tasks; using Webpack.AspNetCore.Internal; namespace Webpack.AspNetCore.Static { internal class PhysicalFileManifestReader : IManifestReader { private readonly WebpackContext context; public Physic...
mit
C#
3010208820b277c1a23a5e3d3405f4980921d995
Make handler param in EventExtensions nullable
eposgmbh/Epos.Foundation
src/Epos.Utilities/EventExtensions.cs
src/Epos.Utilities/EventExtensions.cs
using System; using System.ComponentModel; namespace Epos.Utilities { /// <summary>Collection of extension methods for event raising.</summary> public static class EventExtensions { /// <summary>Raises an <see cref="System.EventHandler"/> event.</summary> /// <param name="handler">Event han...
using System; using System.ComponentModel; namespace Epos.Utilities { /// <summary>Collection of extension methods for event raising.</summary> public static class EventExtensions { /// <summary>Raises an <see cref="System.EventHandler"/> event.</summary> /// <param name="handler">Event han...
mit
C#
b98db249840166214195c77db6760fd2b9a4b245
Change RSS Feed URI for show Vulcan's Gravatar photo (#256)
planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin
src/Firehose.Web/Authors/VulcanLee.cs
src/Firehose.Web/Authors/VulcanLee.cs
using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class VulcanLee : IWorkAtXamarinOrMicrosoft { public string FirstName => "Vulcan"; public string LastName => "Lee...
using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class VulcanLee : IWorkAtXamarinOrMicrosoft { public string FirstName => "Vulcan"; public string LastName => "Lee...
mit
C#
b6d78d37215866bf9a99feb2cb223b59b17c303c
Update test to check for issue id
JetBrains/YouTrackSharp,JetBrains/YouTrackSharp
tests/YouTrackSharp.Tests/Integration/Issues/CreateIssue.cs
tests/YouTrackSharp.Tests/Integration/Issues/CreateIssue.cs
using System; using System.Threading.Tasks; using Xunit; using YouTrackSharp.Issues; using YouTrackSharp.Tests.Infrastructure; namespace YouTrackSharp.Tests.Integration.Issues { public partial class IssuesServiceTests { public class CreateIssue { [Fact] public async Task...
using System; using System.Threading.Tasks; using Xunit; using YouTrackSharp.Issues; using YouTrackSharp.Tests.Infrastructure; namespace YouTrackSharp.Tests.Integration.Issues { public partial class IssuesServiceTests { public class CreateIssue { [Fact] public async Task...
apache-2.0
C#
9b750783527ab7f6daedf410c25832171ffecb9d
Add debug log for latency on server
Double-Fine-Game-Club/pongball
Assets/scripts/utils/TableNetworking.cs
Assets/scripts/utils/TableNetworking.cs
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Networking; public class TableNetworking : NetworkBehaviour { [SyncVar] public string variant; [SyncVar] public string table; [SyncVar] public bool selected; public float logPingFrequency = 5.0f; [ServerCallb...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Networking; public class TableNetworking : NetworkBehaviour { [SyncVar] public string variant; [SyncVar] public string table; [SyncVar] public bool selected; [ServerCallback] void Start () { selected = fal...
mit
C#
f71211631e0e205c5737522f7c1c898461a7a83f
Change ordering for FDC to be after PLT HQs
mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander
BatteryCommander.Common/Models/Group.cs
BatteryCommander.Common/Models/Group.cs
using System.ComponentModel.DataAnnotations; namespace BatteryCommander.Common.Models { //public class Group //{ // [Key] // [DatabaseGenerated(DatabaseGeneratedOption.Identity)] // public int Id { get; set; } // [Required, StringLength(50)] // public String Name { get; set...
using System.ComponentModel.DataAnnotations; namespace BatteryCommander.Common.Models { //public class Group //{ // [Key] // [DatabaseGenerated(DatabaseGeneratedOption.Identity)] // public int Id { get; set; } // [Required, StringLength(50)] // public String Name { get; set...
mit
C#
6b36e1cdd4818b9b5653fe243e6ae67e265fd251
Update PatchConfig.cs
Pathoschild/StardewMods
ContentPatcher/Framework/PatchConfig.cs
ContentPatcher/Framework/PatchConfig.cs
using System.Collections.Generic; using Microsoft.Xna.Framework; namespace ContentPatcher.Framework { /// <summary>The input settings for a patch from the configuration file.</summary> internal class PatchConfig { /********* ** Accessors *********/ /// <summary>The patch typ...
using System.Collections.Generic; using Microsoft.Xna.Framework; namespace ContentPatcher.Framework { /// <summary>The input settings for a patch from the configuration file.</summary> internal class PatchConfig { /********* ** Accessors *********/ /// <summary>The patch typ...
mit
C#
bb1b779fc03dd324157954388a717dbca442e448
Change backup job to run at 0600 EST
mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander
Battery-Commander.Web/Jobs/JobHandler.cs
Battery-Commander.Web/Jobs/JobHandler.cs
using BatteryCommander.Web.Models; using FluentScheduler; using Microsoft.AspNetCore.Builder; using Microsoft.Extensions.Logging; using System; namespace BatteryCommander.Web.Jobs { internal static class JobHandler { public static void UseJobScheduler(this IApplicationBuilder app, ILoggerFactory logge...
using BatteryCommander.Web.Models; using FluentScheduler; using Microsoft.AspNetCore.Builder; using Microsoft.Extensions.Logging; using System; namespace BatteryCommander.Web.Jobs { internal static class JobHandler { public static void UseJobScheduler(this IApplicationBuilder app, ILoggerFactory logge...
mit
C#
96e8e1742128f99124438f31b37cc0656c235d37
Add a combine callback.
Bloyteg/AW.Math
Bloyteg.AW.Math/Geometry/Triangulator.cs
Bloyteg.AW.Math/Geometry/Triangulator.cs
// Copyright 2014 Joshua R. Rodgers // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agre...
// Copyright 2014 Joshua R. Rodgers // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agre...
apache-2.0
C#
69e9e3bc496a5ae5d5839b970db9fbd999a21a97
Fix user-agent string robots.txt
CollActionteam/CollAction,CollActionteam/CollAction,CollActionteam/CollAction,CollActionteam/CollAction,CollActionteam/CollAction
CollAction/Controllers/HomeController.cs
CollAction/Controllers/HomeController.cs
using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Localization; using System.Text; using CollAction.Data; using Microsoft.AspNetCore.Hosting; using CollAction.Helpers; using System.Threading.Tasks; namespace CollAction.Controllers { public class HomeController : Controller { private readonly ...
using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Localization; using System.Text; using CollAction.Data; using Microsoft.AspNetCore.Hosting; using CollAction.Helpers; using System.Threading.Tasks; namespace CollAction.Controllers { public class HomeController : Controller { private readonly ...
agpl-3.0
C#
ea97448e41ea82835e78525a9d64ea400795a678
Add configuration documentation
eberlitz/WebApiClientTS,eberlitz/WebApiClientTS,eberlitz/WebApiClientTS
src/WebApiClientTS/GeneratorConfig.cs
src/WebApiClientTS/GeneratorConfig.cs
namespace WebApiClientTS { /// <summary> /// Represents the configuration that you can pass to generator. /// </summary> public sealed class GeneratorConfig { /// <summary> /// The template file wich you want to use to generate. /// </summary> public string Controlle...
namespace WebApiClientTS { public sealed class GeneratorConfig { public string ControllerTemplate { get; set; } public object FileNameSuffix { get; set; } = ".api.service.ts"; public string[] IgnoreThoseControllers { get; set; } = new string[] { }; public string OutputFolderPath...
mit
C#
f2cd262f19771ff2289a53225f8fea558b6390a8
remove unneccessary field
kreeben/resin,kreeben/resin
src/Sir.HttpServer/Features/JobQueue.cs
src/Sir.HttpServer/Features/JobQueue.cs
using System; using System.Collections.Generic; using Microsoft.Extensions.Logging; using Sir.Core; namespace Sir.HttpServer.Features { public abstract class JobQueue : IDisposable { private readonly ProducerConsumerQueue<AsyncJob> _queue; private readonly ILogger _logger; private rea...
using System; using System.Collections.Generic; using Microsoft.Extensions.Logging; using Sir.Core; namespace Sir.HttpServer.Features { public abstract class JobQueue : IDisposable { private readonly ProducerConsumerQueue<AsyncJob> _queue; private readonly ILogger _logger; private rea...
mit
C#
6f15f5382043cc5380f2bfad54c81375ca8d6a3e
Change modifier for ContentHelper
extremecodetv/SocksSharp
src/SocksSharp/Helpers/ContentHelper.cs
src/SocksSharp/Helpers/ContentHelper.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SocksSharp.Helpers { internal static class ContentHelper { public static bool IsContentHeader(string name) { //https://github.com/dotnet/corefx/blob/3e72ee5...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SocksSharp.Helpers { public static class ContentHelper { public static bool IsContentHeader(string name) { //https://github.com/dotnet/corefx/blob/3e72ee597...
mit
C#
097265d07487cb9254ea2a450621d5ad65496ce2
Add cls-compliant attribute to assembly
mergut/FakeSystemWeb
FakeSystemWeb/Properties/AssemblyInfo.cs
FakeSystemWeb/Properties/AssemblyInfo.cs
/* * The MIT License (MIT) * * Copyright (c) 2015 Mehmet Ergut * * 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 ...
/* * The MIT License (MIT) * * Copyright (c) 2015 Mehmet Ergut * * 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 ...
mit
C#
9affe5a96c00ba5e7450005eae24f154e156a006
Fix userguide link
jumpinjackie/fdotoolbox,jumpinjackie/fdotoolbox
FdoToolbox.Base/Commands/HelpCommands.cs
FdoToolbox.Base/Commands/HelpCommands.cs
#region LGPL Header // Copyright (C) 2009, Jackie Ng // https://github.com/jumpinjackie/fdotoolbox, jumpinjackie@gmail.com // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either //...
#region LGPL Header // Copyright (C) 2009, Jackie Ng // https://github.com/jumpinjackie/fdotoolbox, jumpinjackie@gmail.com // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either //...
lgpl-2.1
C#
3fa4a671b39195bb87102dcf4548bb4111e6da48
Fix build
rsdn/CodeJam
CodeJam.Main/Expressions/NamespaceDoc.cs
CodeJam.Main/Expressions/NamespaceDoc.cs
#if !LESSTHAN_NET35 using System; using System.Linq.Expressions; using System.Runtime.CompilerServices; using JetBrains.Annotations; namespace CodeJam.Expressions { /// <summary> /// The <see cref="CodeJam.Expressions"/> namespace contains <see cref="Expression"/> related functionality. /// </summary> [UsedImpli...
using System; using System.Linq.Expressions; using System.Runtime.CompilerServices; using JetBrains.Annotations; namespace CodeJam.Expressions { /// <summary> /// The <see cref="CodeJam.Expressions"/> namespace contains <see cref="Expression"/> related functionality. /// </summary> [UsedImplicitly] [CompilerGen...
mit
C#
36f794d3f3599451a4727956c8aa94544eaa966f
Index change
yimlu/script-repo,yimlu/script-repo
ScriptRepository/Views/Home/Index.cshtml
ScriptRepository/Views/Home/Index.cshtml
@{ ViewBag.Title = "Home Page"; } <div class="row" style="margin-top: 15px;"> <div class="col-md-12"> <div class="btn-group"> <a class="btn btn-primary" href="#">New</a> </div> </div> <div class="col-md-12"> <table class="table table-responsive table-striped"> ...
@{ ViewBag.Title = "Home Page"; } <div class="row"> <div class="col-md-12"> <table class="table table-responsive"> <thead> <tr> <td>Script Guid</td> <td>Issue Number</td> <td>Author</td> <td>Language</td> ...
mit
C#
8133a7bd65a93bc1a36f261bd457b53639622fa8
Raise version number.
City-of-Helsinki/organisaatiorekisteri,City-of-Helsinki/organisaatiorekisteri,City-of-Helsinki/organisaatiorekisteri,City-of-Helsinki/organisaatiorekisteri
Source/SharedFiles/SharedAssemblyInfo.cs
Source/SharedFiles/SharedAssemblyInfo.cs
using System.Reflection; [assembly: AssemblyProduct("Organisaatiorekisteri")] [assembly: AssemblyVersion("0.2.0.0")] [assembly: AssemblyFileVersion("0.2.0.0")] [assembly: AssemblyInformationalVersion("0.2.0")]
using System.Reflection; [assembly: AssemblyProduct("Organisaatiorekisteri")] [assembly: AssemblyVersion("0.1.0.0")] [assembly: AssemblyFileVersion("0.1.0.0")] [assembly: AssemblyInformationalVersion("0.1.0")]
mit
C#
ae4fddb1758b6f8a502e7f4bcb6977b60083e859
replace invalid chars from filename
MetaG8/Metrics.NET,ntent-ad/Metrics.NET,MetaG8/Metrics.NET,DeonHeyns/Metrics.NET,MetaG8/Metrics.NET,alhardy/Metrics.NET,Liwoj/Metrics.NET,cvent/Metrics.NET,Recognos/Metrics.NET,cvent/Metrics.NET,alhardy/Metrics.NET,mnadel/Metrics.NET,ntent-ad/Metrics.NET,huoxudong125/Metrics.NET,etishor/Metrics.NET,huoxudong125/Metrics...
Src/Metrics/Reporters/CSVFileAppender.cs
Src/Metrics/Reporters/CSVFileAppender.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace Metrics.Reporters { public class CSVFileAppender { private readonly string directory; public CSVFileAppender(string directory) { this.directory = directory; } publ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace Metrics.Reporters { public class CSVFileAppender { private readonly string directory; public CSVFileAppender(string directory) { this.directory = directory; } publ...
apache-2.0
C#
5233480cb0c35b25d32300abda90f744b273696d
Update version
simonray/exchange-rate
ExchangeRate/Properties/AssemblyInfo.cs
ExchangeRate/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("Ex...
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("Ex...
mit
C#
e5ad3eeeaebc7c966b53178fa3b39375489d9bd2
Update AssemblyInfo.cs
Ar3sDevelopment/Json.NET.Web
Json.NET.Web/Properties/AssemblyInfo.cs
Json.NET.Web/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; // Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. [assembly: AssemblyTitle("Json.NET.Web")] [assembly: AssemblyDescription("Json.NET Http Client")] [assembly: AssemblyConfi...
using System.Reflection; using System.Runtime.CompilerServices; // Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. [assembly: AssemblyTitle("Json.NET.Web")] [assembly: AssemblyDescription("Json.Net Http Client")] [assembly: AssemblyConfi...
mit
C#
3cff09b6ce3ef4aaef73b495ae34027a35ddd643
Remove unused seperator
carbon/Amazon
src/Amazon.S3/Helpers/Seperators.cs
src/Amazon.S3/Helpers/Seperators.cs
namespace Amazon.S3 { internal class Seperators { public static readonly char[] DoubleQuote = { '"' }; } }
namespace Amazon.S3 { internal class Seperators { public static readonly char[] ForwardSlash = { '/' }; public static readonly char[] DoubleQuote = { '"' }; } }
mit
C#
c1e8d971d4e51c3ad5a695d6ce835b85525dd557
Support indexed scripts API - changes to IPutScriptRequest
CSGOpenSource/elasticsearch-net,gayancc/elasticsearch-net,KodrAus/elasticsearch-net,wawrzyn/elasticsearch-net,robrich/elasticsearch-net,adam-mccoy/elasticsearch-net,tkirill/elasticsearch-net,joehmchan/elasticsearch-net,RossLieberman/NEST,ststeiger/elasticsearch-net,geofeedia/elasticsearch-net,CSGOpenSource/elasticsearc...
src/Nest/DSL/PutScriptDescriptor.cs
src/Nest/DSL/PutScriptDescriptor.cs
using System.IO; using Elasticsearch.Net; using Newtonsoft.Json; namespace Nest { [JsonObject(MemberSerialization = MemberSerialization.OptIn)] public interface IPutScriptRequest : IRequest<PutScriptRequestParameters> { [JsonProperty("script")] string Script { get; set; } [JsonIgnor...
using System.IO; using Elasticsearch.Net; using Newtonsoft.Json; namespace Nest { [JsonObject(MemberSerialization = MemberSerialization.OptIn)] public interface IPutScriptRequest : IRequest<PutScriptRequestParameters> { [JsonProperty("script")] string Script { get; set; } } public ...
apache-2.0
C#
9055f5426deecf1069e5e3054cfbee2a09832a66
Fix division by zero bug for status service
Dynalon/Rainy,Dynalon/Rainy,Dynalon/Rainy,Dynalon/Rainy
Rainy/WebService/Admin/StatusService.cs
Rainy/WebService/Admin/StatusService.cs
using ServiceStack.ServiceHost; using Rainy.Db; using ServiceStack.OrmLite; using System; using ServiceStack.ServiceInterface.Cors; using ServiceStack.Common.Web; namespace Rainy.WebService.Admin { [Route("/api/admin/status/","GET, OPTIONS")] [AdminPasswordRequired] public class StatusRequest : IReturn<Status> { ...
using ServiceStack.ServiceHost; using Rainy.Db; using ServiceStack.OrmLite; using System; using ServiceStack.ServiceInterface.Cors; using ServiceStack.Common.Web; namespace Rainy.WebService.Admin { [Route("/api/admin/status/","GET, OPTIONS")] [AdminPasswordRequired] public class StatusRequest : IReturn<Status> { ...
agpl-3.0
C#
2ab235ebe72956b34844f1966b7fca7fa1a5861d
Use new temporary folder storage for beatmap import tests
smoogipooo/osu,NeoAdonis/osu,peppy/osu,peppy/osu,peppy/osu-new,peppy/osu,NeoAdonis/osu,smoogipoo/osu,smoogipoo/osu,ppy/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu
osu.Game.Tests/Resources/TestResources.cs
osu.Game.Tests/Resources/TestResources.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.IO; using NUnit.Framework; using osu.Framework.IO.Stores; using osu.Framework.Testing; namespace osu.Game.Tests.Resources { public static...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.IO; using NUnit.Framework; using osu.Framework.IO.Stores; namespace osu.Game.Tests.Resources { public static class TestResources { public c...
mit
C#
9d679cb36ecc1a05f9b003d074c5cf175e037eef
Fix conditional compilation bug.
ctl-global/ctl-core
Ctl.Core/UriUtils.cs
Ctl.Core/UriUtils.cs
#if NET46 || NETSTANDARD1_4 using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ctl { /// <summary> /// Utility methods for working with URIs. /// </summary> public static class UriUtils { ...
#if !NET451 using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ctl { /// <summary> /// Utility methods for working with URIs. /// </summary> public static class UriUtils { /// <summary> ...
bsd-2-clause
C#
fbdef9749828326767e6c999e5b3300a38c2976b
Fix fallback to default combo colours not working (#6009)
UselessToucan/osu,2yangk23/osu,EVAST9919/osu,2yangk23/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,EVAST9919/osu,smoogipooo/osu,smoogipoo/osu,ZLima12/osu,ZLima12/osu,ppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu-new,peppy/osu,smoogipoo/osu,johnneijzen/osu,ppy/osu,johnneijzen/osu,Useless...
osu.Game/Skinning/DefaultSkin.cs
osu.Game/Skinning/DefaultSkin.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using osu.Framework.Audio.Sample; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Textures; u...
// 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.Audio.Sample; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Textures; using osu.Game.Audio; namespace os...
mit
C#
59876b8b1818537df0186d3794acfcb38df96aa5
Increment version
edpollitt/Nerdle.Ensure
Nerdle.Ensure/Properties/AssemblyInfo.cs
Nerdle.Ensure/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("Ne...
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("Ne...
mit
C#
29fbdf4d926f6e6a3594a14276ed91a9f715d6ba
Remove horizontal white space
ppy/osu,peppy/osu,EVAST9919/osu,peppy/osu,peppy/osu-new,ZLima12/osu,UselessToucan/osu,johnneijzen/osu,ppy/osu,smoogipoo/osu,2yangk23/osu,2yangk23/osu,NeoAdonis/osu,naoey/osu,naoey/osu,UselessToucan/osu,DrabWeb/osu,DrabWeb/osu,naoey/osu,ppy/osu,EVAST9919/osu,smoogipoo/osu,ZLima12/osu,johnneijzen/osu,NeoAdonis/osu,smoogi...
osu.Game/Graphics/DrawableDate.cs
osu.Game/Graphics/DrawableDate.cs
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using Humanizer; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Cursor; using osu.Game.Graphics.Sprites; name...
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using Humanizer; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Cursor; using osu.Game.Graphics.Sprites; name...
mit
C#
3f23c22d3aae69e6b3fbf621ca978e6f7afa9556
Fix setting dictionary expression
step-up-labs/firebase-database-dotnet
src/Firebase/Offline/Internals/MemberAccessVisitor.cs
src/Firebase/Offline/Internals/MemberAccessVisitor.cs
namespace Firebase.Database.Offline.Internals { using System.Collections.Generic; using System.Linq.Expressions; using System.Reflection; using Newtonsoft.Json; public class MemberAccessVisitor : ExpressionVisitor { private readonly IList<string> propertyNames = new List<string>(); ...
namespace Firebase.Database.Offline.Internals { using System.Collections.Generic; using System.Linq.Expressions; using System.Reflection; using Newtonsoft.Json; public class MemberAccessVisitor : ExpressionVisitor { private readonly IList<string> propertyNames = new List<string>(); ...
mit
C#
24e7f4fc013397323f79bddbef9d674a562ece1a
add keep alive tests
somdoron/AsyncIO
Source/AsyncIO.Tests/AsyncSocketTests.cs
Source/AsyncIO.Tests/AsyncSocketTests.cs
using System; using System.Collections.Generic; using System.Linq; using System.Net.Sockets; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; using NUnit.Framework; namespace AsyncIO.Tests { [TestFixture(true)] [TestFixture(false)] public class AsyncSocketTests ...
using System; using System.Collections.Generic; using System.Linq; using System.Net.Sockets; using System.Text; using System.Threading.Tasks; using NUnit.Framework; namespace AsyncIO.Tests { [TestFixture(true)] [TestFixture(false)] public class AsyncSocketTests { public AsyncSocketTests(bo...
mpl-2.0
C#
43524effc053073600f3d270a16689bd7e7eada3
Fix typo
06b/Emperor-Imports,06b/Emperor-Imports
src/EmperorImports/Views/credits.cshtml
src/EmperorImports/Views/credits.cshtml
@{ Layout = "Views/Shared/_Layout.cshtml"; } @section meta{ <title>Emperor Imports - Credits</title> } Penguin by Catherine Please from <a href="https://thenounproject.com/" target="_blank" rel="nofollow">the Noun Project</a> Slogans via <a href="https://gospaces.com/tools/slogan-maker" target="_blank" rel="...
@{ Layout = "Views/Shared/_Layout.cshtml"; } @section meta{ <title>Emperor Imports - Credits</title> } Penguin by Catherine Please from <a href="https://thenounproject.com/" target="_blank" rel="nofollow">the Noun Project</a> Slogans via <a href="https://gospaces.com/tools/slogan-maker" target="_blank" rel="...
mit
C#
1fb44219382c210e66f8cdea728b4b83baf49683
fix typo in suppression justification
liteguard/liteguard,adamralph/liteguard,liteguard/liteguard,adamralph/liteguard
src/LiteGuard.wp8/GlobalSuppressions.cs
src/LiteGuard.wp8/GlobalSuppressions.cs
// <copyright file="GlobalSuppressions.cs" company="LiteGuard contributors"> // Copyright (c) LiteGuard contributors. All rights reserved. // </copyright> ...
// <copyright file="GlobalSuppressions.cs" company="LiteGuard contributors"> // Copyright (c) LiteGuard contributors. All rights reserved. // </copyright> ...
mit
C#
e1e8f6275878edb3c0c60a42e5b8521794435c9a
Update ITransactionRegistrar.cs
AdtecSoftware/Adtec.SagePayMvc,AdtecSoftware/SagePayMvc,cergis-robert/SagePayMvc,JeremySkinner/SagePayMvc,IntegratedArts/SagePayMvc
src/SagePayMvc/ITransactionRegistrar.cs
src/SagePayMvc/ITransactionRegistrar.cs
#region License // Copyright 2009 The Sixth Form College Farnborough (http://www.farnborough.ac.uk) // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.o...
#region License // Copyright 2009 The Sixth Form College Farnborough (http://www.farnborough.ac.uk) // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.o...
apache-2.0
C#
b85d36ea6f028935040b964fcd869a746646d4af
Fix AssemblyVersionAttribute
smarts/log4net.Ext.Json.Serializers
shared/AssemblyInfo.cs
shared/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("lo...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("lo...
mit
C#
69e218ad5d5c19b24e79cfc81fa3790e442b65bb
Edit stupid comment
loicteixeira/gj-unity-api
Assets/Plugins/GameJolt/Core/Response.cs
Assets/Plugins/GameJolt/Core/Response.cs
using System.Collections.Generic; using System.Linq; using GJAPI.External.SimpleJSON; namespace GJAPI.Core { public enum ResponseFormat { KeyPair, Json, Dump } public class Response { public readonly ResponseFormat format; public readonly bool success = false; public readonly string raw = null; public ...
using System.Collections.Generic; using System.Linq; using GJAPI.External.SimpleJSON; namespace GJAPI.Core { public enum ResponseFormat { KeyPair, Json, Dump } public class Response { public readonly ResponseFormat format; public readonly bool success = false; public readonly string raw = null; public ...
mit
C#
29f993e3f9daa2efa4f11138896ee2b8fcf6d857
Use dotnet in Cake
Abc-Arbitrage/Zebus
build/build.cake
build/build.cake
////////////////////////////////////////////////////////////////////// // ARGUMENTS ////////////////////////////////////////////////////////////////////// var target = Argument("target", "Default"); var paths = new { src = MakeAbsolute(Directory("./../src")).FullPath, solution = MakeAbsolute(File("./../src/Ab...
////////////////////////////////////////////////////////////////////// // ARGUMENTS ////////////////////////////////////////////////////////////////////// var target = Argument("target", "Default"); var paths = new { src = MakeAbsolute(Directory("./../src")).FullPath, solution = MakeAbsolute(File("./../src/Ab...
mit
C#
982971ad0db54a671b1446760193e8c6256ab730
Add csscript to coreconfig by default
Notulp/Pluton,Notulp/Pluton
Pluton/CoreConfig.cs
Pluton/CoreConfig.cs
using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Text.RegularExpressions; using System.Globalization; using UnityEngine; namespace Pluton { public class CoreConfig : Singleton<CoreConfig>, ISingleton { private IniParser ConfigFile; public void I...
using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Text.RegularExpressions; using System.Globalization; using UnityEngine; namespace Pluton { public class CoreConfig : Singleton<CoreConfig>, ISingleton { private IniParser ConfigFile; public void I...
mit
C#
3e63a462cee84adc8ff3c375a9c9041b285a588a
Add validation rules to User class
anakrivokuca/EED,anakrivokuca/EED
src/EED.Domain/User.cs
src/EED.Domain/User.cs
using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web.Mvc; namespace EED.Domain { public class User { [HiddenInput(DisplayValue = false)] pub...
using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web.Mvc; namespace EED.Domain { public class User { [HiddenInput(DisplayValue = false)] pub...
mit
C#
d6bdb21508aed2a28ae6cd4ad90f319ca18bda08
Remove unused 'using'
SICU-Stress-Measurement-System/frontend-cs
StressMeasurementSystem/ViewModels/PatientViewModel.cs
StressMeasurementSystem/ViewModels/PatientViewModel.cs
using StressMeasurementSystem.Models; namespace StressMeasurementSystem.ViewModels { public class PatientViewModel { private Patient _patient; public PatientViewModel() { _patient = new Patient(); } public PatientViewModel(Patient patient) { ...
using System.Collections.Generic; using StressMeasurementSystem.Models; namespace StressMeasurementSystem.ViewModels { public class PatientViewModel { private Patient _patient; public PatientViewModel() { _patient = new Patient(); } public PatientViewModel...
apache-2.0
C#
27017ea1dce9c24a92f824f84669a1c81d7fe1cd
Add supplemental config file parameter, specify via environment variable
RockFramework/RockLib.Configuration
RockLibConfigurationBuilderExtensions.cs
RockLibConfigurationBuilderExtensions.cs
using System; using Microsoft.Extensions.Configuration; namespace RockLib.Configuration { public static class RockLibConfigurationBuilderExtensions { /// <summary> /// Adds the RockLib configuration provider to the builder using the configuration file "rocklib.config.json", /// relativ...
using System; using Microsoft.Extensions.Configuration; namespace RockLib.Configuration { public static class RockLibConfigurationBuilderExtensions { /// <summary> /// Adds the RockLib configuration provider to the builder using the configuration file "rocklib.config.json", /// relativ...
mit
C#
ffa161aa643c15aebe5ebf4dc9e9cee284991082
Fix TimeSpan converter
lbodtke/Q42.HueApi,Q42/Q42.HueApi,jessejjohnson/Q42.HueApi
src/Q42.HueApi/TransitionTimeConverter.cs
src/Q42.HueApi/TransitionTimeConverter.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; namespace Q42.HueApi { internal class TransitionTimeConverter : JsonConverter { public override bool CanConvert(Type objectType) { return objectType == typeo...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Q42.HueApi { internal class TransitionTimeConverter : Newtonsoft.Json.Converters.CustomCreationConverter<TimeSpan?> { public override TimeSpan? Create (Type objectType) { ...
mit
C#
a49289141c5760ebd31818af1882d7a569a9c1fb
Remove conditional Oracle connection builder compilation
NServiceBusSqlPersistence/NServiceBus.SqlPersistence
src/TestHelper/OracleConnectionBuilder.cs
src/TestHelper/OracleConnectionBuilder.cs
using System; using Oracle.ManagedDataAccess.Client; public static class OracleConnectionBuilder { public static OracleConnection Build() { return Build(false); } public static OracleConnection Build(bool disableMetadataPooling) { var connection = Environment.GetEnvironmentVariable...
#if NETFRAMEWORK using System; using Oracle.ManagedDataAccess.Client; public static class OracleConnectionBuilder { public static OracleConnection Build() { return Build(false); } public static OracleConnection Build(bool disableMetadataPooling) { var connection = Environment.GetEn...
mit
C#
9be2d4ee6d7d3eb9b2fc29d190393fe7046d16d4
comment out output lines in Test Initialize as they are currently unused. Tests are currently broken. Will fix.
ericthobbs/DHDynamicDNSClient,ericthobbs/DHDynamicDNSClient
Windows/DreamhostApi.Test/ClientTests.cs
Windows/DreamhostApi.Test/ClientTests.cs
using System; using System.Net.Http; using System.Threading.Tasks; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace DreamhostApi.Test { [TestClass] public class ClientTests { [AssemblyInitialize] public static void Initialize(TestContext context) { //contex...
using System; using System.Net.Http; using System.Threading.Tasks; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace DreamhostApi.Test { [TestClass] public class ClientTests { [AssemblyInitialize] public static void Initialize(TestContext context) { context....
mpl-2.0
C#
074c029f63b019114d4d93d71fae7865b1b5098f
Handle figure confs with no material sets
virtuallynaked/virtually-naked,virtuallynaked/virtually-naked
Importer/src/DazImportConfiguration.cs
Importer/src/DazImportConfiguration.cs
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; [Serializable] public class MaterialSetImportConfiguration { [Serializable] public class Variant { [JsonProperty("name")] public string name; [JsonProperty("paths")] public string[] materialsDufPaths; } [Serializable]...
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; [Serializable] public class MaterialSetImportConfiguration { [Serializable] public class Variant { [JsonProperty("name")] public string name; [JsonProperty("paths")] public string[] materialsDufPaths; } [Serializable]...
mit
C#
c8ce81f5debf20359d7b3746052d821b8d2a1212
Fix view
Branimir123/PhotoLife,Branimir123/PhotoLife,Branimir123/PhotoLife
PhotoLife/PhotoLife.Web/Views/Shared/_ShortPostPartial.cshtml
PhotoLife/PhotoLife.Web/Views/Shared/_ShortPostPartial.cshtml
@model PhotoLife.ViewModels.Post.ShortPostViewModel <div class="well"> <h2 class="media-heading"> @Html.ActionLink(Model.Title, "Details", new { controller = "Post", id = Model.Id }) </h2> <ul class="list-inline list-unstyled"> <li><span><i class="glyphicon glyphicon-calendar"></i> @string...
@model PhotoLife.ViewModels.Post.ShortPostViewModel <div class="well"> <h2 class="media-heading"> @Html.ActionLink(Model.Title, "Details", new { controller = "Post", id = Model.Id }) </h2> <ul class="list-inline list-unstyled"> <li><span><i class="glyphicon glyphicon-calendar"></i> @string...
mit
C#
58e706a96f3af90406db83cbc3c5077f0ca77394
Remove $
mattgwagner/alert-roster
alert-roster.web/Views/Home/Index.cshtml
alert-roster.web/Views/Home/Index.cshtml
@model IEnumerable<alert_roster.web.Models.Message> @{ ViewBag.Title = "Messages"; } <div class="jumbotron"> <h1>@ViewBag.Title</h1> </div> @foreach (var message in Model) { <div class="row"> <div class="col-md-4"> <h2> <script>var d = moment.utc('@message.PostedDate').lo...
@model IEnumerable<alert_roster.web.Models.Message> @{ ViewBag.Title = "Messages"; } <div class="jumbotron"> <h1>@ViewBag.Title</h1> </div>$ @foreach (var message in Model) { <div class="row"> <div class="col-md-4"> <h2><script>var d = moment('@message.PostedDate').local(); document....
mit
C#
ed36084c25845bfbf69307b1f26499175c3fd933
Remove ifdef for net45 in sample
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
samples/MvcSample.Web/Startup.cs
samples/MvcSample.Web/Startup.cs
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.DependencyInjection; using Microsoft.AspNet.DependencyInjection.Fallback; using Microsoft.AspNet.Mvc; using Microsoft.AspNet.Routing; namespace MvcSample.Web { public class Startup { public void Configuration(IBuilder builder) { ...
 #if NET45 using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.DependencyInjection; using Microsoft.AspNet.DependencyInjection.Fallback; using Microsoft.AspNet.Mvc; using Microsoft.AspNet.Routing; namespace MvcSample.Web { public class Startup { public void Configuration(IBuilder builder) ...
apache-2.0
C#
70d00a03ce8a0b513484987c7c7ffdc4136dccfb
Update ExchangeRateEntity.cs
tiksn/TIKSN-Framework
TIKSN.Core/Finance/ForeignExchange/Data/ExchangeRateEntity.cs
TIKSN.Core/Finance/ForeignExchange/Data/ExchangeRateEntity.cs
using System; using TIKSN.Data; namespace TIKSN.Finance.ForeignExchange.Data { public class ExchangeRateEntity : IEntity<int> { public string BaseCurrencyCode { get; set; } public string CounterCurrencyCode { get; set; } public DateTimeOffset AsOn { get; set; } public decimal R...
using System; using TIKSN.Data; namespace TIKSN.Finance.ForeignExchange.Data { public class ExchangeRateEntity : IEntity<int> { public int ID { get; set; } public string BaseCurrencyCode { get; set; } public string CounterCurrencyCode { get; set; } public DateTimeOffset AsOn { ...
mit
C#
14ecb87b0d7bbc781f48456801ce44db4fb2768d
Update XStyles.cs
Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D
src/Core2D/Collections/XStyles.cs
src/Core2D/Collections/XStyles.cs
// Copyright (c) Wiesław Šoltés. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Collections.Immutable; using Core2D.Attributes; using Core2D.Style; namespace Core2D.Collections { /// <summary> /// Observable...
// Copyright (c) Wiesław Šoltés. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Collections.Immutable; using Core2D.Attributes; using Core2D.Style; namespace Core2D.Collections { /// <summary> /// Observable...
mit
C#
9319ce53cac291b5ed8a6c15e5474db6345bddc6
Fix PackageVersion namespace
stevedesmond-ca/dotnet-libyear
src/LibYear.Lib/PackageVersion.cs
src/LibYear.Lib/PackageVersion.cs
using System; using NuGet.Versioning; namespace LibYear.Lib { public class PackageVersion : NuGetVersion { public bool IsWildcard { get; private set; } public PackageVersion(string version) : this(Parse(version)) { } public PackageVersion(bool isWildcard) : this(0,0,0) { IsWildcard = isWildcar...
using System; using NuGet.Versioning; public class PackageVersion : NuGetVersion { public bool IsWildcard { get; private set; } public PackageVersion(string version) : this(Parse(version)) { } public PackageVersion(bool isWildcard) : this(0,0,0) { IsWildcard = isWildca...
mit
C#
61d1b1596fe00975f9a46f894dc2b472fa48d9af
Test kosmetik
IInspectable/Nav.Language.Extensions
Nav.Language.Tests/PerformanceTests.cs
Nav.Language.Tests/PerformanceTests.cs
#region Using Directives using System.Linq; using NUnit.Framework; using Pharmatechnik.Nav.Language; #endregion namespace Nav.Language.Tests { [TestFixture] public class PerformanceTests { [Test, MaxTime(200)] public void TestPerformance() { SyntaxTree.ParseText(Resources.Larg...
#region Using Directives using System; using System.Linq; using System.Diagnostics; using NUnit.Framework; using Pharmatechnik.Nav.Language; #endregion namespace Nav.Language.Tests { [TestFixture] public class PerformanceTests { [Test] //[Ignore("Schlgt auf lahmen Buildserven zu oft fehl."...
mit
C#
be014f52313e2eb295fafc327156b4a632cc729a
build for ci
lriki/Lumino,lriki/Lumino,lriki/Lumino,lriki/Lumino,lriki/Lumino,lriki/Lumino,lriki/Lumino
tools/LuminoBuild/Rules/BuildForCI_3.cs
tools/LuminoBuild/Rules/BuildForCI_3.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LuminoBuild.Rules { // CI 環境によっては実行時間が長すぎると強制終了させられる。そのため、一部のタスクを分離したりスキップするための BuildRule。 class BuildForCI_3 : BuildRule { public override string Name => "Build...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LuminoBuild.Rules { // CI 環境によっては実行時間が長すぎると強制終了させられる。そのため、一部のタスクを分離したりスキップするための BuildRule。 class BuildForCI_3 : BuildRule { public override string Name => "Build...
mit
C#
e6cd7a5b84183ff2468994260c9d22f34284a33e
Include team_id in returned Token
hurricanepkt/DropboxRestAPI,saguiitay/DropboxRestAPI,timerickson/DropboxRestAPI
src/DropboxRestAPI/Models/Core/Token.cs
src/DropboxRestAPI/Models/Core/Token.cs
/* * The MIT License (MIT) * * Copyright (c) 2014 Itay Sagui * * 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,...
/* * The MIT License (MIT) * * Copyright (c) 2014 Itay Sagui * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use,...
mit
C#
aa6e15a9d7612b637982beca7c2b2812cfb5c9ba
Fix feed uri for WarrenFrame.cs
planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell
src/Firehose.Web/Authors/WarrenFrame.cs
src/Firehose.Web/Authors/WarrenFrame.cs
using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; using System.Web; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class WarrenFrame : IAmAMicrosoftMVP { public string FirstName => "Warren"; public string LastN...
using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; using System.Web; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class WarrenFrame : IAmAMicrosoftMVP { public string FirstName => "Warren"; public string LastN...
mit
C#
8f0cb9836766f5c3eef6a30002b14176b3645a0f
fix for #19
esskar/Serialize.Linq
src/Serialize.Linq/ExpressionContext.cs
src/Serialize.Linq/ExpressionContext.cs
using System; using System.Collections.Concurrent; using System.Linq.Expressions; using Serialize.Linq.Nodes; namespace Serialize.Linq { public class ExpressionContext { private readonly ConcurrentDictionary<string, ParameterExpression> _parameterExpressions; private readonly ConcurrentDiction...
using System; using System.Collections.Concurrent; using System.Linq.Expressions; using Serialize.Linq.Nodes; namespace Serialize.Linq { public class ExpressionContext { private readonly ConcurrentDictionary<string, ParameterExpression> _parameterExpressions; private readonly ConcurrentDiction...
mit
C#
31b83616efbe277359abad7a60ee7c95a885ebfa
test release
Kukukuchu/kukukuchu-fake-test-nuget
src/app/FAKENugetDemo/QuoteGenerator.cs
src/app/FAKENugetDemo/QuoteGenerator.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FAKENugetDemo { public class QuoteGenerator { public string GiveMeRandomQuote() { var a = 1; var quotes = new List<string>(); ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FAKENugetDemo { public class QuoteGenerator { public string GiveMeRandomQuote() { var quotes = new List<string>(); var assembly...
mit
C#
095f42360ed876cd06f1735f57fc289aba75bb5f
Add russian abbreviations to foo/bar units.
Tirael/UnitsNet,maherkassim/UnitsNet,BrandonLWhite/UnitsNet,neutmute/UnitsNet,anjdreas/UnitsNet,BrandonLWhite/UnitsNet,BoGrevyDynatest/UnitsNet,anjdreas/UnitsNet,maherkassim/UnitsNet
Src/UnitsNet.ThirdParty/Units/Units.cs
Src/UnitsNet.ThirdParty/Units/Units.cs
// Copyright © 2007 by Initial Force AS. All rights reserved. // https://github.com/InitialForce/SIUnits // // 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, includin...
// Copyright © 2007 by Initial Force AS. All rights reserved. // https://github.com/InitialForce/SIUnits // // 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, includin...
mit
C#
a44ca6615899682461b012cc6ef598ee8ce26170
Bump version
EricZimmerman/AmcacheParser
AmcacheParser/Properties/AssemblyInfo.cs
AmcacheParser/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("AmcacheParser")] [assembly: AssemblyDesc...
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("AmcacheParser")] [assembly: AssemblyDesc...
mit
C#
f61425ba6b7cb91fc0429105c3bf7f90ba65113d
Set column widths in order that they're fully readable, but take up the minimum size needed.
kevintavog/Radish.net,kevintavog/Radish.net
src/FileInformationController.cs
src/FileInformationController.cs
using System; using MonoMac.AppKit; using MonoMac.Foundation; using Radish.Models; using System.Drawing; namespace Radish { [MonoMac.Foundation.Register("FileInformationController")] public partial class FileInformationController : NSViewController { private FileMetadata FileMetadata; public FileInformationCo...
using System; using MonoMac.AppKit; using MonoMac.Foundation; using Radish.Models; using NLog; using System.Drawing; namespace Radish { [MonoMac.Foundation.Register("FileInformationController")] public partial class FileInformationController : NSViewController { // static private readonly Logger logger = LogManag...
mit
C#
fe1e10da39dbf5e7b014e85c885b793b68e073cb
Bump version.
AustinWise/Austin.Linode
Austin.Linode/Properties/AssemblyInfo.cs
Austin.Linode/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Austin.Linode")] [assembly: AssemblyDescription("A .NET library for accessing the Linode API.")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Austin Wise")] [assembly: A...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Austin.Linode")] [assembly: AssemblyDescription("A .NET library for accessing the Linode API.")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Austin Wise")] [assembly: A...
bsd-3-clause
C#
78383145c14d90402ac9fec2faf15938dd85a86d
fix build warning
IxMilia/BCad,IxMilia/BCad
BCad.Core.UI/Extensions/ColorExtensions.cs
BCad.Core.UI/Extensions/ColorExtensions.cs
using System.Drawing; using Media = System.Windows.Media; namespace BCad.Core.UI.Extensions { public static class ColorExtensions { public static Color ToDrawingColor(this RealColor color) { return Color.FromArgb((int)(0xFF000000 | (uint)color.ToInt())); } public s...
using System.Drawing; using Media = System.Windows.Media; namespace BCad.Core.UI.Extensions { public static class ColorExtensions { public static Color ToDrawingColor(this RealColor color) { return Color.FromArgb((int)(0xFF000000 | color.ToInt())); } public static ...
apache-2.0
C#
c60080acc7c3af9f1f2252a45420804ae8538851
remove new() constraint from TransactionManager
aranasoft/cobweb
src/Core/Data/IDataTransactionManager.cs
src/Core/Data/IDataTransactionManager.cs
using System; using System.Data; using Cobweb.DependencyInjection; namespace Cobweb.Data { public interface IDataTransactionManager : IDependency { IDataTransaction BeginTransaction(); IDataTransaction BeginTransaction(IsolationLevel isolationLevel); void ExecuteTransaction(Action work); ...
using System; using System.Data; using Cobweb.DependencyInjection; namespace Cobweb.Data { public interface IDataTransactionManager : IDependency { IDataTransaction BeginTransaction(); IDataTransaction BeginTransaction(IsolationLevel isolationLevel); void ExecuteTransaction(Action work); ...
bsd-3-clause
C#
2b6e0184581c983cc7b5b3a9ff05918fa42e7526
Add test to demonstrate double creation of property
smoothdeveloper/docopt.net,smoothdeveloper/docopt.net,tonycrider/docopt.net,Comandermuffif/docopt.net,Comandermuffif/docopt.net,tonycrider/docopt.net,smoothdeveloper/docopt.net
src/DocoptNet.Tests/GenerateCodeTests.cs
src/DocoptNet.Tests/GenerateCodeTests.cs
using System; using System.Text.RegularExpressions; using NUnit.Framework; namespace DocoptNet.Tests { [TestFixture] public class GenerateCodeTests { [Test] public void Should_generate_code() { // TODO: not a very useful test, more of a sanity check const s...
using NUnit.Framework; namespace DocoptNet.Tests { [TestFixture] public class GenerateCodeTests { [Test] public void Should_generate_code() { // TODO: not a very useful test, more of a sanity check const string USAGE = @"Test host app for T4 Docopt.NET Usa...
mit
C#
b152d970949d5a570e96b5026f0bfbd20d8b01bd
Add name to artist
David-Desmaisons/DiscogsClient
DiscogsClient/Data/Result/DiscogsArtist.cs
DiscogsClient/Data/Result/DiscogsArtist.cs
namespace DiscogsClient.Data.Result { public class DiscogsArtist : DiscogsEntity { public string name { get; set; } public DiscogsImage[] images { get; set; } public DiscogsGroupOrBandMember[] members { get; set; } public DiscogsGroupOrBandMember[] groups { get; set; } ...
namespace DiscogsClient.Data.Result { public class DiscogsArtist : DiscogsEntity { public DiscogsImage[] images { get; set; } public DiscogsGroupOrBandMember[] members { get; set; } public DiscogsGroupOrBandMember[] groups { get; set; } public string[] urls { get; set; } ...
mit
C#
5b5e95b69af18a8f22b975fb409e0937f7b70247
Add basic test for pushups and run
mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander
Battery-Commander.Tests/ACFTTests.cs
Battery-Commander.Tests/ACFTTests.cs
using BatteryCommander.Web.Models.Data; using System; using Xunit; namespace BatteryCommander.Tests { public class ACFTTests { [Theory] [InlineData(15, 54, 84)] [InlineData(13, 29, 100)] [InlineData(23, 01, 0)] [InlineData(19, 05, 64)] [InlineData(17, 42, 72)] ...
using BatteryCommander.Web.Models.Data; using System; using Xunit; namespace BatteryCommander.Tests { public class ACFTTests { [Theory] [InlineData(15, 54, 84)] public void Calculate_Run_Score(int minutes, int seconds, int expected) { Assert.Equal(expected, ACFTScor...
mit
C#
35f63d6a21437b022c695ae55c99a0a103f4e893
Comment clarification.
Lombiq/Orchard-Training-Demo-Module,Lombiq/Orchard-Training-Demo-Module,Lombiq/Orchard-Training-Demo-Module
GraphQL/Services/ContentItemTypeBuilder.cs
GraphQL/Services/ContentItemTypeBuilder.cs
using GraphQL.Types; using OrchardCore.ContentManagement.GraphQL.Queries.Types; using OrchardCore.ContentManagement.Metadata.Models; using System.Linq; namespace Lombiq.TrainingDemo.GraphQL.Services { // Services that implement IContentTypeBuilder extend the features of existing ContentItem type fields, in...
using GraphQL.Types; using OrchardCore.ContentManagement.GraphQL.Queries.Types; using OrchardCore.ContentManagement.Metadata.Models; using System.Linq; namespace Lombiq.TrainingDemo.GraphQL.Services { // Services that implement IContentTypeBuilder extend the features of existing ContentItem type fields, in...
bsd-3-clause
C#
8e961dba625185f4742ddc2e27b67bfc37af90af
Make sure BodyText can take a large string.
ucdavis/Commencement,ucdavis/Commencement,ucdavis/Commencement
Commencement.Core/Domain/Template.cs
Commencement.Core/Domain/Template.cs
using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using FluentNHibernate.Mapping; using UCDArch.Core.DomainModel; namespace Commencement.Core.Domain { public class Template : DomainObject { public Template(string bodyText, TemplateType templateType, Ceremony cerem...
using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using FluentNHibernate.Mapping; using UCDArch.Core.DomainModel; namespace Commencement.Core.Domain { public class Template : DomainObject { public Template(string bodyText, TemplateType templateType, Ceremony cerem...
mit
C#
1f13703171c75ce39a81ad4801b7ff46ab7ae31b
Mark stream content handler as obsolete
KevM/tikaondotnet
src/TikaOnDotnet.TextExtractor/Stream/StreamContentHandler.cs
src/TikaOnDotnet.TextExtractor/Stream/StreamContentHandler.cs
using System; using System.IO; using org.xml.sax; namespace TikaOnDotNet.TextExtraction.Stream { /// <summary> /// Write Tika output to a string builder while squelching the dreadful empty lines. /// NOTE: This type is only public for testing. /// </summary> [Obsolete("This handler was intro...
using System.IO; using org.xml.sax; namespace TikaOnDotNet.TextExtraction.Stream { /// <summary> /// Write Tika output to a string builder while squelching the dreadful empty lines. /// NOTE: This type is only public for testing. /// </summary> public class StreamContentHandler : ContentHandl...
apache-2.0
C#
93e2c60ac174f25055dbcdf5e84d7062827d8df5
Update TemplateDragAndDropListBox.cs
wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D
Core2D.Wpf/Controls/Custom/Lists/TemplateDragAndDropListBox.cs
Core2D.Wpf/Controls/Custom/Lists/TemplateDragAndDropListBox.cs
// Copyright (c) Wiesław Šoltés. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Collections.Immutable; using System.Windows.Controls; namespace Core2D.Wpf.Controls.Custom.Lists { /// <summary> /// The <see cref="ListBox"/...
// Copyright (c) Wiesław Šoltés. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Collections.Immutable; using System.Windows.Controls; namespace Core2D.Wpf.Controls.Custom.Lists { /// <summary> /// The <see cref="ListBox"/...
mit
C#
93fe57d39970ee9c9dcc7dc0a757c2537aa10e55
Update tests to match new equality not including online ID checks
ppy/osu,smoogipoo/osu,peppy/osu,smoogipooo/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,smoogipoo/osu,ppy/osu
osu.Game.Tests/NonVisual/BeatmapSetInfoEqualityTest.cs
osu.Game.Tests/NonVisual/BeatmapSetInfoEqualityTest.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 NUnit.Framework; using osu.Game.Beatmaps; using osu.Game.Extensions; namespace osu.Game.Tests.NonVisual { [TestFixture] public class BeatmapSetInfoEquality...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using NUnit.Framework; using osu.Game.Beatmaps; namespace osu.Game.Tests.NonVisual { [TestFixture] public class BeatmapSetInfoEqualityTest { [Test] ...
mit
C#
ff2c4efc848b0ba7e425e533a91aa6e482b667ad
Update ESDATModel
HatfieldConsultants/Hatfield.EnviroData.DataAcquisition,gvassas/Hatfield.EnviroData.DataAcquisition,kgarsuta/Hatfield.EnviroData.DataAcquisition
Source/hatfield.envirodata.dataacquisition.esdat/ESDATModel.cs
Source/hatfield.envirodata.dataacquisition.esdat/ESDATModel.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hatfield.EnviroData.DataAcquisition.ESDAT { public class ESDATModel { //Header file properties public DateTime DateReported { get; set; } public int ProjectId {...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hatfield.EnviroData.DataAcquisition.ESDAT { public class ESDATModel { //Header file properties public DateTime DateReported { get; set; } public int ProjectId {...
mpl-2.0
C#
456a83f396932bdf65f31f151cbc5ef5141c0542
Throw exception for crazy input
EamonNerbonne/ExpressionToCode
ExpressionToCodeTest/ApprovalTest.cs
ExpressionToCodeTest/ApprovalTest.cs
using System.IO; using System.Runtime.CompilerServices; using Assent; namespace ExpressionToCodeTest { static class ApprovalTest { public static void Verify(string text, [CallerFilePath] string filepath = null, [CallerMemberName] string membername = null) { var filename = ...
using System.IO; using System.Runtime.CompilerServices; using Assent; namespace ExpressionToCodeTest { static class ApprovalTest { public static void Verify(string text, [CallerFilePath] string filepath = null, [CallerMemberName] string membername = null) { var filename = ...
apache-2.0
C#
df68b91cffd23d02f4991e961caf440fc5f5ddc6
fix case mismatch bug for map name
coderx400/sota-mapper
source/MapDataMgr.cs
source/MapDataMgr.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace SotAMapper { /// <summary> /// Loads all avail. maps from "data/maps" /// </summary> public class MapDataMgr ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace SotAMapper { /// <summary> /// Loads all avail. maps from "data/maps" /// </summary> public class MapDataMgr ...
apache-2.0
C#