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 | / / < |