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 |
|---|---|---|---|---|---|---|---|---|
92b2bb48bba14ad7b2ebb7633f65c8be8f8b4fdf | Discard button should return to the List view. | alastairs/cgowebsite,alastairs/cgowebsite | src/CGO.Web/Views/Concerts/_ConcertEditForm.cshtml | src/CGO.Web/Views/Concerts/_ConcertEditForm.cshtml | @model CGO.Web.ViewModels.ConcertViewModel
@{ Html.EnableClientValidation(); }
@using (Html.BeginForm())
{
@Html.ValidationSummary(false, "Oh dear, the violas made a boo-boo. Please go back and fix the following mistakes:")
<fieldset>
<legend>Concert details</legend>
<h2>Basic Detail... | @model CGO.Web.ViewModels.ConcertViewModel
@{ Html.EnableClientValidation(); }
@using (Html.BeginForm())
{
@Html.ValidationSummary(false, "Oh dear, the violas made a boo-boo. Please go back and fix the following mistakes:")
<fieldset>
<legend>Concert details</legend>
<h2>Basic Detail... | mit | C# |
99f679a016f3492c2af9191cb041385c0f4eab4d | convert TODO to issue #134 | collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists | src/FilterLists.Api/Controllers/ListsController.cs | src/FilterLists.Api/Controllers/ListsController.cs | using FilterLists.Services.Contracts;
using Microsoft.AspNetCore.Mvc;
namespace FilterLists.Api.Controllers
{
[Route("v1/[controller]")]
[Produces("application/json")]
public class ListsController : Controller
{
private readonly IFilterListService filterListService;
public ListsContro... | using FilterLists.Services.Contracts;
using Microsoft.AspNetCore.Mvc;
namespace FilterLists.Api.Controllers
{
//TODO: migrate controllers to separate projects by version, use dependency injection
//TODO: automate URL versioning
[Route("v1/[controller]")]
[Produces("application/json")]
public class... | mit | C# |
410aac59d56872b7bc7559b22fb8ef111baafab6 | Fix linker crash | jamesmontemagno/Hanselman.Forms,jamesmontemagno/Hanselman.Forms,jamesmontemagno/Hanselman.Forms | src/Hanselman/Views/Videos/VideoSeriesPage.xaml.cs | src/Hanselman/Views/Videos/VideoSeriesPage.xaml.cs | using System.Linq;
using Hanselman.Helpers;
using Hanselman.Models;
using Hanselman.ViewModels;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
// mattleibow cheered 33 on November 22nd 2019
namespace Hanselman.Views
{
[Preserve(AllMembers =true)]
public partial class VideoSeriesPage : ContentPage
{
... | using System.Linq;
using Hanselman.Models;
using Hanselman.ViewModels;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
// mattleibow cheered 33 on November 22nd 2019
namespace Hanselman.Views
{
public partial class VideoSeriesPage : ContentPage
{
VideoSeriesViewModel VM => (VideoSeriesViewModel)Bindi... | mit | C# |
c32eafd0aadc2f8dd82f4235c65038773c4e75e9 | remove unused constant | ginach/msgraph-sdk-dotnet | src/Microsoft.Graph/Requests/Helpers/EtagHelper.cs | src/Microsoft.Graph/Requests/Helpers/EtagHelper.cs | // ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
... | // ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
... | mit | C# |
8c7beeb9ec4f9e89e17fb8cb6db380eb9f9e3b97 | fix version | Fody/Obsolete | CommonAssemblyInfo.cs | CommonAssemblyInfo.cs | using System.Reflection;
[assembly: AssemblyTitle("Obsolete")]
[assembly: AssemblyProduct("Obsolete")]
[assembly: AssemblyVersion("4.3.1")]
[assembly: AssemblyFileVersion("4.3.1")] | using System.Reflection;
[assembly: AssemblyTitle("Obsolete")]
[assembly: AssemblyProduct("Obsolete")]
[assembly: AssemblyVersion("4.3.0")]
[assembly: AssemblyFileVersion("4.3.0")] | mit | C# |
e11ee872090c06b447b889855027da2935f5e84a | Change chart fields | helgitrump/CPUMonitor | CPUMonitor/MainForm.Designer.cs | CPUMonitor/MainForm.Designer.cs | /*
* Created by SharpDevelop.
* User: user
* Date: 12.07.2017
* Time: 16:30
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
namespace CPUMonitor
{
partial class MainForm
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary... | /*
* Created by SharpDevelop.
* User: user
* Date: 12.07.2017
* Time: 16:30
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
namespace CPUMonitor
{
partial class MainForm
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary... | mit | C# |
6d6b9d489c0b46ae65dba0d7dd04be8a2d891c9b | Comment out redis queue tests for now. | adamzolotarev/Exceptionless,exceptionless/Exceptionless,adamzolotarev/Exceptionless,exceptionless/Exceptionless,exceptionless/Exceptionless,adamzolotarev/Exceptionless,exceptionless/Exceptionless | Source/Api.Tests/Queue/RedisQueueTests.cs | Source/Api.Tests/Queue/RedisQueueTests.cs | //using System;
//using Exceptionless.Core;
//using Exceptionless.Core.Queues;
//using StackExchange.Redis;
//namespace Exceptionless.Api.Tests.Queue {
// public class RedisQueueTests : InMemoryQueueTests {
// private ConnectionMultiplexer _muxer;
// protected override IQueue<SimpleWorkItem> GetQueu... | using System;
using Exceptionless.Core;
using Exceptionless.Core.Queues;
using StackExchange.Redis;
namespace Exceptionless.Api.Tests.Queue {
public class RedisQueueTests : InMemoryQueueTests {
private ConnectionMultiplexer _muxer;
protected override IQueue<SimpleWorkItem> GetQueue(int retries, T... | apache-2.0 | C# |
adf0d67493ae76def97a25e2d7ac90968ff9ffb1 | Remove TvSeasonEpisode ShowId | LordMike/TMDbLib | TMDbLib/Objects/Search/TvSeasonEpisode.cs | TMDbLib/Objects/Search/TvSeasonEpisode.cs | using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using TMDbLib.Objects.General;
using TMDbLib.Objects.TvShows;
namespace TMDbLib.Objects.Search
{
public class TvSeasonEpisode
{
[JsonProperty("air_date")]
public DateTime? AirDate { get; set; }
[JsonProperty("crew")... | using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using TMDbLib.Objects.General;
using TMDbLib.Objects.TvShows;
namespace TMDbLib.Objects.Search
{
public class TvSeasonEpisode
{
[JsonProperty("air_date")]
public DateTime? AirDate { get; set; }
[JsonProperty("crew")... | mit | C# |
8a74d07b9cd174b08f5541f63d39d6f07fe2b146 | Introduce EiB to FileSize | GGG-KILLER/GUtils.NET | GUtils.IO/FileSize.cs | GUtils.IO/FileSize.cs | using System;
namespace GUtils.IO
{
public static class FileSize
{
public const Int64 KiB = 1 << 10;
public const Int64 MiB = 1 << 20;
public const Int64 GiB = 1 << 30;
public const Int64 TiB = 1 << 40;
public const Int64 PiB = 1 << 50;
public const Int64 EiB = ... | using System;
namespace GUtils.IO
{
public static class FileSize
{
public const Int64 KiB = 1024;
public const Int64 MiB = 1024 * KiB;
public const Int64 GiB = 1024 * MiB;
public const Int64 TiB = 1024 * GiB;
public const Int64 PiB = 1024 * TiB;
private static ... | mit | C# |
d33eab2a4eb8a5be22e2dd1c757461459a874b39 | Add DarkGray code | Test20130521/ConsoleApplication61 | ConsoleApplication61/Program.cs | ConsoleApplication61/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication61
{
class Program
{
static void Main(string[] args)
{
}
void M1()
{
var currentGroupId = GetGroup("A");
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication61
{
class Program
{
static void Main(string[] args)
{
}
}
}
| mit | C# |
e17985be0008a00cb9db74ac18b20ea02f62e9a6 | use extension method to grab lessons in wand shop | StefanoFiumara/Harry-Potter-Unity | Assets/Scripts/HarryPotterUnity/Cards/Charms/Locations/WandShop.cs | Assets/Scripts/HarryPotterUnity/Cards/Charms/Locations/WandShop.cs | using System.Collections.Generic;
using System.Linq;
using HarryPotterUnity.Enums;
using HarryPotterUnity.Utils;
namespace HarryPotterUnity.Cards.Charms.Locations
{
public class WandShop : BaseLocation
{
private IEnumerable<BaseLesson> AllLessons
{
get
{
... | using System.Collections.Generic;
using System.Linq;
using HarryPotterUnity.Enums;
namespace HarryPotterUnity.Cards.Charms.Locations
{
public class WandShop : BaseLocation
{
private IEnumerable<BaseLesson> AllLessons
{
get
{
return Player.InPlay.Lessons... | mit | C# |
d190d4d0ff414a8ab39bb82f5be57c8c0273cb90 | Fix commit. | yasotidev/BoomerDoukala,yasotidev/BoomerDoukala | DoukalaTemplate/Src/Client/www/Web/Doukala/Models/Compagny.cs | DoukalaTemplate/Src/Client/www/Web/Doukala/Models/Compagny.cs | namespace Doukala.Models
{
public class Compagny
{
public byte[] LogoAvatar { get; set; }
public string Logo { get; set; }
public string Nom { get; set; }
public string Description { get; set; }
public virtual Address Address { get; set; }
public string Activity... | namespace Doukala.Models
{
public class Compagny : DomainObject
{
public byte[] LogoAvatar { get; set; }
public string Logo { get; set; }
public string Nom { get; set; }
public string Description { get; set; }
public virtual Address Address { get; set; }
public s... | agpl-3.0 | C# |
ea600b6b11b2eb3f66b2b14a68aa63141cb7691f | clean formatting | timba/NServiceKit,ZocDoc/ServiceStack,nataren/NServiceKit,timba/NServiceKit,NServiceKit/NServiceKit,timba/NServiceKit,ZocDoc/ServiceStack,NServiceKit/NServiceKit,MindTouch/NServiceKit,timba/NServiceKit,MindTouch/NServiceKit,nataren/NServiceKit,MindTouch/NServiceKit,ZocDoc/ServiceStack,NServiceKit/NServiceKit,ZocDoc/Ser... | tests/ServiceStack.Razor.Tests/HelloRequest.cs | tests/ServiceStack.Razor.Tests/HelloRequest.cs | using ServiceStack.Common.Web;
using ServiceStack.ServiceHost;
using ServiceStack.ServiceInterface;
namespace ServiceStack.Razor.Tests
{
public class HelloRequest
{
public string Name { get; set; }
}
public class HelloResponse
{
public string Result { get; set; }
}
//https... | using ServiceStack.Common.Web;
using ServiceStack.ServiceHost;
using ServiceStack.ServiceInterface;
namespace ServiceStack.Razor.Tests
{
public class HelloRequest
{
public string Name { get; set; }
}
public class HelloResponse
{
public string Result { get; set; }
}
//htt... | bsd-3-clause | C# |
8b455d840fd414a6b64bfc32b752420b161d57be | Add IArchiveReader to Autofac configuration. | arkivverket/arkade5,arkivverket/arkade5,arkivverket/arkade5 | src/Arkivverket.Arkade/Util/ArkadeAutofacModule.cs | src/Arkivverket.Arkade/Util/ArkadeAutofacModule.cs | using Arkivverket.Arkade.Core;
using Arkivverket.Arkade.Identify;
using Autofac;
namespace Arkivverket.Arkade.Util
{
public class ArkadeAutofacModule : Module
{
protected override void Load(ContainerBuilder builder)
{
builder.RegisterType<ArchiveExtractor>().As<IArchiveExtractor>();... | using Arkivverket.Arkade.Core;
using Arkivverket.Arkade.Identify;
using Autofac;
namespace Arkivverket.Arkade.Util
{
public class ArkadeAutofacModule : Module
{
protected override void Load(ContainerBuilder builder)
{
builder.RegisterType<ArchiveExtractor>().As<IArchiveExtractor>();... | agpl-3.0 | C# |
404ab23b804ed26aeb7c6623fdf739266ddac620 | duplicate binding prevention | army-of-two/when-its-done,army-of-two/when-its-done,army-of-two/when-its-done | WhenItsDone/Clients/WhenItsDone.WebFormsClient/App_Start/NinjectBindingsModules/MVPBindingsModule.cs | WhenItsDone/Clients/WhenItsDone.WebFormsClient/App_Start/NinjectBindingsModules/MVPBindingsModule.cs | using System;
using System.Linq;
using Ninject;
using Ninject.Extensions.Factory;
using Ninject.Modules;
using WebFormsMvp;
using WebFormsMvp.Binder;
using WhenItsDone.WebFormsClient.App_Start.Factories;
namespace WhenItsDone.WebFormsClient.App_Start.NinjectBindingsModules
{
public class MVPBindingsModule : Ni... | using System;
using System.Linq;
using Ninject;
using Ninject.Extensions.Factory;
using Ninject.Modules;
using WebFormsMvp;
using WebFormsMvp.Binder;
using WhenItsDone.WebFormsClient.App_Start.Factories;
namespace WhenItsDone.WebFormsClient.App_Start.NinjectBindingsModules
{
public class MVPBindingsModule : Ni... | mit | C# |
7c70439f4c74e084f3beb51739e8032f83090835 | Put on Pair | theraot/Theraot | Core/Theraot/Threading/Needles/DefaultNeedle.cs | Core/Theraot/Threading/Needles/DefaultNeedle.cs | using System;
using System.Collections.Generic;
namespace Theraot.Threading.Needles
{
[global::System.Diagnostics.DebuggerNonUserCode]
[global::System.ComponentModel.ImmutableObject(true)]
public sealed class DefaultNeedle<T> : IReadOnlyNeedle<T>
{
private static readonly DefaultNeedle<T> _insta... | namespace Theraot.Threading.Needles
{
[global::System.Diagnostics.DebuggerNonUserCode]
[global::System.ComponentModel.ImmutableObject(true)]
public sealed class DefaultNeedle<T> : INeedle<T>
{
private static readonly DefaultNeedle<T> _instance = new DefaultNeedle<T>();
private DefaultNe... | mit | C# |
3085815422cbee41bef3487e50a855cbb79532dc | Fix analytics fields names | sitereactor/kudu,barnyp/kudu,bbauya/kudu,MavenRain/kudu,mauricionr/kudu,MavenRain/kudu,badescuga/kudu,shrimpy/kudu,juvchan/kudu,sitereactor/kudu,puneet-gupta/kudu,kenegozi/kudu,shrimpy/kudu,MavenRain/kudu,juvchan/kudu,mauricionr/kudu,kenegozi/kudu,YOTOV-LIMITED/kudu,juoni/kudu,puneet-gupta/kudu,uQr/kudu,kali786516/kudu... | Kudu.Core/Tracing/Analytics.cs | Kudu.Core/Tracing/Analytics.cs | using System;
using System.Text;
using Kudu.Contracts.Settings;
using Kudu.Contracts.Tracing;
namespace Kudu.Core.Tracing
{
public class Analytics : IAnalytics
{
private readonly SiteExtensionLogManager _siteExtensionLogManager;
private readonly IDeploymentSettingsManager _settings;
p... | using System;
using System.Text;
using Kudu.Contracts.Settings;
using Kudu.Contracts.Tracing;
namespace Kudu.Core.Tracing
{
public class Analytics : IAnalytics
{
private readonly SiteExtensionLogManager _siteExtensionLogManager;
private readonly IDeploymentSettingsManager _settings;
p... | apache-2.0 | C# |
3249b1269540ea276c3a0c28af207a3cf9830365 | Remove shared state | Haacked/Scientist.net | src/Scientist/Internals/InMemoryResultPublisher.cs | src/Scientist/Internals/InMemoryResultPublisher.cs | using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace GitHub.Internals
{
public class InMemoryResultPublisher : IResultPublisher
{
readonly Task _completed = Task.FromResult(0);
readonly ConcurrentDiction... | using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace GitHub.Internals
{
public class InMemoryResultPublisher : IResultPublisher
{
readonly static Task _completed = Task.FromResult(0);
readonly static Con... | mit | C# |
150b466d8aea4bb864f5d26de45f3584a9ee5ff4 | Tweak ObservableTraceListener. | JohanLarsson/Gu.Wpf.FlipView | Gu.Wpf.FlipView.Demo/ObservableTraceListener.cs | Gu.Wpf.FlipView.Demo/ObservableTraceListener.cs | namespace Gu.Wpf.FlipView.Demo
{
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Text;
public class ObservableTraceListener : System.Diagnostics.TraceListener
{
public static readonly ObservableTraceListener Instance = new ObservableTraceListener();
pri... | namespace Gu.Wpf.FlipView.Demo
{
using System.Collections.ObjectModel;
using System.Diagnostics;
public class ObservableTraceListener : System.Diagnostics.TraceListener
{
public static readonly ObservableTraceListener Instance = new ObservableTraceListener();
private ObservableTraceLis... | mit | C# |
0bfbd5788d9afb78d92c78318968b2db3233d6af | refactor cli to get aguments | stefbast/PackageUseScrutiniser | PackageUseScrutiniser.Cli/Program.cs | PackageUseScrutiniser.Cli/Program.cs | using System;
using System.Collections.Generic;
using System.IO;
using PackageUseScrutiniser.Core;
namespace PackageUseScrutiniser.Cli
{
internal static class Program
{
static void Main(string[] args)
{
if (args.Length == 0 || args[0] == "--help" || args.Length > 2)
{
... | using System;
using System.Collections.Generic;
using System.IO;
using PackageUseScrutiniser.Core;
namespace PackageUseScrutiniser.Cli
{
class Program
{
static void Main(string[] args)
{
IEnumerable<string> packages = new List<string>();
var packageFinder =... | mit | C# |
72287a9f0a3c969431d4452ba20bc6f7e7a56c04 | Update version number | kungfux/business-accounting | BusinessAccounting/BusinessAccounting/Properties/AssemblyInfo.cs | BusinessAccounting/BusinessAccounting/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 ... | apache-2.0 | C# |
4d5a80dabf65ce2dea636018fffbeefec5cb35c3 | Fix not pasting stats with no boss name available. | Gl0/CasualMeter,lunyx/CasualMeter | CasualMeter.Common/Formatters/DamageTrackerFormatter.cs | CasualMeter.Common/Formatters/DamageTrackerFormatter.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CasualMeter.Common.Helpers;
using Tera.DamageMeter;
namespace CasualMeter.Common.Formatters
{
public class DamageTrackerFormatter : Formatter
{
public DamageTrackerFormatter(Damage... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CasualMeter.Common.Helpers;
using Tera.DamageMeter;
namespace CasualMeter.Common.Formatters
{
public class DamageTrackerFormatter : Formatter
{
public DamageTrackerFormatter(Damage... | mit | C# |
4a89ded6914907573c87b25cb1838eed0a6c7d85 | Support to specify UTC and offset separately to setCurrentTimeAsync | naotaco/kz-remote-api,jocieldo/kz-remote-api,kazyx/kz-remote-api | Project/Api/SystemApiClient.cs | Project/Api/SystemApiClient.cs | using System;
using System.Threading.Tasks;
namespace Kazyx.RemoteApi.System
{
public class SystemApiClient : ApiClient
{
/// <summary>
///
/// </summary>
/// <param name="endpoint">Endpoint URL of system service.</param>
public SystemApiClient(Uri endpoint)
... | using System;
using System.Threading.Tasks;
namespace Kazyx.RemoteApi.System
{
public class SystemApiClient : ApiClient
{
/// <summary>
///
/// </summary>
/// <param name="endpoint">Endpoint URL of system service.</param>
public SystemApiClient(Uri endpoint)
... | mit | C# |
01ce10023a27ca1e60a5669590a81b3294669f5d | Disable Manage Packages menu when project selected. | mrward/monodevelop-nuget-extensions,mrward/monodevelop-nuget-extensions | src/MonoDevelop.PackageManagement.Extensions/MonoDevelop.PackageManagement/ManagePackagesHandler2.cs | src/MonoDevelop.PackageManagement.Extensions/MonoDevelop.PackageManagement/ManagePackagesHandler2.cs | //
// ManagePackagesHandler.cs
//
// Author:
// Matt Ward <ward.matt@gmail.com>
//
// Copyright (C) 2013 Matthew Ward
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without rest... | //
// ManagePackagesHandler.cs
//
// Author:
// Matt Ward <ward.matt@gmail.com>
//
// Copyright (C) 2013 Matthew Ward
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without rest... | mit | C# |
281c9c7ae9ccc0abaa3e02ecfd0c5e73f27e45d1 | disable file watcher | danisein/Wox,danisein/Wox,yozora-hitagi/Saber,Launchify/Launchify,Megasware128/Wox,medoni/Wox,yozora-hitagi/Saber,JohnTheGr8/Wox,Launchify/Launchify,zlphoenix/Wox,medoni/Wox,zlphoenix/Wox,Megasware128/Wox,JohnTheGr8/Wox | Plugins/Wox.Plugin.Program/FileChangeWatcher.cs | Plugins/Wox.Plugin.Program/FileChangeWatcher.cs | using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Wox.Infrastructure.Logger;
using Wox.Plugin.Program.Programs;
namespace Wox.Plugin.Program
{
//internal static class FileChangeWatcher
//{
// private static readonly List<string> WatchedPath = new List<string>();
... | using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Wox.Infrastructure.Logger;
using Wox.Plugin.Program.ProgramSources;
namespace Wox.Plugin.Program
{
internal static class FileChangeWatcher
{
private static readonly List<string> WatchedPath = new List<string>();
... | mit | C# |
40d933471f84a5b34603e4551b13af2deaca7733 | Update Index.cshtml | ravi-msi/practicegit,ravi-msi/practicegit,ravi-msi/practicegit | PracticeGit/PracticeGit/Views/Home/Index.cshtml | PracticeGit/PracticeGit/Views/Home/Index.cshtml | <div class="jumbotron">
<h1>ASP.NET</h1>
<p class="lead">ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS, and JavaScript.</p>
<p><a href="http://asp.net" class="btn btn-primary btn-lg">Learn more »</a></p>
</div>
<div class="row">
<div class="col-... | <div class="jumbotron">
<h1>ASP.NET</h1>
<p class="lead">ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS, and JavaScript.</p>
<p><a href="http://asp.net" class="btn btn-primary btn-lg">Learn more »</a></p>
</div>
<div class="row">
<div class="col-... | mit | C# |
02768e1b8516d7e85488ad93268f20a109f2eacc | update version | prodot/ReCommended-Extension | Sources/ReCommendedExtension/Properties/AssemblyInfo.cs | Sources/ReCommendedExtension/Properties/AssemblyInfo.cs | using System.Reflection;
using ReCommendedExtension;
// 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(ZoneMarker.ExtensionName)]
[assembly: AssemblyDescript... | using System.Reflection;
using ReCommendedExtension;
// 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(ZoneMarker.ExtensionName)]
[assembly: AssemblyDescript... | apache-2.0 | C# |
c079409597d05ce9b4b41e8b40f5c365da1a369f | remove unid check | JackCeparou/JackCeparouCompass | Items/RamaladniDropFixPlugin.cs | Items/RamaladniDropFixPlugin.cs | namespace Turbo.Plugins.Jack.Items
{
using System.Linq;
using Turbo.Plugins.Default;
using Turbo.Plugins.Jack.TextToSpeech;
public class RamaladniDropFixPlugin : BasePlugin, IAfterCollectHandler
{
public SoundAlert<IItem> SoundAlert { get; private set; }
public RamaladniDropFixPlu... | namespace Turbo.Plugins.Jack.Items
{
using System.Linq;
using Turbo.Plugins.Default;
using Turbo.Plugins.Jack.TextToSpeech;
public class RamaladniDropFixPlugin : BasePlugin, IAfterCollectHandler
{
public SoundAlert<IItem> SoundAlert { get; private set; }
public RamaladniDropFixPlu... | mit | C# |
9c38d78eacc40ace221eb0410c7c7e40b17ce75e | rename tuple test for starmap | jmrnilsson/itertools | Itertools/Tests/StarmapTests.cs | Itertools/Tests/StarmapTests.cs | using System;
using System.Linq;
using Xunit;
namespace Itertools.Tests
{
internal delegate dynamic Area(string name, int width, decimal height);
public class StarmapTests
{
[Fact]
public void StarmapFor2Tuple()
{
var iterable0 = new[] {Tuple.Create(1, "first"), Tuple.... | using System;
using System.Linq;
using Xunit;
namespace Itertools.Tests
{
internal delegate dynamic Area(string name, int width, decimal height);
public class StarmapTests
{
[Fact]
public void Starmap()
{
var iterable0 = new[] {Tuple.Create(1, "first"), Tuple.Create(3,... | mit | C# |
ee45e781521fe1419804a655ffbe619209e38de2 | revert test config | NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework | Spa2/NakedObjects.Spa.Selenium.Test/tests/TestConfig.cs | Spa2/NakedObjects.Spa.Selenium.Test/tests/TestConfig.cs |
namespace NakedObjects.Selenium
{
public static class TestConfig
{
//public const string BaseUrl = "http://localhost:49998/";
public const string BaseUrl = "http://nakedobjectstest2.azurewebsites.net/";
}
}
|
namespace NakedObjects.Selenium
{
public static class TestConfig
{
public const string BaseUrl = "http://localhost:49998/";
//public const string BaseUrl = "http://nakedobjectstest2.azurewebsites.net/";
}
}
| apache-2.0 | C# |
0f83308f7b1c18ebca3c89333954e26e34be2b56 | Update osu!taiko TestSceneInputDrum with InputDrum changes for touch controls | ppy/osu,peppy/osu,peppy/osu,ppy/osu,ppy/osu,peppy/osu | osu.Game.Rulesets.Taiko.Tests/Skinning/TestSceneInputDrum.cs | osu.Game.Rulesets.Taiko.Tests/Skinning/TestSceneInputDrum.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.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Rulesets.Taiko.UI;
using osuT... | // 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.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Rulesets.Taiko.UI;
using osuT... | mit | C# |
781064ba9693c72adda2d84f8a81deba782f9888 | create list marker based on its level | peppy/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,ppy/osu,ppy/osu,smoogipooo/osu,peppy/osu-new,UselessToucan/osu,peppy/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,smoogipoo/osu | osu.Game/Graphics/Containers/Markdown/OsuMarkdownListItem.cs | osu.Game/Graphics/Containers/Markdown/OsuMarkdownListItem.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Containers.Markdown;
using osuTK;
nam... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Containers.Markdown;
using osuTK;
nam... | mit | C# |
59e5b937c6d3fa2a9d644081793791f46da5cfdb | Update RuleUpdater.cs | win120a/ACClassRoomUtil,win120a/ACClassRoomUtil | ProcessBlockUtil/RuleUpdater.cs | ProcessBlockUtil/RuleUpdater.cs | /*
Copyright (C) 2011-2014 AC Inc. (Andy Cheung)
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 ... | /*
Copyright (C) 2011-2014 AC Inc. (Andy Cheung)
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 ... | apache-2.0 | C# |
e42a85ea334d07ae9c04c03c61e4e77066f353cf | Add more checks to TwitterRespository's AnyTwitterAuthenticationSettingsAreNotSet method which not only check against the default values provided for each authentication credential ("[twitterconsumerkey]", etc...), but also checks for string.Empty for OAuthToken and OAuthSecret | MisterJames/allReady,VishalMadhvani/allReady,BillWagner/allReady,enderdickerson/allReady,binaryjanitor/allReady,chinwobble/allReady,c0g1t8/allReady,chinwobble/allReady,colhountech/allReady,bcbeatty/allReady,bcbeatty/allReady,dpaquette/allReady,mipre100/allReady,forestcheng/allReady,MisterJames/allReady,jonatwabash/allR... | AllReadyApp/Web-App/AllReady/Providers/ExternalUserInformationProviders/Providers/TwitterRepository.cs | AllReadyApp/Web-App/AllReady/Providers/ExternalUserInformationProviders/Providers/TwitterRepository.cs | using System.Linq;
using System.Threading.Tasks;
using LinqToTwitter;
using Microsoft.Extensions.Options;
namespace AllReady.Providers.ExternalUserInformationProviders.Providers
{
public class TwitterRepository : ITwitterRepository
{
private readonly IOptions<TwitterAuthenticationSettings> twitterAuth... | using System.Linq;
using System.Threading.Tasks;
using LinqToTwitter;
using Microsoft.Extensions.Options;
namespace AllReady.Providers.ExternalUserInformationProviders.Providers
{
public class TwitterRepository : ITwitterRepository
{
private readonly IOptions<TwitterAuthenticationSettings> twitterAuth... | mit | C# |
709bde80b97e32ba655ba5148c16f0d90a4aec77 | Fix unit test | mono/mono-addins,mono/mono-addins | Test/UnitTests/ExtensionModel/GlobalInfoConditionAttribute.cs | Test/UnitTests/ExtensionModel/GlobalInfoConditionAttribute.cs | //
// GlobalInfoConditionAttribute.cs
//
// Copyright (c) Microsoft Corp.
//
// 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
/... | //
// GlobalInfoConditionAttribute.cs
//
// Copyright (c) Microsoft Corp.
//
// 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# |
06e2e109732d76a75620b1ad941a196cce97f5f0 | Update OrganizationXrmUtility.cs | saeid64/TFSHelper | Tosan.TeamFoundation.Plugin/Utility/OrganizationXrmUtility.cs | Tosan.TeamFoundation.Plugin/Utility/OrganizationXrmUtility.cs | using System;
using System.Configuration;
using System.Runtime.Caching;
using Microsoft.Xrm.Client;
using Microsoft.Xrm.Client.Services;
using Microsoft.Xrm.Sdk;
namespace Tosan.TeamFoundation.Plugin.Core.Utility
{
class OrganizationXrmUtility
{
internal static IOrganizationService GetOrganizationServ... | using System;
using System.Configuration;
using System.Runtime.Caching;
using Microsoft.Xrm.Client;
using Microsoft.Xrm.Client.Services;
using Microsoft.Xrm.Sdk;
namespace Tosan.TeamFoundation.Plugin.Core.Utility
{
class OrganizationXrmUtility
{
internal static IOrganizationService GetOrganizationServ... | apache-2.0 | C# |
1d5e4eda7ef073781ae98c3a15ee0113b71e5e42 | Trim down data returned from API | kgiszewski/Archetype,tomfulton/Archetype,kjac/Archetype,kgiszewski/Archetype,kipusoep/Archetype,Nicholas-Westby/Archetype,Nicholas-Westby/Archetype,tomfulton/Archetype,kjac/Archetype,kgiszewski/Archetype,imulus/Archetype,tomfulton/Archetype,kjac/Archetype,kipusoep/Archetype,imulus/Archetype,Nicholas-Westby/Archetype,ki... | app/Umbraco/Umbraco.Archetype/Api/ArchetypeDataTypeController.cs | app/Umbraco/Umbraco.Archetype/Api/ArchetypeDataTypeController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Web.Http;
using AutoMapper;
using Umbraco.Core.Models;
using Umbraco.Web.Models.ContentEditing;
using Umbraco.Web.Models.Mapping;
using Umbraco.Web.Mvc;
using Umbraco.Web.Editors;
namespace Archetype.Umbraco.Api
{
[P... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Web.Http;
using AutoMapper;
using Umbraco.Core.Models;
using Umbraco.Web.Models.ContentEditing;
using Umbraco.Web.Models.Mapping;
using Umbraco.Web.Mvc;
using Umbraco.Web.Editors;
namespace Archetype.Umbraco.Api
{
[P... | mit | C# |
3a4b42ba9cd96b3ceaa585297eff41fe91b44871 | Rollback mistakenly committed commented lines | couchbase/couchbase-lite-net,couchbase/couchbase-lite-net,couchbase/couchbase-lite-net | src/Couchbase.Lite.Tests.iOS/AppDelegate.cs | src/Couchbase.Lite.Tests.iOS/AppDelegate.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using Foundation;
using UIKit;
using Xunit.Runner;
using Xunit.Runners.UI;
using Xunit.Sdk;
namespace Couchbase.Lite.Tests.iOS
{
// The UIApplicationDelegate for the application. This class is responsibl... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using Foundation;
using UIKit;
using Xunit.Runner;
using Xunit.Runners.UI;
using Xunit.Sdk;
namespace Couchbase.Lite.Tests.iOS
{
// The UIApplicationDelegate for the application. This class is responsibl... | apache-2.0 | C# |
654368ad5866fa0f7b57d933ff80afc9c6764ce9 | Use Application Insights | duracellko/planningpoker4azure,duracellko/planningpoker4azure,duracellko/planningpoker4azure | src/Duracellko.PlanningPoker.Web/Program.cs | src/Duracellko.PlanningPoker.Web/Program.cs | using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
namespace Duracellko.PlanningPoker.Web
{
public static class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}
public static IWebHostBuilder CreateWebHostBu... | using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
namespace Duracellko.PlanningPoker.Web
{
public static class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}
public static IWebHostBuilder CreateWebHostBu... | mit | C# |
7e126fc997d1b7a9282124550445f60857488492 | Add accelerometer controls | theDrake/unity-experiments | SpaceShooter/Assets/Scripts/PlayerController.cs | SpaceShooter/Assets/Scripts/PlayerController.cs | using UnityEngine;
using System.Collections;
[System.Serializable]
public class Boundary
{
public float xMin, xMax, zMin, zMax;
}
public class PlayerController : MonoBehaviour
{
public float speed, tilt, fireRate;
public Boundary boundary;
public GameObject shot;
public Transform shotSpawn;
private floa... | using UnityEngine;
using System.Collections;
[System.Serializable]
public class Boundary
{
public float xMin, xMax, zMin, zMax;
}
public class PlayerController : MonoBehaviour
{
public float speed, tilt, fireRate;
public Boundary boundary;
public GameObject shot;
public Transform shotSpawn;
private floa... | mit | C# |
bd85eab3e37627572be2c851ad97a23af53db566 | Bump version to 0.10.1 | whampson/bft-spec,whampson/cascara | Src/WHampson.Cascara/Properties/AssemblyInfo.cs | Src/WHampson.Cascara/Properties/AssemblyInfo.cs | #region License
/* Copyright (c) 2017 Wes Hampson
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, ... | #region License
/* Copyright (c) 2017 Wes Hampson
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, ... | mit | C# |
a791a7d67cde677c7c9fd8a26692f7ff9ee0b1ec | Update ValuesOut.cs | EricZimmerman/RegistryPlugins | RegistryPlugin.TimeZoneInformation/ValuesOut.cs | RegistryPlugin.TimeZoneInformation/ValuesOut.cs | using RegistryPluginBase.Interfaces;
namespace RegistryPlugin.TimeZoneInformation
{
public class ValuesOut:IValueOut
{
public ValuesOut(string valueName, string valueData, string valueDataRaw)
{
ValueName = valueName;
ValueData = valueData;
Value... | using RegistryPluginBase.Interfaces;
namespace RegistryPlugin.TimeZoneInformation
{
public class ValuesOut:IValueOut
{
public ValuesOut(string valueName, string valueData, string valueDataRaw)
{
ValueName = valueName;
ValueData = valueData;
Value... | mit | C# |
d94315ee3f320c4edcc562c642dabcd63ecceebd | Fix potential crash from unsafe drawable mutation in scoreboard update code | NeoAdonis/osu,NeoAdonis/osu,peppy/osu,peppy/osu,ppy/osu,ppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu | osu.Game/Screens/OnlinePlay/Match/Components/MatchLeaderboard.cs | osu.Game/Screens/OnlinePlay/Match/Components/MatchLeaderboard.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.Threading;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests.Responses;
using osu.... | // 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.Threading;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests.Responses;
using osu.... | mit | C# |
254b273c70ffc5226220be02028bb86e26d09a35 | Revert "revert logging config causing bug" | collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists | api/FilterLists.Api/Startup.cs | api/FilterLists.Api/Startup.cs | using FilterLists.Api.DependencyInjection.Extensions;
using FilterLists.Data.DependencyInjection.Extensions;
using FilterLists.Services.DependencyInjection.Extensions;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Dependency... | using FilterLists.Api.DependencyInjection.Extensions;
using FilterLists.Data.DependencyInjection.Extensions;
using FilterLists.Services.DependencyInjection.Extensions;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Dependency... | mit | C# |
e1f0bc5598f8d7bccd8deb30990b23e61231e0f8 | Fix display issue on edit page | jugglingnutcase/Wollump | Wollump/web/views/edit.cshtml | Wollump/web/views/edit.cshtml | @{
Layout = "_Layout.cshtml";
}
@section title {
Edit @Model.Name
}
@section styles {
<style>
.page-content {
width: 100%;
height: 400px;
}
</style>
}
@section content {
<div class="pure-g-r">
<div class="pure-u-1">
<form class="pure-fo... | @{
Layout = "_Layout.cshtml";
}
@section title {
Edit @Model.Name
}
@section styles {
<style>
.page-content {
width: 100%;
height: 400px;
}
</style>
}
@section content {
<div class="pure-g-r">
<div class="pure-u-1-1">
<form class="pure-... | mit | C# |
d1113b26d1c7544b57e85e1dee08c358b90d42ee | Improve exception messages | rvernagus/NBenchmarker | src/NBenchmarker/NBenchmarker/BenchmarkResult.cs | src/NBenchmarker/NBenchmarker/BenchmarkResult.cs | using System;
namespace NBenchmarker
{
public class BenchmarkResult
{
private TimeSpan _elapsedTime;
private int _numberOfIterations;
public BenchmarkResult(string trialName)
{
this.TrialName = trialName;
this.ElapsedTime = TimeSpan.Zero;
th... | using System;
namespace NBenchmarker
{
public class BenchmarkResult
{
private TimeSpan _elapsedTime;
private int _numberOfIterations;
public BenchmarkResult(string trialName)
{
this.TrialName = trialName;
this.ElapsedTime = TimeSpan.Zero;
th... | mit | C# |
87858d128da48a38ca469fb1e634ad027a869563 | fix typo | seekasia-oss/jobstreet-ad-posting-api-client | src/SEEK.AdPostingApi.Client/RequestException.cs | src/SEEK.AdPostingApi.Client/RequestException.cs | using System;
using System.Runtime.Serialization;
namespace SEEK.AdPostingApi.Client
{
[Serializable]
public class RequestException : Exception
{
public RequestException(string requestId, int statusCode, string message) : base(message)
{
this.RequestId = requestId;
... | using System;
using System.Runtime.Serialization;
namespace SEEK.AdPostingApi.Client
{
[Serializable]
public class RequestException : Exception
{
public RequestException(string requestId, int statusCode, string message) : base(message)
{
this.RequestId = requestId;
... | mit | C# |
0b6b557a5a2ef96672b8924bc666913cab20e788 | Change ProcessorInfo to CPU | zarlo/Cosmos,zarlo/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos | source/Cosmos.Core_Plugs/System/Diagnostics/StopwatchImpl.cs | source/Cosmos.Core_Plugs/System/Diagnostics/StopwatchImpl.cs | using IL2CPU.API;
using IL2CPU.API.Attribs;
using System;
using System.Diagnostics;
using Cosmos.Core;
namespace Cosmos.Core_Plugs.System.Diagnostics
{
[Plug(Target = typeof(global::System.Diagnostics.Stopwatch))]
public class StopwatchImpl
{
public static long GetTimestamp()
{
... | using IL2CPU.API;
using IL2CPU.API.Attribs;
using System;
using System.Diagnostics;
using Cosmos.Core;
namespace Cosmos.Core_Plugs.System.Diagnostics
{
[Plug(Target = typeof(global::System.Diagnostics.Stopwatch))]
public class StopwatchImpl
{
public static long GetTimestamp()
{
... | bsd-3-clause | C# |
bd607cc54c8cc8397d39ec9f41f202fc4b1dcfd4 | Update WunderlistService.cs | marska/wundercal | src/Wundercal/Services/WunderlistService.cs | src/Wundercal/Services/WunderlistService.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using Newtonsoft.Json;
using Wundercal.Services.Dto;
namespace Wundercal.Services
{
public class WunderlistService : IWunderlistService
{
private readonly HttpClient _htt... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using Newtonsoft.Json;
using Wundercal.Services.Dto;
namespace Wundercal.Services
{
public class WunderlistService : IWunderlistService
{
private readonly HttpClient _htt... | apache-2.0 | C# |
88e561c3aeda6199fea5f50d502752c6a424ff05 | fix autolink attribute | lunet-io/markdig | src/Markdig/Renderers/Html/Inlines/AutolinkInlineRenderer.cs | src/Markdig/Renderers/Html/Inlines/AutolinkInlineRenderer.cs | // Copyright (c) Alexandre Mutel. All rights reserved.
// This file is licensed under the BSD-Clause 2 license.
// See the license.txt file in the project root for more information.
using Markdig.Syntax.Inlines;
namespace Markdig.Renderers.Html.Inlines
{
/// <summary>
/// A HTML renderer for an <see cref="Aut... | // Copyright (c) Alexandre Mutel. All rights reserved.
// This file is licensed under the BSD-Clause 2 license.
// See the license.txt file in the project root for more information.
using Markdig.Syntax.Inlines;
namespace Markdig.Renderers.Html.Inlines
{
/// <summary>
/// A HTML renderer for an <see cref="Aut... | bsd-2-clause | C# |
a5fb7e7bec003ce21e356781384c074ead32f989 | create dictionary | volkanceylan/Serenity,volkanceylan/Serenity,volkanceylan/Serenity,volkanceylan/Serenity,volkanceylan/Serenity | src/Serenity.Net.Data.Entity/Row/DefaultRowFieldsProvider.cs | src/Serenity.Net.Data.Entity/Row/DefaultRowFieldsProvider.cs | using Microsoft.Extensions.DependencyInjection;
using Serenity.Reflection;
using System;
using System.Collections.Concurrent;
namespace Serenity.Data
{
public class DefaultRowFieldsProvider : IRowFieldsProvider
{
private readonly IServiceProvider serviceProvider;
private readonly Con... | using Microsoft.Extensions.DependencyInjection;
using Serenity.Reflection;
using System;
using System.Collections.Concurrent;
namespace Serenity.Data
{
public class DefaultRowFieldsProvider : IRowFieldsProvider
{
private readonly IServiceProvider serviceProvider;
private readonly Con... | mit | C# |
eaf2b1d94df6eb7f02621243e81bb858b5953987 | Remove line that shouldn't have been added yet | peppy/osu-new,DrabWeb/osu,naoey/osu,peppy/osu,ZLima12/osu,johnneijzen/osu,ppy/osu,2yangk23/osu,Frontear/osuKyzer,smoogipoo/osu,UselessToucan/osu,peppy/osu,DrabWeb/osu,naoey/osu,UselessToucan/osu,NeoAdonis/osu,smoogipooo/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,EVAST9919/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,DrabWeb/... | osu.Game.Rulesets.Mania/Replays/ManiaFramedReplayInputHandler.cs | osu.Game.Rulesets.Mania/Replays/ManiaFramedReplayInputHandler.cs | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Input;
using osu.Game.Rulesets.Mania.UI;
using osu.Game.Rulesets.Replays;
namespace o... | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Input;
using osu.Game.Rulesets.Mania.UI;
using osu.Game.Rulesets.Replays;
namespace o... | mit | C# |
504b9878f1e5e5372ed8ba66a1d5d491bd15ae6f | Remove dead code | SQLStreamStore/SQLStreamStore,SQLStreamStore/SQLStreamStore,damianh/Cedar.EventStore | tests/SqlStreamStore.Http.Tests/HttpClientStreamStoreFixture.cs | tests/SqlStreamStore.Http.Tests/HttpClientStreamStoreFixture.cs | namespace SqlStreamStore
{
using System;
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.TestHost;
using SqlStreamStore.HAL;
public class HttpClientStreamStoreFixture : StreamStoreAcceptanceTestFixture, IDisposable
{
... | namespace SqlStreamStore
{
using System;
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.TestHost;
using SqlStreamStore.HAL;
using MidFunc = System.Func<
System.Func<
System.Collections.Generic.IDictionar... | mit | C# |
f11b04c7bce8711fe5e43bdfd6a45ed7481fe59d | Add ScanWindow for look(behind/ahead). | Nezaboodka/Nevod.TextParsing,Nezaboodka/Nevod.TextParsing | WordExtraction/WordExtractor.cs | WordExtraction/WordExtractor.cs | using System.Collections.Generic;
namespace WordExtraction
{
class WordExtractor
{
class ScanWindow
{
public WordBreakPropertyType? Ahead { get; private set; }
public WordBreakPropertyType? Current { get; private set; }
public WordBreakPropertyType? Behind... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WordExtraction
{
class WordExtractor
{
public static IEnumerable<string> GetWords(string text)
{
yield return "word";
}
}
}
| mit | C# |
584e1e27a66c9dceb29ec52854fe5cda0e785ec9 | Add dialog slot type | stoiveyp/Alexa.NET.Management | Alexa.NET.Management/InteractionModel/DialogSlot.cs | Alexa.NET.Management/InteractionModel/DialogSlot.cs | using Newtonsoft.Json;
namespace Alexa.NET.Management.InteractionModel
{
public class DialogSlot
{
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("type")]
public string Type { get; set; }
[JsonProperty("elicitationRequired",NullValueHandling = Nu... | using Newtonsoft.Json;
namespace Alexa.NET.Management.InteractionModel
{
public class DialogSlot
{
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("elicitationRequired",NullValueHandling = NullValueHandling.Ignore)]
public bool ElicitationRequired { get; s... | mit | C# |
0ce6030b20075b0b2c380a9a85bcab7f0a7fc2a5 | Update Feature1.cs | alokpro/GitTest1 | ConsoleApplication1/ConsoleApplication1/Feature1.cs | ConsoleApplication1/ConsoleApplication1/Feature1.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Feature1
{
public int Add()
{
var x1 = 1;
var x2 = 3;
var sum = x1 + x2;
return sum;
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Feature1
{
public int Add()
{
int x1 = 1;
int x2 = 3;
int sum = x1 + x2;
return sum;
... | mit | C# |
55de2d4e21a13d9af03c5c493c30a94430fd507f | Fix issue: password change occurs only for default user. | enarod/enarod-web-api,enarod/enarod-web-api,enarod/enarod-web-api | Infopulse.EDemocracy.Web/Controllers/API/AccountController.cs | Infopulse.EDemocracy.Web/Controllers/API/AccountController.cs | using System.Linq;
using Infopulse.EDemocracy.Data.Repositories;
using Infopulse.EDemocracy.Web.Models;
using Microsoft.AspNet.Identity;
using System.Threading.Tasks;
using System.Web.Http;
using Infopulse.EDemocracy.Common.Operations;
using Infopulse.EDemocracy.Web.CORS;
using Infopulse.EDemocracy.Web.Resources;
nam... | using System.Linq;
using Infopulse.EDemocracy.Data.Repositories;
using Infopulse.EDemocracy.Web.Models;
using Microsoft.AspNet.Identity;
using System.Threading.Tasks;
using System.Web.Http;
using Infopulse.EDemocracy.Common.Operations;
using Infopulse.EDemocracy.Web.CORS;
using Infopulse.EDemocracy.Web.Resources;
nam... | cc0-1.0 | C# |
79bd13b79aeff351b07a5ccd0eb231aa0bd908a6 | Update benchmark code | smoogipooo/osu-framework,peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,ppy/osu-framework | osu.Framework.Benchmarks/BenchmarkLocalisableDescription.cs | osu.Framework.Benchmarks/BenchmarkLocalisableDescription.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 BenchmarkDotNet.Attributes;
using osu.Framework.Extensions;
using osu.Framework.Localisation;
namespace osu.Framework.Benchmarks
{
public class BenchmarkLocali... | // 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 BenchmarkDotNet.Attributes;
using osu.Framework.Extensions;
using osu.Framework.Localisation;
namespace osu.Framework.Benchmarks
{
public class B... | mit | C# |
6062bd303f7271897aa07165087c9178cef1e31f | fix bug for reporting viewer version 17.1.5.0 | Ronglin-kooboo/DReportiing,Ronglin-kooboo/DReportiing,Ronglin-kooboo/DReportiing | DReporting/Web/Mvc/Controllers/PreviewController.cs | DReporting/Web/Mvc/Controllers/PreviewController.cs | using DevExpress.Web.Mvc;
using DevExpress.XtraReports.UI;
using DReporting.Web.Mvc.ViewModels;
using System.Web;
using System.Web.Mvc;
namespace DReporting.Web.Mvc.Controllers
{
public class PreviewController : ControllerBase
{
public ActionResult Index(string templateId, string dataProviderId)
... | using DevExpress.Web.Mvc;
using DevExpress.XtraReports.UI;
using DReporting.Web.Mvc.ViewModels;
using System.Web;
using System.Web.Mvc;
namespace DReporting.Web.Mvc.Controllers
{
public class PreviewController : ControllerBase
{
public ActionResult Index(string templateId, string dataProviderId)
... | mit | C# |
7fd8f41921250c0312bfcd5d4ec55e9beca74d8a | implement INotifyProperyChanged | kidchenko/windows-phone | DailyRitualsApp/DailyRitualsApp/DataModel/Ritual.cs | DailyRitualsApp/DailyRitualsApp/DataModel/Ritual.cs | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
using DailyRitualsApp.Commands;
... | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DailyRitualsApp.DataModel
{
public class Ritual
{
public int Id { get; set; }
public string Name { get; set; }
public stri... | mit | C# |
16f9cd6d803feac597d6632fe46b786d51d952da | add page param | Terradue/DotNetTep,Terradue/DotNetTep | Terradue.Tep/Terradue/Tep/WebServer/News/Discourse.Service.cs | Terradue.Tep/Terradue/Tep/WebServer/News/Discourse.Service.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using ServiceStack.ServiceHost;
using System.Net;
namespace Terradue.Tep.WebServer.Services {
[Api("Tep Terradue webserver")]
[Restrict(EndpointAttributes.InSecure | EndpointAttributes.InternalNetworkAccess | EndpointAttribut... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using ServiceStack.ServiceHost;
using System.Net;
namespace Terradue.Tep.WebServer.Services {
[Api("Tep Terradue webserver")]
[Restrict(EndpointAttributes.InSecure | EndpointAttributes.InternalNetworkAccess | EndpointAttribut... | agpl-3.0 | C# |
8a86640de86f4d07db1b442d398d2caa7470c512 | Fix bug when moving between pages executing on UI thread. | dsplaisted/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer,campersau/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer,BreeeZe/NuGetPackageExplorer | PackageViewModel/PackageChooser/QueryContextBase.cs | PackageViewModel/PackageChooser/QueryContextBase.cs | using System;
using System.Collections.Generic;
using System.Data.Services.Client;
using System.Linq;
using System.Threading.Tasks;
namespace PackageExplorerViewModel
{
internal abstract class QueryContextBase<T>
{
private int? _totalItemCount;
public int TotalItemCount
{
... | using System;
using System.Collections.Generic;
using System.Data.Services.Client;
using System.Linq;
using System.Threading.Tasks;
namespace PackageExplorerViewModel
{
internal abstract class QueryContextBase<T>
{
private int? _totalItemCount;
public int TotalItemCount
{
... | mit | C# |
b8c8073823a2349068afcf35fc9533f2c9e60857 | Improve WebAssembly processing | Perfare/Il2CppDumper,Perfare/Il2CppDumper | Il2CppDumper/ExecutableFormats/WebAssemblyMemory.cs | Il2CppDumper/ExecutableFormats/WebAssemblyMemory.cs | using System.IO;
namespace Il2CppDumper
{
public sealed class WebAssemblyMemory : Il2Cpp
{
public WebAssemblyMemory(Stream stream, bool is32Bit) : base(stream)
{
Is32Bit = is32Bit;
}
public override ulong MapVATR(ulong addr)
{
return addr;
... | using System.IO;
namespace Il2CppDumper
{
public sealed class WebAssemblyMemory : Il2Cpp
{
public WebAssemblyMemory(Stream stream, bool is32Bit) : base(stream)
{
Is32Bit = is32Bit;
}
public override ulong MapVATR(ulong addr)
{
return addr;
... | mit | C# |
2572f25b2103b4b3a5241a21811c5344648f88ad | rename 'ElapsedTime' to 'Elapsed' | goncalopereira/statsd-csharp-client,bilal-fazlani/statsd-csharp-client,Pereingo/statsd-csharp-client,DarrellMozingo/statsd-csharp-client | src/StatsdClient/Stopwatch.cs | src/StatsdClient/Stopwatch.cs | using System;
namespace StatsdClient
{
public interface IStopwatch
{
void Start();
void Stop();
TimeSpan Elapsed { get; }
[Obsolete("use Elapsed property")]
int ElapsedMilliseconds();
}
public class Stopwatch : IStopwatch
{
private r... | using System;
namespace StatsdClient
{
public interface IStopwatch
{
void Start();
void Stop();
TimeSpan ElapsedTime { get; }
[Obsolete("use ElapsedTime property")]
int ElapsedMilliseconds();
}
public class Stopwatch : IStopwatch
{
p... | mit | C# |
47ffa3b42888e9ffeb13105568cdb6f8fe6029c1 | Fix for overallocation | PowerOfCode/lidgren-network-gen3,forestrf/lidgren-network-gen3,lidgren/lidgren-network-gen3,RainsSoft/lidgren-network-gen3,jbruening/lidgren-network-gen3,SacWebDeveloper/lidgren-network-gen3,dragutux/lidgren-network-gen3 | Lidgren.Network/Encryption/NetCryptoProviderBase.cs | Lidgren.Network/Encryption/NetCryptoProviderBase.cs | using System;
using System.IO;
using System.Security.Cryptography;
namespace Lidgren.Network
{
public abstract class NetCryptoProviderBase : NetEncryption
{
protected SymmetricAlgorithm m_algorithm;
public NetCryptoProviderBase(NetPeer peer, SymmetricAlgorithm algo)
: base(peer)
{
m_algori... | using System;
using System.IO;
using System.Security.Cryptography;
namespace Lidgren.Network
{
public abstract class NetCryptoProviderBase : NetEncryption
{
protected SymmetricAlgorithm m_algorithm;
public NetCryptoProviderBase(NetPeer peer, SymmetricAlgorithm algo)
: base(peer)
{
m_algori... | mit | C# |
525a87f07b1edd6ac03aee3a4de8c78a22a59aa9 | Update Program.cs | vishipayyallore/CSharp-DotNet-Core-Samples | LearningDesignPatterns/Source/Alogithms/LogicPrograms/Program.cs | LearningDesignPatterns/Source/Alogithms/LogicPrograms/Program.cs | using LogicPrograms.Interfaces;
using LogicPrograms.Logics;
using System.Linq;
using static System.Console;
namespace LogicPrograms
{
class Program
{
static void Main(string[] args)
{
// Stair Case Program
var number1 = 4;
for(var index=1; index <= number1... | using LogicPrograms.Interfaces;
using LogicPrograms.Logics;
using static System.Console;
namespace LogicPrograms
{
class Program
{
static void Main(string[] args)
{
IMonthNames monthNames = new MonthNames();
for(var counter=1; counter <= 10; counter++)
{
... | apache-2.0 | C# |
14aff78be5e40a92f2c58431e2472d882f0488c5 | use sealed for attribute class. | AvaloniaUI/Avalonia,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,Perspex/Perspex,SuperJMN/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,grokys/Perspex,grokys/Perspex,jkoritzinsky/Avalonia,Supe... | src/Avalonia.Styling/Controls/Metadata/PseudoClassesAttribute.cs | src/Avalonia.Styling/Controls/Metadata/PseudoClassesAttribute.cs | using System;
using System.Collections.Generic;
#nullable enable
namespace Avalonia.Controls.Metadata
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public sealed class PseudoClassesAttribute : Attribute
{
public PseudoClassesAttribute(params string[] pseudoClasses)
{
... | using System;
using System.Collections.Generic;
#nullable enable
namespace Avalonia.Controls.Metadata
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class PseudoClassesAttribute : Attribute
{
public PseudoClassesAttribute(params string[] pseudoClasses)
{
... | mit | C# |
c3f249d1fad79f91127510b7ad25ecd1509f831e | Add the all-important = sign to make arg passing work | datalust/clef-tool | src/Datalust.ClefTool/Cli/Features/InvalidDataHandlingFeature.cs | src/Datalust.ClefTool/Cli/Features/InvalidDataHandlingFeature.cs | // Copyright 2016-2017 Datalust Pty Ltd
//
// 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 ag... | // Copyright 2016-2017 Datalust Pty Ltd
//
// 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 ag... | apache-2.0 | C# |
32162a153e057cf8a69b946bed2fb88f2e50dfea | Make proeprty setters private if they are not being used | jaimalchohan/mini-web-deploy,jaimalchohan/mini-web-deploy | src/MiniWebDeploy.Deployer/Features/Discovery/AssemblyDetails.cs | src/MiniWebDeploy.Deployer/Features/Discovery/AssemblyDetails.cs | using System;
namespace MiniWebDeploy.Deployer.Features.Discovery
{
public class AssemblyDetails
{
public string Path { get; private set; }
public string BinaryPath { get; private set; }
public Type InstallerType { get; private set; }
public AssemblyDetails(string path, string ... | using System;
namespace MiniWebDeploy.Deployer.Features.Discovery
{
public class AssemblyDetails
{
public string Path { get; set; }
public string BinaryPath { get; set; }
public Type InstallerType { get; set; }
public AssemblyDetails(string path, string binaryPath, Type install... | mit | C# |
dc51dd9ff6f76827cdca38b439d0889885280b5f | Format document | stevetayloruk/Orchard2,xkproject/Orchard2,petedavis/Orchard2,xkproject/Orchard2,OrchardCMS/Brochard,xkproject/Orchard2,xkproject/Orchard2,OrchardCMS/Brochard,petedavis/Orchard2,petedavis/Orchard2,stevetayloruk/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,petedavis/Orchard2,stevetayloruk/Orchard2,stevetayloruk/Orc... | src/OrchardCore.Modules/OrchardCore.Admin/Admin/AdminSettings.cs | src/OrchardCore.Modules/OrchardCore.Admin/Admin/AdminSettings.cs | namespace OrchardCore.Admin.Models
{
public class AdminSettings
{
public bool DisplayMenuFilter { get; set; }
}
}
| using System;
namespace OrchardCore.Admin.Models
{
public class AdminSettings
{
public bool DisplayMenuFilter{ get; set; }
}
}
| bsd-3-clause | C# |
9d2defdb908bf83db763cd6f8a69e0cefa0d9b05 | Add support for metadata on BankAccount creation | stripe/stripe-dotnet | src/Stripe.net/Services/BankAccounts/BankAccountCreateOptions.cs | src/Stripe.net/Services/BankAccounts/BankAccountCreateOptions.cs | namespace Stripe
{
using System.Collections.Generic;
using Newtonsoft.Json;
using Stripe.Infrastructure;
public class BankAccountCreateOptions : BaseOptions, IHasMetadata
{
/// <summary>
/// A set of key/value pairs that you can attach to an object. It can be useful for storing
... | namespace Stripe
{
using Newtonsoft.Json;
using Stripe.Infrastructure;
public class BankAccountCreateOptions : BaseOptions
{
/// <summary>
/// REQUIRED. Either a token, like the ones returned by
/// <a href="https://stripe.com/docs/stripe.js">Stripe.js</a>, or a
/// <see... | apache-2.0 | C# |
78670946e4387b24a3137a313536521b0982c727 | Remove default to serialization mode to Assign when using constructor YamlMemberAttribute(string) | vasily-kirichenko/SharpYaml,SiliconStudio/SharpYaml,vasily-kirichenko/SharpYaml | YamlDotNet/Serialization/YamlMemberAttribute.cs | YamlDotNet/Serialization/YamlMemberAttribute.cs | using System;
namespace YamlDotNet.Serialization
{
/// <summary>
/// Specify the way to store a property or field of some class or structure.
/// </summary>
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public sealed class YamlMemberAttribute : Attribute
{
private readonly Ser... | using System;
namespace YamlDotNet.Serialization
{
/// <summary>
/// Specify the way to store a property or field of some class or structure.
/// </summary>
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public sealed class YamlMemberAttribute : Attribute
{
private readonly Ser... | mit | C# |
0aa67318d3a336ab3e9818d31c9470d9e88f186e | Fix sendmessage in usable object controller | duaiwe/ld36 | src/Assets/GameObjects/UsableObjComponent/UsableObjectCS.cs | src/Assets/GameObjects/UsableObjComponent/UsableObjectCS.cs | using UnityEngine;
using System.Collections;
/**
* Using this component:
*
* 1. Implement the UsableObject interface (Assets/CommonScripts/UsableObject) on a script component of your game object.
* 2. Add the UsableObjectTpl Prefab as a child of your game object.
* 3. Adjust Position of Transform, Radius/Offset... | using UnityEngine;
using System.Collections;
/**
* Using this component:
*
* 1. Implement the UsableObject interface (Assets/CommonScripts/UsableObject) on a script component of your game object.
* 2. Add the UsableObjectTpl Prefab as a child of your game object.
* 3. Adjust Position of Transform, Radius/Offset... | mit | C# |
e2410395c9359ba7f86f59d8d7d175e93db9ce12 | update SettingTypesController | Doozie7/ExampleConfigServer | src/ConfigService.Api/Controllers/SettingTypesController.cs | src/ConfigService.Api/Controllers/SettingTypesController.cs | using ConfigService.Model;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
namespace ConfigService.Api.Controllers
{
/// <summary>
///
/// </summary>
[Route("api/[controller]")]
public class SettingTypesController : Controller
{
private readonly IRepository<SettingT... | using ConfigService.Model;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
namespace ConfigService.Api.Controllers
{
/// <summary>
///
/// </summary>
[Route("api/[controller]")]
public class SettingTypesController : Controller
{
private readonly IRepository<Setting... | mit | C# |
52150dc0d80d1c361fab2a582c1d508eeea5e9bc | Save bandwidth by passing $select=CurrentDivision in GetDivision() | exactonline/ClientSDK,exactonline/exactonline-api-dotnet-client,shtrip/exactonline-api-dotnet-client,PerplexWouter/exactonline-api-dotnet-client | src/ExactOnline.Client.Sdk/Controllers/ExactOnlineClient.cs | src/ExactOnline.Client.Sdk/Controllers/ExactOnlineClient.cs | using System;
using System.Linq;
using ExactOnline.Client.Models;
using ExactOnline.Client.Sdk.Delegates;
using ExactOnline.Client.Sdk.Helpers;
namespace ExactOnline.Client.Sdk.Controllers
{
/// <summary>
/// Front Controller for working with Exact Online Entities
/// </summary>
public class ExactOnlineClient
{
... | using System;
using System.Linq;
using ExactOnline.Client.Models;
using ExactOnline.Client.Sdk.Delegates;
using ExactOnline.Client.Sdk.Helpers;
namespace ExactOnline.Client.Sdk.Controllers
{
/// <summary>
/// Front Controller for working with Exact Online Entities
/// </summary>
public class ExactOnlineClient
{
... | mit | C# |
32ce1a45e25a3e4cc836926bf3c73b1f774bde44 | Initialize AliasMatcher with a list of candidate types | appharbor/appharbor-cli | src/AppHarbor/AliasMatcher.cs | src/AppHarbor/AliasMatcher.cs | using System;
using System.Collections.Generic;
namespace AppHarbor
{
public class AliasMatcher : IAliasMatcher
{
private readonly IEnumerable<Type> _candidateTypes;
public AliasMatcher(IEnumerable<Type> candidateTypes)
{
_candidateTypes = candidateTypes;
}
public Type GetMatchedType(string commandAr... | using System;
namespace AppHarbor
{
public class AliasMatcher : IAliasMatcher
{
public Type GetMatchedType(string commandArgument)
{
throw new NotImplementedException();
}
}
}
| mit | C# |
7aceb3230c49c14427974488d4a27bd884722ab7 | change injection replacement to only apply to relevant class in library | ajepst/XlsToEf,ajepst/XlsToEf,ajepst/XlsToEf | src/XlsToEf.Example/DependencyResolution/DefaultRegistry.cs | src/XlsToEf.Example/DependencyResolution/DefaultRegistry.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="DefaultRegistry.cs" company="Web Advanced">
// Copyright 2012 Web Advanced (www.webadvanced.com)
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not u... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="DefaultRegistry.cs" company="Web Advanced">
// Copyright 2012 Web Advanced (www.webadvanced.com)
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not u... | mit | C# |
9b596755484ed02f0ff6bb0f96741e13ad13cb3d | Hide constructors of Assertion | vain0/EnumerableTest | EnumerableTest.Core/Sdk/Assertion.cs | EnumerableTest.Core/Sdk/Assertion.cs | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace EnumerableTest.Sdk
{
/// <summary>
/// Represents a assertion for unit tests.
/// <para lang="ja">
/// 単体テストの表明を表す。
... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace EnumerableTest.Sdk
{
/// <summary>
/// Represents a assertion for unit tests.
/// <para lang="ja">
/// 単体テストの表明を表す。
... | mit | C# |
32c145f03fdd37955df9250582d8dff1629b646e | Remove loosy conversion. | chtoucas/Narvalo.NET,chtoucas/Narvalo.NET | src/Narvalo.Finance/Money$.cs | src/Narvalo.Finance/Money$.cs | // Copyright (c) Narvalo.Org. All rights reserved. See LICENSE.txt in the project root for license information.
namespace Narvalo.Finance
{
using System;
public partial struct Money
{
public static Money Create(decimal amount) => new Money(amount, Currency.Of("XXX"));
public static Money... | // Copyright (c) Narvalo.Org. All rights reserved. See LICENSE.txt in the project root for license information.
namespace Narvalo.Finance
{
using System;
public partial struct Money
{
public static Money Create(decimal amount) => new Money(amount, Currency.Of("XXX"));
public static Money... | bsd-2-clause | C# |
0d971047365c3399ec8cefaa8eab51ae0131964c | Update InputSimulationEnum.cs | killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity | Assets/MRTK/Core/Providers/InputSimulation/InputSimulationEnum.cs | Assets/MRTK/Core/Providers/InputSimulation/InputSimulationEnum.cs | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
namespace Microsoft.MixedReality.Toolkit.Input
{
/// <summary>
/// Defines for how input simulation handles movement
/// </summary>
public enum InputSimulationControlMode
{
/// <summary>
/// M... | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
namespace Microsoft.MixedReality.Toolkit.Input
{
/// <summary>
/// Defines for how input simulation handles movement
/// </summary>
public enum InputSimulationControlMode
{
/// <summary>
/// M... | mit | C# |
53cde896383562d22e6b24ed493ca5110f9cb34f | Update Settings.Designer.cs | sbennett1990/WordOfTheDay | WordOfTheDay.Window/Properties/Settings.Designer.cs | WordOfTheDay.Window/Properties/Settings.Designer.cs | //------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18444
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... | //------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18444
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... | bsd-2-clause | C# |
e5daf18d78723312c4de6d6facb5bdfaa100ca0d | Use const for values of MobilePlatform | rajfidel/appium-dotnet-driver,rajfidel/appium-dotnet-driver,appium/appium-dotnet-driver | appium-dotnet-driver/Appium/Enums/MobilePlatform.cs | appium-dotnet-driver/Appium/Enums/MobilePlatform.cs | //Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//See the NOTICE file distributed with this work for additional
//information regarding copyright ownership.
//You may obtain a copy of the License at
//
// http://www.apache.org/licen... | //Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//See the NOTICE file distributed with this work for additional
//information regarding copyright ownership.
//You may obtain a copy of the License at
//
// http://www.apache.org/licen... | apache-2.0 | C# |
bc95a4a6c175e5999bcb916048029c933c524532 | Add missing @ (#184) | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/Areas/Identity/Views/Account/AccessDenied.cshtml | src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/Areas/Identity/Views/Account/AccessDenied.cshtml | @{
ViewData["Title"] = "Access denied";
}
<header>
<h2 class="text-danger">@ViewData["Title"]</h2>
<p class="text-danger">You do not have access to this resource.</p>
</header>
| @{
ViewData["Title"] = "Access denied";
}
<header>
<h2 class="text-danger">ViewData["Title"]</h2>
<p class="text-danger">You do not have access to this resource.</p>
</header>
| apache-2.0 | C# |
9e7dc6d1b11a62a883745cea92857c6436dae3e6 | Make DeadLetterEvent constructor internal | Bee-Htcpcp/protoactor-dotnet,AsynkronIT/protoactor-dotnet,masteryee/protoactor-dotnet,masteryee/protoactor-dotnet,Bee-Htcpcp/protoactor-dotnet,tomliversidge/protoactor-dotnet,raskolnikoov/protoactor-dotnet,raskolnikoov/protoactor-dotnet,tomliversidge/protoactor-dotnet | src/Proto.Actor/DeadLetter.cs | src/Proto.Actor/DeadLetter.cs | // -----------------------------------------------------------------------
// <copyright file="DeadLetter.cs" company="Asynkron HB">
// Copyright (C) 2015-2017 Asynkron HB All rights reserved
// </copyright>
// -----------------------------------------------------------------------
namespace Proto
{
... | // -----------------------------------------------------------------------
// <copyright file="DeadLetter.cs" company="Asynkron HB">
// Copyright (C) 2015-2017 Asynkron HB All rights reserved
// </copyright>
// -----------------------------------------------------------------------
namespace Proto
{
... | apache-2.0 | C# |
c98fc72a9a55a1dcc87c48800d66cecd027ea2d0 | Verify ElementExists() executes quickly | rcasady616/Selenium.WeDriver.Equip,rcasady616/Selenium.WeDriver.Equip | SeleniumExtension.Tests/Extensions/SearchContextExtensionTests.cs | SeleniumExtension.Tests/Extensions/SearchContextExtensionTests.cs | using System.Diagnostics;
using NUnit.Framework;
using OpenQA.Selenium;
using TestWebPages.UIFramework.Pages;
namespace SeleniumExtension.Tests.Extensions
{
[TestFixture]
[Category("Extension")]
public class SearchContextExtentionTests : BaseTest
{
public AjaxyControlPage Page;
[SetUp... | using NUnit.Framework;
using OpenQA.Selenium;
using TestWebPages.UIFramework.Pages;
namespace SeleniumExtension.Tests.Extensions
{
[TestFixture]
[Category("Extension")]
public class SearchContextExtentionTests : BaseTest
{
public AjaxyControlPage Page;
[SetUp]
public void Setu... | mit | C# |
57a2f5367c744b74442764e785c02af6bdb433ab | Update Agent String (#3804) | quantumagi/StratisBitcoinFullNode,quantumagi/StratisBitcoinFullNode,stratisproject/StratisBitcoinFullNode,stratisproject/StratisBitcoinFullNode,Neurosploit/StratisBitcoinFullNode,Neurosploit/StratisBitcoinFullNode,Neurosploit/StratisBitcoinFullNode,fassadlr/StratisBitcoinFullNode,fassadlr/StratisBitcoinFullNode | src/Stratis.Bitcoin.Features.SmartContracts/SmartContractVersionProvider.cs | src/Stratis.Bitcoin.Features.SmartContracts/SmartContractVersionProvider.cs | using Stratis.Bitcoin.Interfaces;
namespace Stratis.Bitcoin.Features.SmartContracts
{
public sealed class SmartContractVersionProvider : IVersionProvider
{
/// <inheritdoc />
public string GetVersion()
{
return "1.0.1";
}
}
}
| using Stratis.Bitcoin.Interfaces;
namespace Stratis.Bitcoin.Features.SmartContracts
{
public sealed class SmartContractVersionProvider : IVersionProvider
{
/// <inheritdoc />
public string GetVersion()
{
return "1.0.0";
}
}
}
| mit | C# |
940726ddc7dc2d31620a1348d4fceb898fa60931 | Change the layout a little | GNOME/f-spot,dkoeb/f-spot,Yetangitu/f-spot,mans0954/f-spot,NguyenMatthieu/f-spot,nathansamson/F-Spot-Album-Exporter,dkoeb/f-spot,GNOME/f-spot,dkoeb/f-spot,GNOME/f-spot,mono/f-spot,nathansamson/F-Spot-Album-Exporter,Sanva/f-spot,dkoeb/f-spot,NguyenMatthieu/f-spot,mans0954/f-spot,mono/f-spot,dkoeb/f-spot,Sanva/f-spot,Yet... | src/InfoDisplay.cs | src/InfoDisplay.cs | using System;
namespace FSpot {
public class InfoDisplay : Gtk.HTML {
public InfoDisplay ()
{
}
private ExifData exif_info;
private Photo photo;
public Photo Photo {
get {
return photo;
}
set {
photo = value;
if (exif_info != null)
exif_info.Dispose ();
if (photo != nul... | using System;
namespace FSpot {
public class InfoDisplay : Gtk.HTML {
public InfoDisplay ()
{
}
private ExifData exif_info;
private Photo photo;
public Photo Photo {
get {
return photo;
}
set {
photo = value;
if (exif_info != null)
exif_info.Dispose ();
if (photo != nul... | mit | C# |
1a6d214ffe14989a1d1417addbf7de10a89119f3 | Make HebrewMonthConverter internal. | malcolmr/nodatime,jskeet/nodatime,zaccharles/nodatime,zaccharles/nodatime,zaccharles/nodatime,malcolmr/nodatime,BenJenkinson/nodatime,BenJenkinson/nodatime,zaccharles/nodatime,nodatime/nodatime,zaccharles/nodatime,zaccharles/nodatime,malcolmr/nodatime,jskeet/nodatime,nodatime/nodatime,malcolmr/nodatime | src/NodaTime/Calendars/HebrewMonthConverter.cs | src/NodaTime/Calendars/HebrewMonthConverter.cs | // Copyright 2014 The Noda Time Authors. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
namespace NodaTime.Calendars
{
/// <summary>
/// Conversions between civil and ecclesiastical month numbers in the Hebrew calendar system.... | // Copyright 2014 The Noda Time Authors. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
namespace NodaTime.Calendars
{
/// <summary>
/// Conversions between civil and ecclesiastical month numbers in the Hebrew calendar system.... | apache-2.0 | C# |
c0d20d8ce430a2ee7257c7ac8cf34eeefd54489f | Add some spacing to interface class | peppy/osu-new,ppy/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,smoogipooo/osu,ppy/osu,smoogipoo/osu,ppy/osu,peppy/osu,UselessToucan/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu | osu.Game.Rulesets.Catch/Objects/Drawables/IHasCatchObjectState.cs | osu.Game.Rulesets.Catch/Objects/Drawables/IHasCatchObjectState.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Bindables;
using osuTK;
using osuTK.Graphics;
namespace osu.Game.Rulesets.Catch.Objects.Drawables
{
/// <summary>
/// Provides a visual state... | // 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.Bindables;
using osuTK;
using osuTK.Graphics;
namespace osu.Game.Rulesets.Catch.Objects.Drawables
{
/// <summary>
/// Provides a visual state... | mit | C# |
541620eb018b76dd7eb20255b087456b8de97341 | tidy up to reuse extension method | rzhw/Squirrel.Windows,rzhw/Squirrel.Windows | src/Shimmer.WiXUi/ViewModels/ErrorViewModel.cs | src/Shimmer.WiXUi/ViewModels/ErrorViewModel.cs | using System;
using System.Reactive.Linq;
using NuGet;
using ReactiveUI;
using ReactiveUI.Routing;
using ReactiveUI.Xaml;
using Shimmer.Client.WiXUi;
using Shimmer.Core.Extensions;
namespace Shimmer.WiXUi.ViewModels
{
public class ErrorViewModel : ReactiveObject, IErrorViewModel
{
public string UrlPat... | using System;
using System.Reactive.Linq;
using NuGet;
using ReactiveUI;
using ReactiveUI.Routing;
using ReactiveUI.Xaml;
using Shimmer.Client.WiXUi;
namespace Shimmer.WiXUi.ViewModels
{
public class ErrorViewModel : ReactiveObject, IErrorViewModel
{
public string UrlPathSegment { get { return "error"... | mit | C# |
f147951d92ff5b4413d7ffdd55dcc91dfcfdfdca | Revert "use WebHost.CreateDefaultBuilder in IdentitySample.Mvc" | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | samples/IdentitySample.Mvc/Program.cs | samples/IdentitySample.Mvc/Program.cs | using System.IO;
using Microsoft.AspNetCore.Hosting;
namespace IdentitySample
{
public static class Program
{
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
... | using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
namespace IdentitySample
{
public static class Program
{
public static void Main(string[] args) => BuildWebHost(args).Run();
public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args)
... | apache-2.0 | C# |
1d939c7f99f735e1a14611a90904f0dca48e1133 | Update assembly file version for next release | enckse/StyleCopCmd,enckse/StyleCopCmd | StyleCopCmd.Core/Properties/CommonAssemblyInfo.cs | StyleCopCmd.Core/Properties/CommonAssemblyInfo.cs | //------------------------------------------------------------------------------
// <copyright
// file="CommonAssemblyInfo.cs"
// company="enckse">
// Copyright (c) All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System.Reflection;
using S... | //------------------------------------------------------------------------------
// <copyright
// file="CommonAssemblyInfo.cs"
// company="enckse">
// Copyright (c) All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System.Reflection;
using S... | bsd-3-clause | C# |
5c5950d17f9a3d6f89cc429e32dd5ef6dcf45bea | add test object creator for valid school model | mzrimsek/resume-site-api | Test.Integration/TestHelpers/TestObjectCreator.cs | Test.Integration/TestHelpers/TestObjectCreator.cs | using System.Net.Http;
using Web.Models.JobModels;
using Web.Models.JobProjectModels;
using Web.Models.SchoolModels;
namespace Test.Integration.TestHelpers
{
public class TestObjectCreator
{
private HttpClient _client;
public TestObjectCreator(HttpClient client)
{
_client = ... | using System.Net.Http;
using Web.Models.JobModels;
using Web.Models.JobProjectModels;
namespace Test.Integration.TestHelpers
{
public class TestObjectCreator
{
private HttpClient _client;
public TestObjectCreator(HttpClient client)
{
_client = client;
}
publ... | mit | C# |
4a16ac53bab407adeceadc992c5ec6c8eb1dd10e | Remove extra newline | peppy/osu,peppy/osu,johnneijzen/osu,smoogipooo/osu,2yangk23/osu,NeoAdonis/osu,ppy/osu,EVAST9919/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,ZLima12/osu,UselessToucan/osu,peppy/osu-new,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,johnneijzen/osu,smoogipoo/osu,ZLima12/osu,2yangk23/osu,EVAST9919/osu,Useless... | osu.Game/Database/IModelDownloader.cs | osu.Game/Database/IModelDownloader.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Online.API;
using System;
namespace osu.Game.Database
{
/// <summary>
/// Represents a <see cref="IModelManager{TModel}"/> that can download new ... | // 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.Game.Online.API;
using System;
namespace osu.Game.Database
{
/// <summary>
/// Represents a <see cref="IModelManager{TModel}"/> that can download new ... | mit | C# |
0bf2fa105f5582360c88e4162bc1fd70536ef683 | Test jenkins. | sguzunov/CodeIt,sguzunov/CodeIt | CodeIt/CodeIt.UnitTests/DbModels/ChallengeTests/TimeInMs_Should.cs | CodeIt/CodeIt.UnitTests/DbModels/ChallengeTests/TimeInMs_Should.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NUnit.Framework;
using CodeIt.Data.Models;
using System.ComponentModel.DataAnnotations;
namespace CodeIt.UnitTests.DbModels.ChallengeTests
{
[TestFixture]
public class TimeInMs_Should
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NUnit.Framework;
using CodeIt.Data.Models;
using System.ComponentModel.DataAnnotations;
namespace CodeIt.UnitTests.DbModels.ChallengeTests
{
[TestFixture]
public class TimeInMs_Should
... | mit | C# |
c7836c384c152dc3ee0c6259198af6c454d48386 | Add workaround required after MapODataServiceRoute | luchaoshuai/aspnetboilerplate,fengyeju/aspnetboilerplate,virtualcca/aspnetboilerplate,andmattia/aspnetboilerplate,virtualcca/aspnetboilerplate,verdentk/aspnetboilerplate,ilyhacker/aspnetboilerplate,verdentk/aspnetboilerplate,beratcarsi/aspnetboilerplate,AlexGeller/aspnetboilerplate,Nongzhsh/aspnetboilerplate,Nongzhsh/a... | src/Abp.AspNetCore.OData/AspNetCore/OData/Configuration/AbpAspNetCoreODataModuleConfiguration.cs | src/Abp.AspNetCore.OData/AspNetCore/OData/Configuration/AbpAspNetCoreODataModuleConfiguration.cs | using System;
using Abp.AspNetCore.Configuration;
using Abp.Configuration.Startup;
using Microsoft.AspNet.OData;
using Microsoft.AspNet.OData.Builder;
using Microsoft.AspNet.OData.Extensions;
namespace Abp.AspNetCore.OData.Configuration
{
internal class AbpAspNetCoreODataModuleConfiguration : IAbpAspNetCoreODataM... | using System;
using Abp.AspNetCore.Configuration;
using Abp.Configuration.Startup;
using Microsoft.AspNet.OData.Builder;
using Microsoft.AspNet.OData.Extensions;
namespace Abp.AspNetCore.OData.Configuration
{
internal class AbpAspNetCoreODataModuleConfiguration : IAbpAspNetCoreODataModuleConfiguration
{
... | mit | C# |
2a929b3295765132a9b507c947891dc1e0c6da5c | Update MaxAgents test | nunit/nunit-console,nunit/nunit-console,nunit/nunit-console | src/NUnitEngine/nunit.engine.tests/Runners/MultipleTestProcessRunnerTests.cs | src/NUnitEngine/nunit.engine.tests/Runners/MultipleTestProcessRunnerTests.cs | // ***********************************************************************
// Copyright (c) 2016 Charlie Poole, Rob Prouse
//
// 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 restr... | // ***********************************************************************
// Copyright (c) 2016 Charlie Poole, Rob Prouse
//
// 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 restr... | mit | C# |
4a07a7e757ce283e2445abe4522cfb80bdad6bc6 | Refactor test | smoogipoo/osu,smoogipooo/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,peppy/osu-new,NeoAdonis/osu,peppy/osu,ppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu | osu.Game.Rulesets.Osu.Tests/TestSceneSliderApplication.cs | osu.Game.Rulesets.Osu.Tests/TestSceneSliderApplication.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.Beatmaps.ControlPoints;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Types;
using osu.G... | // 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.Framework.Timing;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Rulesets.Objects;
using osu.Game.Ruleset... | mit | C# |
8483f71afead438c4fb63a7ba686e5d877386c6e | Add path for local vs code install | droyad/Assent | src/Assent/Reporters/DiffPrograms/DiffProgramBase.cs | src/Assent/Reporters/DiffPrograms/DiffProgramBase.cs | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
namespace Assent.Reporters.DiffPrograms
{
public abstract class DiffProgramBase : IDiffProgram
{
protected static IReadOnlyList<string> WindowsProgramFilePaths => new[]
{
... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
namespace Assent.Reporters.DiffPrograms
{
public abstract class DiffProgramBase : IDiffProgram
{
protected static IReadOnlyList<string> WindowsProgramFilePaths => new[]
{
... | mit | C# |
72b763a7e1c0d1a59083ebbb9c4c19bb67d5102d | Fix ConsoleHost on Windows CoreCLR build | jsoref/PowerShell,bingbing8/PowerShell,PaulHigin/PowerShell,bmanikm/PowerShell,KarolKaczmarek/PowerShell,TravisEz13/PowerShell,bmanikm/PowerShell,jsoref/PowerShell,bmanikm/PowerShell,bmanikm/PowerShell,bingbing8/PowerShell,PaulHigin/PowerShell,PaulHigin/PowerShell,kmosher/PowerShell,KarolKaczmarek/PowerShell,jsoref/Pow... | src/Microsoft.PowerShell.ConsoleHost/AssemblyInfo.cs | src/Microsoft.PowerShell.ConsoleHost/AssemblyInfo.cs | using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
#if !CORECLR
using System.Runtime.ConstrainedExecution;
using System.Security.Permissions;
#endif
#if CORECLR
[assembly:AssemblyCulture("")]
[assembly:NeutralResourcesLanguage("en-US")]
[assem... | using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
#if !CORECLR
using System.Runtime.ConstrainedExecution;
using System.Security.Permissions;
#endif
[assembly:InternalsVisibleTo("powershell-tests")]
[assembly:AssemblyCulture("")]
[assembly:Ne... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.