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 |
|---|---|---|---|---|---|---|---|---|
998a9fdc9baa8ba9fc2ea2b90cefe310bfbad09b | Fix spelling | dotnet-architecture/eShopOnContainers,skynode/eShopOnContainers,andrelmp/eShopOnContainers,dotnet-architecture/eShopOnContainers,productinfo/eShopOnContainers,albertodall/eShopOnContainers,dotnet-architecture/eShopOnContainers,albertodall/eShopOnContainers,andrelmp/eShopOnContainers,dotnet-architecture/eShopOnContainer... | src/Services/Catalog/Catalog.API/Infrastructure/Filters/HttpGlobalExceptionFilter.cs | src/Services/Catalog/Catalog.API/Infrastructure/Filters/HttpGlobalExceptionFilter.cs | using Catalog.API.Infrastructure.ActionResults;
using Catalog.API.Infrastructure.Exceptions;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
using Microsoft.Extensions.Logging;
using System.Net;
namespace Catalog.API.Infrastructure.Filters
{
public class... | using Catalog.API.Infrastructure.ActionResults;
using Catalog.API.Infrastructure.Exceptions;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
using Microsoft.Extensions.Logging;
using System.Net;
namespace Catalog.API.Infrastructure.Filters
{
public class... | mit | C# |
c27a20bc2a0ed3562a7782e47be9386727c0791c | Use API to override the location of the dictionary file in the dictionary cache from our Web applicatoin | TheChimni/Anagrams,TheChimni/Anagrams | Anagrams/Global.asax.cs | Anagrams/Global.asax.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using Anagrams.Models;
namespace Anagrams
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801
public class MvcApplic... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using Anagrams.Models;
namespace Anagrams
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801
public class MvcApplic... | mit | C# |
371b36181c98b3839bc2081b1f554bf70615c121 | Fix broken link. | hhalim/Shift.Demo.Mvc,hhalim/Shift.Demo.Mvc | MyApp.Client/Views/Home/Index.cshtml | MyApp.Client/Views/Home/Index.cshtml | @{
ViewBag.Title = "Home Page";
}
<div class="row" style="padding-top: 20px">
<div class="col-sm-12">
<ul>
<li>
<a href="@Url.Action("Index","Dashboard")">Dashboard</a>
</li>
<li>
<a href="@Url.Action("Index", "Progress")">... | @{
ViewBag.Title = "Home Page";
}
<div class="row" style="padding-top: 20px">
<div class="col-sm-12">
<ul>
<li>
<a href="@Url.Action("Index","Dashboard")">Dashboard</a>
</li>
<li>
<a href="@Url.Action("Index", "Progress")">... | mit | C# |
076e9231af98ace3d5ff2d86a221de16f32f9156 | disable windows auth by default and add note about IIS requiring config | IdentityServer/IdentityServer4.Quickstart.UI,IdentityServer/IdentityServer4.Quickstart.UI,IdentityServer/IdentityServer4.Quickstart.UI,IdentityServer/IdentityServer4.Quickstart.UI | Quickstart/Account/AccountOptions.cs | Quickstart/Account/AccountOptions.cs | // Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
using System;
namespace IdentityServer4.Quickstart.UI
{
public class AccountOptions
{
public static bool AllowLocalLogin = t... | // Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
using System;
namespace IdentityServer4.Quickstart.UI
{
public class AccountOptions
{
public static bool AllowLocalLogin = t... | apache-2.0 | C# |
50d005ca0961871be161efa7b7e8b4a3724adfad | Improve Cake Bakery resolver | OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,DustinCampbell/omnisharp-roslyn,DustinCampbell/omnisharp-roslyn | src/OmniSharp.Cake/Services/ScriptGenerationToolResolver.cs | src/OmniSharp.Cake/Services/ScriptGenerationToolResolver.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using OmniSharp.Cake.Configuration;
using OmniSharp.Utilities;
namespace OmniSharp.Cake.Services
{
internal static class ScriptGenerationToolResolver
{
public static string GetExecutablePath(string rootPath, ICakeConfi... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using OmniSharp.Cake.Configuration;
namespace OmniSharp.Cake.Services
{
internal static class ScriptGenerationToolResolver
{
public static string GetExecutablePath(string rootPath,... | mit | C# |
d230ba56259aa60bfb0e7473d50c5ad0a704b8dd | Fix get so tests now work. | peteri/ClassicBasic | ClassicBasic.Interpreter/Commands/Get.cs | ClassicBasic.Interpreter/Commands/Get.cs | // <copyright file="Get.cs" company="Peter Ibbotson">
// (C) Copyright 2017 Peter Ibbotson
// </copyright>
namespace ClassicBasic.Interpreter.Commands
{
/// <summary>
/// Implements the GET command.
/// </summary>
public class Get : Token, ICommand
{
private readonly IRunEnvironment _runEnvironme... | // <copyright file="Get.cs" company="Peter Ibbotson">
// (C) Copyright 2017 Peter Ibbotson
// </copyright>
namespace ClassicBasic.Interpreter.Commands
{
/// <summary>
/// Implements the GET command.
/// </summary>
public class Get : Token, ICommand
{
private readonly IRunEnvironment _runEn... | mit | C# |
c5b07b0c4caab19afb3759de0ea8af9c9aa8ca0b | Prepare for removal | whampson/bft-spec,whampson/cascara | Src/WHampson.Cascara/TemplateFile.cs | Src/WHampson.Cascara/TemplateFile.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, ... | #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# |
d412c73f9b2bd60df04a8141fe59e331e5a0eb13 | Add owners to AzureFirewall tests | ClogenyTechnologies/azure-powershell,AzureAutomationTeam/azure-powershell,AzureAutomationTeam/azure-powershell,AzureAutomationTeam/azure-powershell,ClogenyTechnologies/azure-powershell,AzureAutomationTeam/azure-powershell,ClogenyTechnologies/azure-powershell,AzureAutomationTeam/azure-powershell,AzureAutomationTeam/azur... | src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/AzureFirewallTests.cs | src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/AzureFirewallTests.cs | // ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// 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.apa... | // ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// 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.apa... | apache-2.0 | C# |
2319871d86b95237a921b822beca25b91c969913 | Add language list to Kh2.Constants | Xeeynamo/KingdomHearts | OpenKh.Kh2/Constants.cs | OpenKh.Kh2/Constants.cs | namespace OpenKh.Kh2
{
public enum World
{
WorldZz,
EndOfSea,
TwilightTown,
DestinyIsland,
HollowBastion,
BeastCastle,
TheUnderworld,
Agrabah,
LandOfDragons,
HundredAcreWood,
PrideLands,
Atlantica,
DisneyCas... | namespace OpenKh.Kh2
{
public enum World
{
WorldZz,
EndOfSea,
TwilightTown,
DestinyIsland,
HollowBastion,
BeastCastle,
TheUnderworld,
Agrabah,
LandOfDragons,
HundredAcreWood,
PrideLands,
Atlantica,
DisneyCas... | mit | C# |
02a1e683654ec8a93afc799a23231c3570734f1b | Fix null ref in new DefaultManualInjectionStrategy | HelloKitty/SceneJect,HelloKitty/SceneJect | src/SceneJect.Common/Services/DefaultManualInjectionStrategy.cs | src/SceneJect.Common/Services/DefaultManualInjectionStrategy.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autofac;
using JetBrains.Annotations;
using SceneJect.Common;
using UnityEngine;
namespace SceneJect
{
public sealed class DefaultManualInjectionStrategy : IManualInjectionStrategy
{
/// <summ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autofac;
using JetBrains.Annotations;
using SceneJect.Common;
using UnityEngine;
namespace SceneJect
{
public sealed class DefaultManualInjectionStrategy : IManualInjectionStrategy
{
/// <summ... | mit | C# |
e448f39856458596f54c448e092ec56fb4fce3d4 | Update Program.cs | mansoor-omrani/AssemblyInfo | AssemblyInfo/Program.cs | AssemblyInfo/Program.cs | using System;
using System.Reflection;
namespace AssemblyInfo
{
public class Program
{
public static void Main(string[] args)
{
if (args != null && args.Length > 0)
{
Assembly asm = null;
var name = args[0];
try
... | using System;
using System.Reflection;
namespace AssemblyInfo
{
class Program
{
static void Main(string[] args)
{
if (args != null && args.Length > 0)
{
Assembly asm = null;
var name = args[0];
try
{
... | mit | C# |
b5d5de3ed59860973faa0dc7a389837b243f0b96 | Work around empty calendar stores, fixes #10165 | labdogg1003/monotouch-samples,davidrynn/monotouch-samples,YOTOV-LIMITED/monotouch-samples,markradacz/monotouch-samples,kingyond/monotouch-samples,peteryule/monotouch-samples,davidrynn/monotouch-samples,YOTOV-LIMITED/monotouch-samples,labdogg1003/monotouch-samples,peteryule/monotouch-samples,xamarin/monotouch-samples,sa... | Calendars/Calendars/Screens/EventList/EventListController.cs | Calendars/Calendars/Screens/EventList/EventListController.cs | using System;
using System.Linq;
using System.Collections.Generic;
using MonoTouch.UIKit;
using MonoTouch.Dialog;
using MonoTouch.Foundation;
using MonoTouch.EventKit;
namespace Calendars.Screens.EventList
{
public class EventListController : DialogViewController
{
// our roote element for MonoTouch.Dialog
prote... | using System;
using System.Linq;
using System.Collections.Generic;
using MonoTouch.UIKit;
using MonoTouch.Dialog;
using MonoTouch.Foundation;
using MonoTouch.EventKit;
namespace Calendars.Screens.EventList
{
public class EventListController : DialogViewController
{
// our roote element for MonoTouch.Dialog
prote... | mit | C# |
9c2c7a644986bd49da50e82cbb9ec56d22705f89 | revise Initialize | mschray/CalendarHelper | shared/LogHelper.csx | shared/LogHelper.csx | public static class LogHelper
{
private static TraceWriter logger;
public static void Initialize(TraceWriter log)
{
if (logger == null) logger = log;
}
public static void Info(TraceWriter log, string logtext)
{
logger.Info(logtext);
}
public static void Error(TraceWr... | public static class LogHelper
{
private static TraceWriter logger;
public static void Initialize(TraceWriter log)
{
if (logger == null) logger = log;
}
public static void Info(TraceWriter log, string logtext)
{
logger.Info(logtext);
}
public static void Error(TraceW... | mit | C# |
664c6bd73ae0fb9cab2c925986856ac318b905bb | Add Count/Position props to byte[] code reader | 0xd4d/iced,0xd4d/iced,0xd4d/iced,0xd4d/iced,0xd4d/iced | Iced/Intel/ByteArrayCodeReader.cs | Iced/Intel/ByteArrayCodeReader.cs | /*
Copyright (C) 2018 de4dot@gmail.com
This file is part of Iced.
Iced 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 version 3 of the License, or
(at your option) any lat... | /*
Copyright (C) 2018 de4dot@gmail.com
This file is part of Iced.
Iced 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 version 3 of the License, or
(at your option) any lat... | mit | C# |
1f60752230d592aa7a23063f744801ca8eb0c22f | Debug Assertions | azure-contrib/netmfazurestorage | netmfazurestorage/Tests/QueueTests.cs | netmfazurestorage/Tests/QueueTests.cs | using System;
using Microsoft.SPOT;
using NetMf.CommonExtensions;
using netmfazurestorage.Account;
using netmfazurestorage.Queue;
namespace netmfazurestorage.Tests
{
public class QueueTests
{
private QueueClient _queueClient;
public QueueTests(string accountName, string accountKey)
{
... | using System;
using Microsoft.SPOT;
using NetMf.CommonExtensions;
using netmfazurestorage.Account;
using netmfazurestorage.Queue;
namespace netmfazurestorage.Tests
{
public class QueueTests
{
private QueueClient _queueClient;
public QueueTests(string accountName, string accountKey)
{
... | apache-2.0 | C# |
f25ea9fe0ef80f547136df434e1ff8d1dde76432 | Set neutral language to English | freenet/wintray,freenet/wintray | Properties/AssemblyInfo.cs | Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[ass... | using System.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("Fr... | mit | C# |
615fe0e6b6f4c087fe89a168601d3d5fb004f178 | Add function to get start of season | MoyTW/MTW_AncestorSpirits | Source/MTW_AncestorSpirits/AncestorUtils.cs | Source/MTW_AncestorSpirits/AncestorUtils.cs | using Verse;
using RimWorld;
using UnityEngine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MTW_AncestorSpirits
{
public static class AncestorUtils
{
public static int DaysToTicks(float days)
{
return Mathf.RoundToInt(days * GenD... | using RimWorld;
using UnityEngine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MTW_AncestorSpirits
{
public static class AncestorUtils
{
public static int DaysToTicks(float days)
{
return Mathf.RoundToInt(days * GenDate.TicksPerD... | mit | C# |
c990ce4154913172aba04df8b2f810b502f3e7b1 | Change event count type | bwatts/Totem,bwatts/Totem | Source/Totem.Runtime/Timeline/ResumeInfo.cs | Source/Totem.Runtime/Timeline/ResumeInfo.cs | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace Totem.Runtime.Timeline
{
/// <summary>
/// A series of points with which to resume the timeline
/// </summary>
public class ResumeInfo : Notion, IEnumerable<ResumeInfo.Batch>
{
readonly IEnumerable<Batch> _... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace Totem.Runtime.Timeline
{
/// <summary>
/// A series of points with which to resume the timeline
/// </summary>
public class ResumeInfo : Notion, IEnumerable<ResumeInfo.Batch>
{
readonly IEnumerable<Batch> _... | mit | C# |
a5c7ef9debba0817c99f7c297c01118ab7a02e6e | Fix menu button backend invoke | akrisiun/xwt,sevoku/xwt,cra0zy/xwt,hamekoz/xwt,TheBrainTech/xwt,antmicro/xwt,mminns/xwt,lytico/xwt,directhex/xwt,hwthomas/xwt,mono/xwt,steffenWi/xwt,mminns/xwt,residuum/xwt,iainx/xwt | Xwt.WPF/Xwt.WPFBackend/MenuButtonBackend.cs | Xwt.WPF/Xwt.WPFBackend/MenuButtonBackend.cs | //
// MenuButtonBackend.cs
//
// Author:
// Eric Maupin <ermau@xamarin.com>
//
// Copyright (c) 2012 Xamarin, Inc.
//
// 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 restric... | //
// MenuButtonBackend.cs
//
// Author:
// Eric Maupin <ermau@xamarin.com>
//
// Copyright (c) 2012 Xamarin, Inc.
//
// 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 restric... | mit | C# |
d4326edca7061d1b78ea046bd778e3da027a1061 | Change dominant animation | Endure-Game/Endure | Assets/Scripts/PlayerController.cs | Assets/Scripts/PlayerController.cs | using UnityEngine;
using System.Collections;
public class PlayerController : MonoBehaviour {
public float speed = 4;
public static PlayerController instance;
private int counter = 0;
private Rigidbody2D rb2d;
private Animator animator;
// Use this for initialization
void Start () {
this.rb2d = this.GetCo... | using UnityEngine;
using System.Collections;
public class PlayerController : MonoBehaviour {
public float speed = 4;
public static PlayerController instance;
private int counter = 0;
private Rigidbody2D rb2d;
private Animator animator;
// Use this for initialization
void Start () {
this.rb2d = this.GetCo... | mit | C# |
ef0190d218db34f39e0104a6516590ede5188ea9 | add GC.Collect() call | Deliay/osuSync,Deliay/Sync | Sync/Program.cs | Sync/Program.cs | using Sync.Command;
using Sync.MessageFilter;
using Sync.Plugins;
using Sync.Source;
using Sync.Tools;
using System;
using System.Diagnostics;
using static Sync.Tools.IO;
namespace Sync
{
static class Program
{
public static SyncHost host;
static void Sync()
{
using (host... | using Sync.Command;
using Sync.MessageFilter;
using Sync.Plugins;
using Sync.Source;
using Sync.Tools;
using System;
using System.Diagnostics;
using static Sync.Tools.IO;
namespace Sync
{
static class Program
{
public static SyncHost host;
static void Main(string[] args)
{
... | mit | C# |
71589ce81b63ba260e33fb7ee919e40c42509ddd | Support debugging executing addin if config flag IsDebug enabled | NickRusinov/CodeContracts.Fody | CodeContracts.Fody/ModuleWeaver.cs | CodeContracts.Fody/ModuleWeaver.cs | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.Contracts;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
using CodeContracts.Fody.Configurations;
using Mono.Cecil;
using TinyIoC;
using static System.StringComparer;
namespa... | using System;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
using CodeContracts.Fody.Configurations;
using Mono.Cecil;
using TinyIoC;
namespace CodeContracts.Fody
{
/// <summary>
/// Fody weaver ... | mit | C# |
cedd703faad81a8462b3e4353a1545de8fe01a49 | Fix TryReadProblemJson: ensure problem json could be read and an object was created | bluehands/WebApiHypermediaExtensions,bluehands/WebApiHypermediaExtensions | Source/Hypermedia.Client/Reader/ProblemJson/ProblemJsonReader.cs | Source/Hypermedia.Client/Reader/ProblemJson/ProblemJsonReader.cs | namespace Hypermedia.Client.Reader.ProblemJson
{
using System;
using System.Net.Http;
using global::Hypermedia.Client.Exceptions;
using global::Hypermedia.Client.Resolver;
using Newtonsoft.Json;
public static class ProblemJsonReader
{
public static bool TryReadProblemJson(HttpRes... | namespace Hypermedia.Client.Reader.ProblemJson
{
using System;
using System.Net.Http;
using global::Hypermedia.Client.Exceptions;
using global::Hypermedia.Client.Resolver;
using Newtonsoft.Json;
public static class ProblemJsonReader
{
public static bool TryReadProblemJson(HttpRes... | mit | C# |
b0ac65e9fa4d3b0461b9a104afad121f615cad12 | Remove unused projectiles array and cleaner bullet transform instantiation | ratenbuuren/ProjectBeard,ratenbuuren/ProjectBeard,ratenbuuren/ProjectBeard | Assets/Scripts/TankController.cs | Assets/Scripts/TankController.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TankController : MonoBehaviour {
public GameObject projectilePrefab;
private Rigidbody2D rigidbody2D;
public float power = 3;
public float turnpower = 2;
public float friction = 3;
void Start()
{
rigidbody2D = Get... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TankController : MonoBehaviour {
public GameObject projectilePrefab;
private Rigidbody2D rigidbody2D;
private List<GameObject> projectiles = new List<GameObject> ();
public float power = 3;
public float turnpower = 2;
... | mit | C# |
e04cac556c568d7b94d9102a0dc9b5c274f3503c | fix rendering script | NataliaDSmirnova/CGAdvanced2017 | Assets/Scripts/RenderObject.cs | Assets/Scripts/RenderObject.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class RenderObject : MonoBehaviour {
// input object
public GameObject renderObject;
public Camera mainCamera;
// private variables
private RenderTexture renderTexture;
private RawImage... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class RenderObject : MonoBehaviour {
// input object
public GameObject renderObject;
public Camera mainCamera;
// private variables
private RenderTexture renderTexture;
private RawImage... | mit | C# |
d7d786f60c4490ddc72ca4ad0ad67cb3fa51a98c | Add error message on exception | pleonex/deblocus,pleonex/deblocus | Deblocus/Program.cs | Deblocus/Program.cs | //
// Program.cs
//
// Author:
// Benito Palacios Sánchez (aka pleonex) <benito356@gmail.com>
//
// Copyright (c) 2015 Benito Palacios Sánchez (c) 2015
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the F... | //
// Program.cs
//
// Author:
// Benito Palacios Sánchez (aka pleonex) <benito356@gmail.com>
//
// Copyright (c) 2015 Benito Palacios Sánchez (c) 2015
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the F... | agpl-3.0 | C# |
63634de49847d958797636a59529df225ffc0abb | Use NuGetFramework API | NuGetPackageExplorer/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer | Core/Packages/PackageFileBase.cs | Core/Packages/PackageFileBase.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.Versioning;
using NuGet.Frameworks;
using NuGet.Packaging;
namespace NuGetPe
{
public abstract class PackageFileBase : IPackageFile
{
protected PackageFileBase(string path)
{
Path = path;
... | using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.Versioning;
using NuGet.Frameworks;
using NuGet.Packaging;
namespace NuGetPe
{
public abstract class PackageFileBase : IPackageFile
{
protected PackageFileBase(string path)
{
Path = path;
... | mit | C# |
0b35695dbd935dcb924527283edcd0ca8e3db7f9 | Order response from most swears to least | mmbot/mmbot.scripts | scripts/Fun/Swearjar.csx | scripts/Fun/Swearjar.csx | /**
* <description>
* Monitors for swearing
* </description>
*
* <configuration>
*
* </configuration>
*
* <commands>
* mmbot swearjar - shows the swear stats of users
* </commands>
*
* <author>
* dkarzon
* </author>
*/
var robot = Require<Robot>();
robot.Respond("swearjar", msg =>
{
var swearBrain =... | /**
* <description>
* Monitors for swearing
* </description>
*
* <configuration>
*
* </configuration>
*
* <commands>
* mmbot swearjar - shows the swear stats of users
* </commands>
*
* <author>
* dkarzon
* </author>
*/
var robot = Require<Robot>();
robot.Respond("swearjar", msg =>
{
var swearBrain =... | apache-2.0 | C# |
59d7e68fd9a8950b5ad99ceb2c2126af3bf75f4c | Bump version to 2.0.1 | Codesleuth/esendex-dotnet-sdk | source/Properties/AssemblyInfo.cs | source/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: Assembly... | 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: Assembly... | bsd-3-clause | C# |
54270536e827f2924c5558ba08ff120c2ba45e32 | remove unused code | kreeben/resin,kreeben/resin | src/Sir.Store/Hit.cs | src/Sir.Store/Hit.cs | using System.Collections.Generic;
using System.Linq;
namespace Sir.Store
{
public class Hit
{
public SortedList<int, byte> Embedding { get; set; }
public float Score { get; set; }
public IList<long> PostingsOffsets { get; set; }
public long NodeId { get; set; }
public I... | using System.Collections.Generic;
using System.Linq;
namespace Sir.Store
{
public class Hit
{
public SortedList<int, byte> Embedding { get; set; }
public float Score { get; set; }
public IList<long> PostingsOffsets { get; set; }
public long NodeId { get; set; }
public I... | mit | C# |
79805c98f897711b74390281e74d26fc47bf9971 | Remove white lines | Seddryck/NBi,Seddryck/NBi | NBi.Xml/Constraints/ExistsXml.cs | NBi.Xml/Constraints/ExistsXml.cs | using System.Xml.Serialization;
namespace NBi.Xml.Constraints
{
public class ExistsXml : AbstractConstraintXml
{
[XmlAttribute("ignore-case")]
public bool IgnoreCase { get; set; }
}
}
| using System.Xml.Serialization;
namespace NBi.Xml.Constraints
{
public class ExistsXml : AbstractConstraintXml
{
[XmlAttribute("ignore-case")]
public bool IgnoreCase { get; set; }
}
}
| apache-2.0 | C# |
199300be1d7b565ea174562ff778fa7d46837ae7 | Increase client version to 1.4.2.3 | jvalladolid/recurly-client-net | Library/Properties/AssemblyInfo.cs | Library/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("Re... | 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("Re... | mit | C# |
d7d3c4f4923bdb181a48dd001be0a6cb26926d15 | prepare for 1.3.0 release | yagyemang/im-only-resting,krishnarajnairmk/im-only-resting,krishnarajnairmk/im-only-resting,yagyemang/im-only-resting,yhtsnda/im-only-resting,yagyemang/im-only-resting,krishnarajnairmk/im-only-resting,ikazuaki/im-only-resting,yhtsnda/im-only-resting,yhtsnda/im-only-resting,ikazuaki/im-only-resting,ikazuaki/im-only-rest... | Ior/Properties/AssemblyInfo.cs | Ior/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("I'm Only Resting")]
[assembly: Ass... | 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("I'm Only Resting")]
[assembly: Ass... | apache-2.0 | C# |
88e66860a6c3131f0a012e5f3a9fa80ca3c55ff1 | update command sample to use CommandExecuted, Log | RogueException/Discord.Net,AntiTcb/Discord.Net | samples/02_commands_framework/Services/CommandHandlingService.cs | samples/02_commands_framework/Services/CommandHandlingService.cs | using System;
using System.Reflection;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using Discord;
using Discord.Commands;
using Discord.WebSocket;
namespace _02_commands_framework.Services
{
public class CommandHandlingService
{
private readonly CommandService _command... | using System;
using System.Reflection;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using Discord;
using Discord.Commands;
using Discord.WebSocket;
namespace _02_commands_framework.Services
{
public class CommandHandlingService
{
private readonly CommandService _command... | mit | C# |
01e26b8719a4ac5aa8b203b699f795cc04a80eb1 | Add interface to build compatible classes (read: viewmodels) | roman-yagodin/R7.University,roman-yagodin/R7.University,roman-yagodin/R7.University | R7.University/Models/EduProgramProfileFormInfo.cs | R7.University/Models/EduProgramProfileFormInfo.cs | //
// EduProgramProfileForm.cs
//
// Author:
// Roman M. Yagodin <roman.yagodin@gmail.com>
//
// Copyright (c) 2015 Roman M. Yagodin
//
// 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 Softwa... | //
// EduProgramProfileForm.cs
//
// Author:
// Roman M. Yagodin <roman.yagodin@gmail.com>
//
// Copyright (c) 2015 Roman M. Yagodin
//
// 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 Softwa... | agpl-3.0 | C# |
e2962f7899ddde38cc5cef1068868e60d071335f | Revert "Updated name." | tphx/StreamChatSharp | StreamChatSharp/StreamChatSharp/ConnectionData.cs | StreamChatSharp/StreamChatSharp/ConnectionData.cs | // The MIT License (MIT)
//
// Copyright (c) 2014 TPHX
//
// 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, modi... | // The MIT License (MIT)
//
// Copyright (c) 2014 TPHX
//
// 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, modi... | mit | C# |
f7b987bc9f0190f8ea29aeab3a3582ff1db0461d | Update DotNetXmlDeserializer.cs | tiksn/TIKSN-Framework | TIKSN.Core/Serialization/DotNetXmlDeserializer.cs | TIKSN.Core/Serialization/DotNetXmlDeserializer.cs | using System.IO;
using System.Text;
using System.Xml.Serialization;
namespace TIKSN.Serialization
{
public class DotNetXmlDeserializer : DeserializerBase<string>
{
protected override T DeserializeInternal<T>(string serial)
{
if (string.IsNullOrEmpty(serial))
{
... | using System.IO;
using System.Text;
using System.Xml.Serialization;
namespace TIKSN.Serialization
{
public class DotNetXmlDeserializer : DeserializerBase<string>
{
protected override T DeserializeInternal<T>(string serial)
{
if (string.IsNullOrEmpty(serial))
{
... | mit | C# |
4fba6389e22bdfaf8481fe05c53ef20516ee7275 | Fix spelling mistake. | IvionSauce/MeidoBot | MinimalistParsers/MediaDispatch.cs | MinimalistParsers/MediaDispatch.cs | using System;
using System.IO;
namespace MinimalistParsers
{
public static class MediaDispatch
{
static Func<Stream, MediaProperties>[] mediaDispatch;
static MediaDispatch()
{
mediaDispatch = new Func<Stream, MediaProperties>[]
{
Png.Parse,
... | using System;
using System.IO;
namespace MinimalistParsers
{
public static class MediaDispatch
{
static Func<Stream, MediaProperties>[] mediaDispatch;
static MediaDispatch()
{
mediaDispatch = new Func<Stream, MediaProperties>[]
{
Png.Parse,
... | bsd-2-clause | C# |
5392acf35aa62c5b03fa6e9ebddb87b7be8da2ed | rename argument from value to valueProvider | cvent/Metrics.NET,etishor/Metrics.NET,huoxudong125/Metrics.NET,DeonHeyns/Metrics.NET,Recognos/Metrics.NET,MetaG8/Metrics.NET,huoxudong125/Metrics.NET,alhardy/Metrics.NET,ntent-ad/Metrics.NET,alhardy/Metrics.NET,ntent-ad/Metrics.NET,Liwoj/Metrics.NET,MetaG8/Metrics.NET,Recognos/Metrics.NET,cvent/Metrics.NET,DeonHeyns/Me... | Src/Metrics/MetricValueSource.cs | Src/Metrics/MetricValueSource.cs |
namespace Metrics
{
/// <summary>
/// Indicates the ability to provide the value for a metric.
/// This is the raw value. Consumers should use <see cref="MetricValueSource{T}"/>
/// </summary>
/// <typeparam name="T">Type of the value returned by the metric</typeparam>
public interface MetricV... |
namespace Metrics
{
/// <summary>
/// Indicates the ability to provide the value for a metric.
/// This is the raw value. Consumers should use <see cref="MetricValueSource{T}"/>
/// </summary>
/// <typeparam name="T">Type of the value returned by the metric</typeparam>
public interface MetricV... | apache-2.0 | C# |
af4fd31750394dba96835f3f32d98909abdaae59 | Set correct version | TheSylence/Twice | Twice/Properties/AssemblyInfo.cs | Twice/Properties/AssemblyInfo.cs | using Anotar.NLog;
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
[assembly: AssemblyTitle( "Twice" )]
[assembly: AssemblyDescription( "Twitter Client for Windows" )]
[assembly: AssemblyConfiguration( "" )]
[assembly: AssemblyC... | using Anotar.NLog;
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
[assembly: AssemblyTitle( "Twice" )]
[assembly: AssemblyDescription( "Twitter Client for Windows" )]
[assembly: AssemblyConfiguration( "" )]
[assembly: AssemblyC... | mit | C# |
d46ee65d20fe026afb69aba01dbd4c3798743859 | Fix non RBGA32 PNGs decoding incorrectly on iOS | EVAST9919/osu-framework,peppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,peppy/osu-framework | osu.Framework.iOS/Graphics/Textures/IOSTextureLoaderStore.cs | osu.Framework.iOS/Graphics/Textures/IOSTextureLoaderStore.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 System.Runtime.InteropServices;
using CoreGraphics;
using Foundation;
using osu.Framework.Graphics.Textures;
using osu.Framework.IO.S... | // 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 System.Runtime.InteropServices;
using CoreGraphics;
using Foundation;
using osu.Framework.Graphics.Textures;
using osu.Framework.IO.S... | mit | C# |
f9504118a5ab6b5d6060520d997fea5f72a808a2 | Remove using. | Nabile-Rahmani/osu-framework,Tom94/osu-framework,ZLima12/osu-framework,default0/osu-framework,RedNesto/osu-framework,peppy/osu-framework,DrabWeb/osu-framework,DrabWeb/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,RedNesto/osu-framework,default0/osu-framework,ppy/osu-framework,peppy/osu-framework,Nabile-R... | osu.Framework/Graphics/Containers/CircularMaskedContainer.cs | osu.Framework/Graphics/Containers/CircularMaskedContainer.cs | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using System;
namespace osu.Framework.Graphics.Containers
{
/// <summary>
/// A container which is rounded (via automatic corner-radius) on t... | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using System;
using System.Diagnostics;
namespace osu.Framework.Graphics.Containers
{
/// <summary>
/// A container which is rounded (via au... | mit | C# |
ec3b974ab51f8043c7c8dd4b5954c13a32fbd1c9 | Add GetMemberValue and GetMemberValueOrNull | nuke-build/nuke,nuke-build/nuke,nuke-build/nuke,nuke-build/nuke | source/Nuke.Common/ValueInjection/ValueInjectionAttributeBase.cs | source/Nuke.Common/ValueInjection/ValueInjectionAttributeBase.cs | // Copyright 2019 Maintainers of NUKE.
// Distributed under the MIT License.
// https://github.com/nuke-build/nuke/blob/master/LICENSE
using System;
using System.Linq;
using System.Reflection;
using JetBrains.Annotations;
using Nuke.Common.Utilities;
using Nuke.Common.Utilities.Collections;
namespace Nuke.Common.Valu... | // Copyright 2019 Maintainers of NUKE.
// Distributed under the MIT License.
// https://github.com/nuke-build/nuke/blob/master/LICENSE
using System;
using System.Linq;
using System.Reflection;
using JetBrains.Annotations;
namespace Nuke.Common.ValueInjection
{
[PublicAPI]
[AttributeUsage(AttributeTargets.Fiel... | mit | C# |
8b75a6186e46926e4105a91b49e9a6663b118c39 | change alert span back to i temporarily | smbc-digital/iag-webapp,smbc-digital/iag-webapp,smbc-digital/iag-webapp | src/StockportWebapp/Views/stockportgov/Shared/GlobalAlert.cshtml | src/StockportWebapp/Views/stockportgov/Shared/GlobalAlert.cshtml | @using StockportWebapp.Models
@using StockportWebapp.Utils
@inject ICookiesHelper CookiesHelper
@model Alert
@{
var alertCookies = CookiesHelper.GetCookies<Alert>("alerts");
var isDismissed = alertCookies != null && alertCookies.Contains(Model.Slug) && !Model.IsStatic;
}
@if (!isDismissed)
{
<div class="... | @using StockportWebapp.Models
@using StockportWebapp.Utils
@inject ICookiesHelper CookiesHelper
@model Alert
@{
var alertCookies = CookiesHelper.GetCookies<Alert>("alerts");
var isDismissed = alertCookies != null && alertCookies.Contains(Model.Slug) && !Model.IsStatic;
}
@if (!isDismissed)
{
<div class="... | mit | C# |
dc36ba92958c138dbbba1cdc9fb44986c43d02e4 | update the directory helper to preference the custom app data folder instead of the default location | cjmurph/PmsService,cjmurph/PmsService | PlexServiceCommon/PlexDirHelper.cs | PlexServiceCommon/PlexDirHelper.cs | using System;
using System.IO;
using Microsoft.Win32;
namespace PlexServiceCommon {
public static class PlexDirHelper {
/// <summary>
/// Returns the full path and filename of the plex media server executable
/// </summary>
/// <returns></returns>
public static string GetPlexDataDir()
{
//set appDataFo... | using System;
using System.IO;
using Microsoft.Win32;
namespace PlexServiceCommon {
public static class PlexDirHelper {
/// <summary>
/// Returns the full path and filename of the plex media server executable
/// </summary>
/// <returns></returns>
public static string GetPlexDataDir()
{
var result = En... | mit | C# |
8a83a22ff82c32ca1df47b9f725f9f403154ee1c | make console player a bit user friendly. | atsushieno/managed-midi | tools/managed-midi-player-console/managed-midi-player-console.cs | tools/managed-midi-player-console/managed-midi-player-console.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading;
using Commons.Music.Midi;
using PortMidiSharp;
using Timer = System.Timers.Timer;
namespace Commons.Music.Midi.Player
{
public class Driver
{
static void ShowHelp ()
{
Console.WriteLine (@"
managed-midi... | using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading;
using Commons.Music.Midi;
using PortMidiSharp;
using Timer = System.Timers.Timer;
namespace Commons.Music.Midi.Player
{
public class Driver
{
public static void Main (string [] args)
{
int outdev = Midi... | mit | C# |
0d00e61f4184726542d15d6b22b82ed69bf14cb3 | Add PTypeError subclass of JsonErrorInfo for type errors. | PenguinF/sandra-three | Sandra.UI.WF/Storage/PTypeError.cs | Sandra.UI.WF/Storage/PTypeError.cs | #region License
/*********************************************************************************
* PTypeError.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 may ... | #region License
/*********************************************************************************
* PTypeError.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 may ... | apache-2.0 | C# |
41a8ad6df8f0e12d676dee05eb14248df83b5162 | modify model type in view | OlegKleyman/AlphaDev,OlegKleyman/AlphaDev,OlegKleyman/AlphaDev | web/AlphaDev.Web/Views/Posts/Create.cshtml | web/AlphaDev.Web/Views/Posts/Create.cshtml | @model AlphaDev.Web.Models.CreatePostViewModel
@{
ViewBag.Title = "Create Post";
}
@section styles
{
<link href="~/lib/bootstrap-markdown/css/bootstrap-markdown.min.css" rel="stylesheet" />
}
<h1 class="text-center">Create Post</h1>
<form method="post">
<div class="col-lg-12">
<div>
<div... | @model AlphaDev.Web.Models.CreatePost
@{
ViewBag.Title = "Create Post";
}
@section styles
{
<link href="~/lib/bootstrap-markdown/css/bootstrap-markdown.min.css" rel="stylesheet" />
}
<h1 class="text-center">Create Post</h1>
<form method="post">
<div class="col-lg-12">
<div>
<div>
... | unlicense | C# |
430682d336aa2bdfae74dcba36c8a3523bbad28a | Add Controls prop to Guitar model | michaelp0730/MichaelsMusic,michaelp0730/MichaelsMusic,michaelp0730/MichaelsMusic | MichaelsMusic/Models/Guitar.cs | MichaelsMusic/Models/Guitar.cs | namespace MichaelsMusic.Models
{
public class Guitar : Item
{
public bool CoilTap { get; set; }
public bool IsHardtail { get; set; }
public bool IsTopJack { get; set; }
public decimal ScaleLength { get; set; }
public int Frets { get; set; }
public int Strings { g... | namespace MichaelsMusic.Models
{
public class Guitar : Item
{
public bool CoilTap { get; set; }
public bool IsHardtail { get; set; }
public bool IsTopJack { get; set; }
public decimal ScaleLength { get; set; }
public int Frets { get; set; }
public int Strings { g... | mit | C# |
a35e11334b94c47c34c5dd5b40f83e0c94e1b8f2 | Refactor on MvbCollection | markjackmilian/MVB | Mvb/Mvb.Cross/MvbCollection.cs | Mvb/Mvb.Cross/MvbCollection.cs | using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Linq;
namespace Mvb.Cross
{
public class MvbCollection<T> : ObservableCollection<T>
{
public MvbCollection()
: base()
{}
... | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mvb.Cross
{
public class MvbCollection<T> : ObservableCollection<T>
{
p... | apache-2.0 | C# |
e969c60fa735fef879f0d566b81ffd4674ea3573 | Split protection type enumerations | magenta-aps/cprbroker,magenta-aps/cprbroker,magenta-aps/cprbroker,OS2CPRbroker/cprbroker,OS2CPRbroker/cprbroker | PART/Source/Core/Schemas/Intervals/DataTypeTags.cs | PART/Source/Core/Schemas/Intervals/DataTypeTags.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CprBroker.Schemas.Part
{
public enum DataTypeTags
{
None,
CivilStatus,
Separation,
Name,
Address,
Church,
NameAndAddressProtection,
Re... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CprBroker.Schemas.Part
{
public enum DataTypeTags
{
CivilStatus,
Separation,
Name,
Address,
Church,
Protection,
PNR,
Citizenship
... | mpl-2.0 | C# |
aca45a7d2675e8add54c2ce531f2d02ee62a1572 | add new types for requests | ucdavis/Purchasing,ucdavis/Purchasing,ucdavis/Purchasing | Purchasing.Web/Views/Order/_BusinessPurpose.cshtml | Purchasing.Web/Views/Order/_BusinessPurpose.cshtml | @model OrderModifyModel
<section>
<header class="ui-widget-header ui-corner-top">Business Purpose</header>
<div class="section-contents">
<div class="section-text">
<p>
Please enter your business purpose for placing this order request.
</p>
... | @model OrderModifyModel
<section>
<header class="ui-widget-header ui-corner-top">Business Purpose</header>
<div class="section-contents">
<div class="section-text">
<p>
Please enter your business purpose for placing this order request.
</p>
... | mit | C# |
b126808cb1a00671c48a5a6577dfd47224ebb435 | change title value | GusJassal/agri-nmp,GusJassal/agri-nmp,GusJassal/agri-nmp,GusJassal/agri-nmp | Server/src/SERVERAPI/Controllers/HomeController.cs | Server/src/SERVERAPI/Controllers/HomeController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.NodeServices;
namespace SERVERAPI.Controllers
{
public class JSONResponse
{
public string type;
public byte[] data;
}
public class... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.NodeServices;
namespace SERVERAPI.Controllers
{
public class JSONResponse
{
public string type;
public byte[] data;
}
public class... | apache-2.0 | C# |
0b00c67340a0be7c0713ec0bb978aa8efd88b3cc | add shadow step and death spiral precooldown | Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns | TCC.Core/ClassSpecific/ReaperAbnormalityTracker.cs | TCC.Core/ClassSpecific/ReaperAbnormalityTracker.cs | using TCC.Data;
using TCC.Parsing.Messages;
using TCC.ViewModels;
namespace TCC.ClassSpecific
{
public class ReaperAbnormalityTracker : ClassAbnormalityTracker
{
private const int ShadowReapingId = 10151010;
private const int ShadowStepId = 10151000;
private const int DeathSpiralId = 1... | using TCC.Parsing.Messages;
using TCC.ViewModels;
namespace TCC.ClassSpecific
{
public class ReaperAbnormalityTracker : ClassAbnormalityTracker
{
private const int ShadowReapingId = 10151010;
public override void CheckAbnormality(S_ABNORMALITY_BEGIN p)
{
if (p.TargetId != ... | mit | C# |
a185cffe7a5630f453ac6c6b9edcb7cc673b596c | Fix licenses | nizhikov/ignite,chandresh-pancholi/ignite,apache/ignite,andrey-kuznetsov/ignite,ascherbakoff/ignite,nizhikov/ignite,chandresh-pancholi/ignite,nizhikov/ignite,SomeFire/ignite,SomeFire/ignite,xtern/ignite,nizhikov/ignite,apache/ignite,NSAmelchev/ignite,andrey-kuznetsov/ignite,SomeFire/ignite,samaitra/ignite,xtern/ignite,... | modules/platforms/dotnet/Apache.Ignite.Core.Tests/DisposeAction.cs | modules/platforms/dotnet/Apache.Ignite.Core.Tests/DisposeAction.cs | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | /*
* Copyright 2019 GridGain Systems, Inc. and Contributors.
*
* Licensed under the GridGain Community Edition License (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.gridgain.com/products/software/community-edition... | apache-2.0 | C# |
b137fc7f1cd1881e9e1460d1114ca51ce7255396 | Fix spelling error. | bcjobs/infrastructure | IoC/Types.cs | IoC/Types.cs | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IoC
{
public abstract class Types : IEnumerable<Type>
{
public static Types Local { get; } = new AssemblyTypes(Assemblies.Local);
public stati... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IoC
{
public abstract class Types : IEnumerable<Type>
{
public static Types Local { get; } = new AssemblyTypes(Assemblies.Local);
public stati... | mit | C# |
0685b8fb69bd470e01a3e0d8cf0927527c2da82c | Update Palindrome-Checker.cs | DeanCabral/Code-Snippets | Console/Palindrome-Checker.cs | Console/Palindrome-Checker.cs | class Palindrome
{
static void Main(string[] args)
{
GetUserInput();
}
static void GetUserInput()
{
string input = "";
string output = "";
Console.Write("Enter a word: ");
input = Console.ReadLine();
in... | class Palindrome
{
static void Main(string[] args)
{
GetUserInput();
}
static void GetUserInput()
{
string input = "";
string output = "";
Console.Write("Enter a word: ");
input = Console.ReadLine();
in... | mit | C# |
8031e4874db385b2122f699930027637dd84f118 | Add doc comments for Author and Committer | shiftkey/octokit.net,shana/octokit.net,alfhenrik/octokit.net,ivandrofly/octokit.net,eriawan/octokit.net,octokit/octokit.net,hahmed/octokit.net,alfhenrik/octokit.net,thedillonb/octokit.net,M-Zuber/octokit.net,mminns/octokit.net,editor-tools/octokit.net,Sarmad93/octokit.net,rlugojr/octokit.net,octokit-net-test-org/octoki... | Octokit/Models/Response/GitHubCommit.cs | Octokit/Models/Response/GitHubCommit.cs | using System.Collections.Generic;
using System.Diagnostics;
namespace Octokit
{
/// <summary>
/// An enhanced git commit containing links to additional resources
/// </summary>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class GitHubCommit : GitReference
{
public GitHubCommit() { ... | using System.Collections.Generic;
using System.Diagnostics;
namespace Octokit
{
/// <summary>
/// An enhanced git commit containing links to additional resources
/// </summary>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class GitHubCommit : GitReference
{
public GitHubCommit() { ... | mit | C# |
1ccac7c9e48a776afa118a4d44ba5335a598fc83 | Check comment values in IniKeyValueTest | aloneguid/config | src/Config.Net.Tests/Stores/Formats/IniKeyValueTest.cs | src/Config.Net.Tests/Stores/Formats/IniKeyValueTest.cs | using Config.Net.Stores.Formats.Ini;
using Xunit;
namespace Config.Net.Tests.Stores.Formats
{
public class IniKeyValueTest
{
[Theory]
[InlineData("key=value", "key", "value", null)]
[InlineData("key=value;123", "key", "value", "123")]
[InlineData("key==value", "key", "=value", null)]
... | using Config.Net.Stores.Formats.Ini;
using Xunit;
namespace Config.Net.Tests.Stores.Formats
{
public class IniKeyValueTest
{
[Theory]
[InlineData("key=value", "key", "value")]
[InlineData("key=value;123", "key", "value")]
[InlineData("key==value", "key", "=value")]
[InlineData("key... | mit | C# |
a41886a86b451c08447b3c1610b8c504d48e1a31 | set default for now to get tests passing | IdentityServer/IdentityServer4.EntityFramework,IdentityServer/IdentityServer4.EntityFramework,IdentityServer/IdentityServer4.EntityFramework,IdentityServer/IdentityServer4.EntityFramework | src/IdentityServer4.EntityFramework/Entities/Client.cs | src/IdentityServer4.EntityFramework/Entities/Client.cs | // Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
using System.Collections.Generic;
using static IdentityServer4.IdentityServerConstants;
namespace IdentityServer4.EntityFramework.Entities
{... | // Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
using System.Collections.Generic;
namespace IdentityServer4.EntityFramework.Entities
{
public class Client
{
public int Id {... | apache-2.0 | C# |
94022e12b814a7d30b1b74257f7f10b53525a099 | Update version number | GibraltarSoftware/Gibraltar.Agent.EntityFramework | src/Agent.EntityFramework/Properties/AssemblyInfo.cs | src/Agent.EntityFramework/Properties/AssemblyInfo.cs | #region File Header and License
// /*
// AssemblyInfo.cs
// Copyright 2013 Gibraltar Software, 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:... | #region File Header and License
// /*
// AssemblyInfo.cs
// Copyright 2013 Gibraltar Software, 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:... | apache-2.0 | C# |
1680c646de4530c993af00fa9e37a086157d5dd3 | Fix region test | appharbor/appharbor-cli | src/AppHarbor.Tests/Commands/CreateAppCommandTest.cs | src/AppHarbor.Tests/Commands/CreateAppCommandTest.cs | using System.IO;
using System.Linq;
using AppHarbor.Commands;
using AppHarbor.Model;
using Moq;
using Ploeh.AutoFixture.Xunit;
using Xunit;
using Xunit.Extensions;
namespace AppHarbor.Tests.Commands
{
public class CreateAppCommandTest
{
[Theory, AutoCommandData]
public void ShouldThrowWhenNoArguments(CreateAppC... | using System.IO;
using System.Linq;
using AppHarbor.Commands;
using AppHarbor.Model;
using Moq;
using Ploeh.AutoFixture.Xunit;
using Xunit;
using Xunit.Extensions;
namespace AppHarbor.Tests.Commands
{
public class CreateAppCommandTest
{
[Theory, AutoCommandData]
public void ShouldThrowWhenNoArguments(CreateAppC... | mit | C# |
7ddadfd5464e8de508a457314a4c47e2cfdceb9f | Remove CornerRadius prop from MenuFlyoutPresenter | SuperJMN/Avalonia,AvaloniaUI/Avalonia,grokys/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,grokys/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia | src/Avalonia.Controls/Flyouts/MenuFlyoutPresenter.cs | src/Avalonia.Controls/Flyouts/MenuFlyoutPresenter.cs | using System;
using Avalonia.Controls.Generators;
using Avalonia.Controls.Platform;
using Avalonia.Controls.Primitives;
using Avalonia.LogicalTree;
namespace Avalonia.Controls
{
public class MenuFlyoutPresenter : MenuBase
{
public MenuFlyoutPresenter()
:base(new DefaultMenuInteractionHandl... | using System;
using Avalonia.Controls.Generators;
using Avalonia.Controls.Platform;
using Avalonia.Controls.Primitives;
using Avalonia.LogicalTree;
namespace Avalonia.Controls
{
public class MenuFlyoutPresenter : MenuBase
{
public static readonly StyledProperty<CornerRadius> CornerRadiusProperty =
... | mit | C# |
9f4fa7b2f98e8833fb244088c19af810ad3debfc | Fix race in VBCSCompiler test | wvdd007/roslyn,KirillOsenkov/roslyn,CyrusNajmabadi/roslyn,reaction1989/roslyn,eriawan/roslyn,AlekseyTs/roslyn,reaction1989/roslyn,eriawan/roslyn,tannergooding/roslyn,heejaechang/roslyn,tannergooding/roslyn,bartdesmet/roslyn,aelij/roslyn,AmadeusW/roslyn,weltkante/roslyn,shyamnamboodiripad/roslyn,wvdd007/roslyn,sharwell/... | src/Compilers/Server/VBCSCompilerTests/Extensions.cs | src/Compilers/Server/VBCSCompilerTests/Extensions.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using Syste... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using Syste... | mit | C# |
b5c3d7ed80971e8df3a72a7b8654453594a8fdf1 | add directories, which only contain the git repository | anyeloamt1/Bonobo-Git-Server,Webmine/Bonobo-Git-Server,forgetz/Bonobo-Git-Server,willdean/Bonobo-Git-Server,NipponSysits/IIS.Git-Connector,Monepi/Bonobo-Git-Server,forgetz/Bonobo-Git-Server,jiangzm/Bonobo-Git-Server,padremortius/Bonobo-Git-Server,Ollienator/Bonobo-Git-Server,Monepi/Bonobo-Git-Server,NipponSysits/IIS.Gi... | Bonobo.Git.Server/Data/Update/RepositorySynchronizer.cs | Bonobo.Git.Server/Data/Update/RepositorySynchronizer.cs | using Bonobo.Git.Server.Configuration;
using Bonobo.Git.Server.Models;
using LibGit2Sharp;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Web.Mvc;
namespace Bonobo.Git.Server.Data.Update
{
public class RepositorySynchronizer
{
IRepos... | using Bonobo.Git.Server.Configuration;
using Bonobo.Git.Server.Models;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Web.Mvc;
namespace Bonobo.Git.Server.Data.Update
{
public class RepositorySynchronizer
{
IRepositoryRepository _rep... | mit | C# |
34dea9c54c6f99c97f54649f4641af5e859d7fd8 | Fix StyleCop errors | kant2002/Dub | Dub/Dub.Web.Mvc/CordovaAuthenticationFilterAttribute.cs | Dub/Dub.Web.Mvc/CordovaAuthenticationFilterAttribute.cs | // -----------------------------------------------------------------------
// <copyright file="CordovaAuthenticationFilterAttribute.cs" company="Andrey Kurdiumov">
// Copyright (c) Andrey Kurdiumov. All rights reserved.
// </copyright>
// -----------------------------------------------------------------------
namespa... | namespace Dub.Web.Mvc
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web.Http.Controllers;
using System.Web.Http.Filters;
using Microsoft.Owin.Security.DataProtection;
/// <summary>
/// Authenti... | apache-2.0 | C# |
4176e35e316789b4b3659743a7bc4cfebe1adb5c | Resolve #617 -- Re-enable commented tests (#744) | LeagueSandbox/GameServer | GameServerLibTests/Tests/Chatbox/ChatboxManagerTests.cs | GameServerLibTests/Tests/Chatbox/ChatboxManagerTests.cs | using LeagueSandbox.GameServer;
using LeagueSandbox.GameServer.Chatbox;
using LeagueSandbox.GameServer.Content;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace LeagueSandbox.GameServerTests.Tests.Chatbox
{
[TestClass]
public class ChatboxManagerTests
{
private readonly Game _game = ne... | using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace LeagueSandbox.GameServerTests.Tests.Chatbox
{
[TestClass]
public class ChatboxManagerTests
{
[TestMethod]
public void AddCommandTest()
{
/*
var chatboxManager = _kernel.Get<ChatCommandManager>();
... | agpl-3.0 | C# |
bdc61e43b3dd976ebe193b7babb1576bb676af0d | Fix HideHoldOutPlugin.cs | Nogrod/Oxide-2,bawNg/Oxide,LaserHydra/Oxide,Nogrod/Oxide-2,bawNg/Oxide,Visagalis/Oxide,LaserHydra/Oxide,Visagalis/Oxide | Games/Unity/Oxide.Game.HideHoldOut/HideHoldOutPlugin.cs | Games/Unity/Oxide.Game.HideHoldOut/HideHoldOutPlugin.cs | using Oxide.Core;
using Oxide.Core.Plugins;
using Oxide.Game.HideHoldOut.Libraries;
namespace Oxide.Plugins
{
public abstract class HideHoldOutPlugin : CSharpPlugin
{
protected Command cmd;
protected HideHoldOut h2o;
public override void SetPluginInfo(string name, string path)
... | using Oxide.Core;
using Oxide.Game.HideHoldOut.Libraries;
namespace Oxide.Plugins
{
public abstract class HideHoldOutPlugin : CSharpPlugin
{
protected Command cmd;
protected HideHoldOut h2o;
public override void SetPluginInfo(string name, string path)
{
base.SetPl... | mit | C# |
255fc29f75e8dfc63f7bf51808b7fff92fbb84ec | Fix mono bug in the FontHelper class | ermshiperete/libpalaso,sillsdev/libpalaso,darcywong00/libpalaso,andrew-polk/libpalaso,gmartin7/libpalaso,mccarthyrb/libpalaso,andrew-polk/libpalaso,tombogle/libpalaso,glasseyes/libpalaso,hatton/libpalaso,gmartin7/libpalaso,gtryus/libpalaso,ermshiperete/libpalaso,mccarthyrb/libpalaso,mccarthyrb/libpalaso,sillsdev/libpal... | PalasoUIWindowsForms.Tests/FontTests/FontHelperTests.cs | PalasoUIWindowsForms.Tests/FontTests/FontHelperTests.cs | using System;
using System.Drawing;
using System.Linq;
using NUnit.Framework;
using Palaso.UI.WindowsForms;
namespace PalasoUIWindowsForms.Tests.FontTests
{
[TestFixture]
public class FontHelperTests
{
[SetUp]
public void SetUp()
{
// setup code goes here
}
[TearDown]
public void TearDown()
{
... | using System;
using System.Drawing;
using NUnit.Framework;
using Palaso.UI.WindowsForms;
namespace PalasoUIWindowsForms.Tests.FontTests
{
[TestFixture]
public class FontHelperTests
{
[SetUp]
public void SetUp()
{
// setup code goes here
}
[TearDown]
public void TearDown()
{
// tear down code ... | mit | C# |
adefb771ede1feb349cfb5240be7b5403c870d26 | add unique index from Name | AlejandroCano/extensions,signumsoftware/framework,signumsoftware/extensions,MehdyKarimpour/extensions,AlejandroCano/extensions,MehdyKarimpour/extensions,signumsoftware/framework,signumsoftware/extensions | Signum.Entities.Extensions/Dynamic/DynamicExpression.cs | Signum.Entities.Extensions/Dynamic/DynamicExpression.cs | using Signum.Entities;
using Signum.Entities.Basics;
using Signum.Utilities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace Signum.Entities.Dynamic
{
[Serializable, E... | using Signum.Entities;
using Signum.Entities.Basics;
using Signum.Utilities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace Signum.Entities.Dynamic
{
[Serializable, E... | mit | C# |
f080b9ed311b1fe948b81632ae9fc5177bb6ee2a | 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# |
5a88b31a1051c05552219f97659d485ed7d8fcc6 | Remove NET5_0 logic | carbon/Amazon | src/Amazon.S3/Helpers/HttpResponseMessageExtensions.cs | src/Amazon.S3/Helpers/HttpResponseMessageExtensions.cs | using System.Net.Http;
namespace Amazon.S3;
internal static class HttpResponseMessageExtensions
{
public static Dictionary<string, string> GetProperties(this HttpResponseMessage response)
{
var baseHeaders = response.Headers.NonValidated;
var contentHeaders = response.Content.Headers.NonValid... | using System.Collections.Generic;
using System.Net.Http;
namespace Amazon.S3
{
internal static class HttpResponseMessageExtensions
{
public static Dictionary<string, string> GetProperties(this HttpResponseMessage response)
{
#if NET5_0
var result = new Dictionary<string, string>(16... | mit | C# |
13b94c01eddaeb15873f7f353ae50e5b3f50d319 | Add check for HasException on test static_Reply_From__action | LeandroMBarreto/MlIB.Reply,LeandroMBarreto/lib-Reply | source/MlIB.Reply.Tests.Unit/Features/static_Reply_From__action.cs | source/MlIB.Reply.Tests.Unit/Features/static_Reply_From__action.cs | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace MlIB.Reply.Tests.Unit.Features
{
[TestClass]
public class static_Reply_From__action
{
// UNIT UNDER TEST:
// public static IReplyEx<Exception> From(Action action)
//I: action null
//O: NullReferen... | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace MlIB.Reply.Tests.Unit.Features
{
[TestClass]
public class static_Reply_From__action
{
// UNIT UNDER TEST:
// public static IReplyEx<Exception> From(Action action)
//I: action null
//O: NullReferen... | mit | C# |
46a5643f422920d435223e6aac2f3b0e6b71d9a6 | Fix blog picture | PioneerCode/pioneer-blog,PioneerCode/pioneer-blog,PioneerCode/pioneer-blog,PioneerCode/pioneer-blog | src/Pioneer.Blog/Views/Post/_FooterPopularPosts.cshtml | src/Pioneer.Blog/Views/Post/_FooterPopularPosts.cshtml | <section class="popular-posts">
@{var l = 0;}
@foreach (var post in ViewBag.PopularPosts)
{
if (l == 0 || l == 2 || l == 4)
{
@:<div class="row">
}
<div class="large-6 medium-6 columns content">
<div class="row">
<div class="large-6 columns">
<a href="/po... | <section class="popular-posts">
@{var l = 0;}
@foreach (var post in ViewBag.PopularPosts)
{
if (l == 0 || l == 2 || l == 4)
{
@:<div class="row">
}
<div class="large-6 medium-6 columns content">
<div class="row">
<div class="large-6 columns">
<a href="/po... | mit | C# |
d2d7b4dce7bb578eefbf078428f1ae0b34f33437 | Make `_typeReaderTypeInfo` static | RogueException/Discord.Net,LassieME/Discord.Net,AntiTcb/Discord.Net,Confruggy/Discord.Net | src/Discord.Net.Commands/Attributes/OverrideTypeReaderAttribute.cs | src/Discord.Net.Commands/Attributes/OverrideTypeReaderAttribute.cs | using System;
using System.Reflection;
namespace Discord.Commands
{
[AttributeUsage(AttributeTargets.Parameter)]
public class OverrideTypeReaderAttribute : Attribute
{
private static readonly TypeInfo _typeReaderTypeInfo = typeof(TypeReader).GetTypeInfo();
public Type TypeReader { get; }
... | using System;
using System.Reflection;
namespace Discord.Commands
{
[AttributeUsage(AttributeTargets.Parameter)]
public class OverrideTypeReaderAttribute : Attribute
{
private readonly TypeInfo _typeReaderTypeInfo = typeof(TypeReader).GetTypeInfo();
public Type TypeReader { get; }
... | mit | C# |
2c282682780910e88dd894dd511b525c390c32b2 | Use DriverConnectionProvider if a connection string or connection string name is specified. | nkreipke/nhibernate-core,lnu/nhibernate-core,nhibernate/nhibernate-core,gliljas/nhibernate-core,hazzik/nhibernate-core,fredericDelaporte/nhibernate-core,livioc/nhibernate-core,nhibernate/nhibernate-core,ManufacturingIntelligence/nhibernate-core,hazzik/nhibernate-core,nkreipke/nhibernate-core,nhibernate/nhibernate-core,... | src/NHibernate/Connection/ConnectionProviderFactory.cs | src/NHibernate/Connection/ConnectionProviderFactory.cs | using System;
using System.Collections;
using log4net;
using NHibernate.Util;
using Environment = NHibernate.Cfg.Environment;
namespace NHibernate.Connection
{
/// <summary>
/// Instanciates a connection provider given configuration properties.
/// </summary>
public sealed class ConnectionProviderFactory
{
pr... | using System;
using System.Collections;
using log4net;
using NHibernate.Util;
using Environment = NHibernate.Cfg.Environment;
namespace NHibernate.Connection
{
/// <summary>
/// Instanciates a connection provider given configuration properties.
/// </summary>
public sealed class ConnectionProviderFactory
{
pr... | lgpl-2.1 | C# |
ec59ace1ea217665de9ada352526f7c4c65f165b | Add LocationId to Locations Model | andrelmp/eShopOnContainers,albertodall/eShopOnContainers,dotnet-architecture/eShopOnContainers,productinfo/eShopOnContainers,andrelmp/eShopOnContainers,andrelmp/eShopOnContainers,productinfo/eShopOnContainers,TypeW/eShopOnContainers,dotnet-architecture/eShopOnContainers,productinfo/eShopOnContainers,skynode/eShopOnCont... | src/Services/Location/Locations.API/Model/Locations.cs | src/Services/Location/Locations.API/Model/Locations.cs | namespace Microsoft.eShopOnContainers.Services.Locations.API.Model
{
using MongoDB.Bson;
using MongoDB.Driver.GeoJsonObjectModel;
using System.Collections.Generic;
using MongoDB.Bson.Serialization.Attributes;
public class Locations
{
[BsonRepresentation(BsonType.ObjectId)]
publ... | namespace Microsoft.eShopOnContainers.Services.Locations.API.Model
{
using MongoDB.Bson;
using MongoDB.Driver.GeoJsonObjectModel;
using System.Collections.Generic;
using MongoDB.Bson.Serialization.Attributes;
public class Locations
{
[BsonRepresentation(BsonType.ObjectId)]
publ... | mit | C# |
19a186ae96f220e7cc7ceccbc62618ff91f37bfe | Remove trailing spaces from stamnummer. | Chirojeugd-Vlaanderen/gap,Chirojeugd-Vlaanderen/gap,Chirojeugd-Vlaanderen/gap | Solution/Chiro.Gap.Api/MappingHelper.cs | Solution/Chiro.Gap.Api/MappingHelper.cs | /*
* Copyright 2017 Chirojeugd-Vlaanderen vzw. See the NOTICE file at the
* top-level directory of this distribution, and at
* https://gapwiki.chiro.be/copyright
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obt... | /*
* Copyright 2017 Chirojeugd-Vlaanderen vzw. See the NOTICE file at the
* top-level directory of this distribution, and at
* https://gapwiki.chiro.be/copyright
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obt... | apache-2.0 | C# |
fdd06c58b1d1305e575699a8e3371d070904944f | Fix remove logging controller apiKey parameter | Ontica/Empiria.Extended | WebApi/Controllers/LoggingController.cs | WebApi/Controllers/LoggingController.cs | /* Empiria Extensions Framework ******************************************************************************
* *
* Module : Empiria Web Api Component : Base controllers ... | /* Empiria Extensions Framework ******************************************************************************
* *
* Solution : Empiria Extensions Framework System : Empiria Microservices ... | agpl-3.0 | C# |
c41eb3ba10ca08d7266a2cbf83cc3977c663af28 | Remove unused visibility flags | space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14-content,space-wizards/space-station-14 | Content.Server/GameObjects/VisibilityFlags.cs | Content.Server/GameObjects/VisibilityFlags.cs | using System;
namespace Content.Server.GameObjects
{
[Flags]
public enum VisibilityFlags
{
Ghost = 2,
}
}
| using System;
namespace Content.Server.GameObjects
{
[Flags]
public enum VisibilityFlags
{
None = 0,
Normal = 1,
Ghost = 2,
}
}
| mit | C# |
35c7118c02562e5ec618351f7859d44898dec31d | add localhost5000 to cors | MassDebaters/DebateApp,MassDebaters/DebateApp,MassDebaters/DebateApp | DebateAppDomain/DebateAppDomainAPI/Startup.cs | DebateAppDomain/DebateAppDomainAPI/Startup.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensio... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensio... | mit | C# |
9047888cee57b16ab9d5bda299123d46f5014404 | fix test | splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net | IPTables.Net.Tests/SingleMssRuleParseTests.cs | IPTables.Net.Tests/SingleMssRuleParseTests.cs | using System;
using IPTables.Net.Iptables;
using NUnit.Framework;
namespace IPTables.Net.Tests
{
[TestFixture]
internal class SingleMssRuleParseTests
{
[Test]
public void TestMssRange()
{
String rule = "-A INPUT -m tcpmss --set-mss 10:100 -j ACCEPT";
IpTable... | using System;
using IPTables.Net.Iptables;
using NUnit.Framework;
namespace IPTables.Net.Tests
{
[TestFixture]
internal class SingleMssRuleParseTests
{
[Test]
public void TestMssRange()
{
String rule = "-A INPUT -m tcpmss --mss 10:100 -j ACCEPT";
IpTablesCha... | apache-2.0 | C# |
2274bf1f10b70248ab249ffd92209a69a4952961 | Use local function to verify mimetype string. | TastesLikeTurkey/Papyrus | Papyrus/Papyrus/Extensions/EbookExtensions.cs | Papyrus/Papyrus/Extensions/EbookExtensions.cs | using System;
using System.Threading.Tasks;
using Windows.Storage;
namespace Papyrus
{
public static class EBookExtensions
{
public static async Task<bool> VerifyMimetypeAsync(this EBook ebook)
{
bool VerifyMimetypeString(string value) =>
value == "application/epub+... | using System;
using System.Threading.Tasks;
using Windows.Storage;
namespace Papyrus
{
public static class EBookExtensions
{
public static async Task<bool> VerifyMimetypeAsync(this EBook ebook)
{
var mimetypeFile = await ebook._rootFolder.GetItemAsync("mimetype");
if (... | mit | C# |
cd6b407740d7239a8e09ff07294cb51c5641eb2c | Undo change. | CaptainHayashi/roslyn,mavasani/roslyn,mavasani/roslyn,shyamnamboodiripad/roslyn,mavasani/roslyn,nguerrera/roslyn,amcasey/roslyn,CaptainHayashi/roslyn,CyrusNajmabadi/roslyn,KevinRansom/roslyn,eriawan/roslyn,bkoelman/roslyn,diryboy/roslyn,CaptainHayashi/roslyn,zooba/roslyn,ErikSchierboom/roslyn,DustinCampbell/roslyn,Alek... | src/Features/Core/Portable/AddPackage/AbstractAddSpecificPackageCodeFixProvider.cs | src/Features/Core/Portable/AddPackage/AbstractAddSpecificPackageCodeFixProvider.cs | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.CodeFixes;
using Microsoft.CodeAnalysis.Packaging;
using Microso... | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.CodeActions;
using Microso... | apache-2.0 | C# |
97581d8b6c400ec32d84305a776a4dcba51cc34a | Rename GenerateWallet menuitem to WalletManager | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/Shell/MainMenu/ToolsMainMenuItems.cs | WalletWasabi.Gui/Shell/MainMenu/ToolsMainMenuItems.cs | using AvalonStudio.MainMenu;
using AvalonStudio.Menus;
using System;
using System.Collections.Generic;
using System.Composition;
using System.Text;
namespace WalletWasabi.Gui.Shell.MainMenu
{
internal class ToolsMainMenuItems
{
private IMenuItemFactory _menuItemFactory;
[ImportingConstructor]
public ToolsMai... | using AvalonStudio.MainMenu;
using AvalonStudio.Menus;
using System;
using System.Collections.Generic;
using System.Composition;
using System.Text;
namespace WalletWasabi.Gui.Shell.MainMenu
{
internal class ToolsMainMenuItems
{
private IMenuItemFactory _menuItemFactory;
[ImportingConstructor]
public ToolsMai... | mit | C# |
9445ca7de83913d883383fe7a291ebddace23285 | Save xpub instead of hex (wallet compatibility) | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/JsonConverters/ExtPubKeyJsonConverter.cs | WalletWasabi/JsonConverters/ExtPubKeyJsonConverter.cs | using NBitcoin;
using Newtonsoft.Json;
using System;
namespace WalletWasabi.JsonConverters
{
public class ExtPubKeyJsonConverter : JsonConverter
{
/// <inheritdoc />
public override bool CanConvert(Type objectType)
{
return objectType == typeof(ExtPubKey);
}
/// <inheritdoc />
public override object... | using NBitcoin;
using Newtonsoft.Json;
using System;
namespace WalletWasabi.JsonConverters
{
public class ExtPubKeyJsonConverter : JsonConverter
{
/// <inheritdoc />
public override bool CanConvert(Type objectType)
{
return objectType == typeof(ExtPubKey);
}
/// <inheritdoc />
public override object... | mit | C# |
152c051c2a55bdea2cf8d334949de687fc4257e5 | Add pixel threshold to MeshCreatorData. | uclagamelab/MeshCreator | Assets/Scripts/MeshCreatorData.cs | Assets/Scripts/MeshCreatorData.cs | using UnityEngine;
using System.Collections;
public class MeshCreatorData : MonoBehaviour {
public string errorMessage = "reinstall the mesh creator package.";
// use this texture for creating the outine
public Texture2D outlineTexture;
public float pixelTransparencyThreshold = 255;
public const float versio... | using UnityEngine;
using System.Collections;
public class MeshCreatorData : MonoBehaviour {
public string errorMessage = "reinstall the mesh creator package.";
// use this texture for creating the outine
public Texture2D outlineTexture;
public const float versionNumber = 0.6f;
// settings for what the script ... | bsd-2-clause | C# |
47e5555d6cf2d0644c1216ea8f4e68c2ac134197 | Update JsonWebKeySet with RawData property (#463) | IdentityModel/IdentityModel,IdentityModel/IdentityModel | src/Jwk/JsonWebKeySet.cs | src/Jwk/JsonWebKeySet.cs | //------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
// All rights reserved.
//
// This code is licensed under the MIT License.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated do... | //------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
// All rights reserved.
//
// This code is licensed under the MIT License.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated do... | apache-2.0 | C# |
0c3651074d010811f6fa7aa5d0303e7cadceb0ea | Increment Version | zamanak/Zamanak.WebService | Zamanak.WebService/Properties/AssemblyInfo.cs | Zamanak.WebService/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("Za... | 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("Za... | mit | C# |
23d1663efb133f10d52980b0ae7cec2a908512cf | Add converters for System.Drawing structures. | eylvisaker/AgateLib | drivers/AgateWinForms/FormsInterop.cs | drivers/AgateWinForms/FormsInterop.cs | using System;
using System.Collections.Generic;
using System.Text;
using Draw = System.Drawing;
using ERY.AgateLib.Geometry;
namespace ERY.AgateLib.WinForms
{
public static class FormsInterop
{
public static Draw.Color ConvertColor(Color clr)
{
return Draw.Color.FromArgb... | using System;
using System.Collections.Generic;
using System.Text;
using Draw = System.Drawing;
using Geo = ERY.AgateLib.Geometry;
namespace ERY.AgateLib.WinForms
{
public static class FormsInterop
{
public static Draw.Rectangle ToRectangle(Geo.Rectangle rect)
{
return n... | mit | C# |
ddf539fe7ec545577199c494364ad29e4341dbdb | Remove unnecessary comment | Antaris/RazorEngine,Antaris/RazorEngine | src/test/Test.RazorEngine.Core/ActivatorTestFixture.cs | src/test/Test.RazorEngine.Core/ActivatorTestFixture.cs | namespace RazorEngine.Tests
{
using System;
using System.IO;
using Moq;
using NUnit.Framework;
using Compilation;
using Configuration;
using Templating;
using TestTypes;
using TestTypes.Activation;
using Text;
#if NET45
using Autofac;
using Autofac.Features.ResolveAny... | namespace RazorEngine.Tests
{
using System;
using System.IO;
using Moq;
using NUnit.Framework;
using Compilation;
using Configuration;
using Templating;
using TestTypes;
using TestTypes.Activation;
using Text;
#if NET45
using Autofac;
using Autofac.Features.ResolveAny... | apache-2.0 | C# |
8c79cf3aec7727995cd04f93d10fb70fc4561781 | Increase version to 2.3.0 | Azure/amqpnetlite | src/Properties/Version.cs | src/Properties/Version.cs | // ------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation
// All rights reserved.
//
// 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 co... | // ------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation
// All rights reserved.
//
// 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 co... | apache-2.0 | C# |
69fd2e6a6649200c9d7690f3fe2da47067636395 | Set XmlLocalizationSource.RootDirectoryOfApplication on startup. | fengyeju/aspnetboilerplate,berdankoca/aspnetboilerplate,690486439/aspnetboilerplate,verdentk/aspnetboilerplate,verdentk/aspnetboilerplate,fengyeju/aspnetboilerplate,verdentk/aspnetboilerplate,fengyeju/aspnetboilerplate,ilyhacker/aspnetboilerplate,ZhaoRd/aspnetboilerplate,ZhaoRd/aspnetboilerplate,andmattia/aspnetboilerp... | src/Abp.AspNetCore/AspNetCore/AbpStartup.cs | src/Abp.AspNetCore/AspNetCore/AbpStartup.cs | using System;
using Abp.Localization.Sources.Xml;
using Abp.Threading;
using Castle.Windsor.MsDependencyInjection;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
namespace Abp.... | using System;
using Abp.Threading;
using Castle.Windsor.MsDependencyInjection;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
namespace Abp.AspNetCore
{
//TODO: Inject all available services?
public a... | mit | C# |
e520c2ca6c8927e357bdd574479bf81f91606471 | update AuthorizationScope enums | vinhch/BizwebSharp | src/BizwebSharp/Enums/AuthorizationScope.cs | src/BizwebSharp/Enums/AuthorizationScope.cs | using System.Runtime.Serialization;
using BizwebSharp.Converters;
using Newtonsoft.Json;
namespace BizwebSharp.Enums
{
[JsonConverter(typeof(NullableEnumConverter<AuthorizationScope>))]
public enum AuthorizationScope
{
[EnumMember(Value = "read_content")] ReadContent,
[EnumMember(Value = ... | using System.Runtime.Serialization;
using BizwebSharp.Converters;
using Newtonsoft.Json;
namespace BizwebSharp.Enums
{
[JsonConverter(typeof(NullableEnumConverter<AuthorizationScope>))]
public enum AuthorizationScope
{
[EnumMember(Value = "read_content")] ReadContent,
[EnumMember(Value = ... | mit | C# |
310f5b78dc371386619d9ada997947cec0ea82a9 | Update ScriptOptions.cs | nicklv/n2cms,VoidPointerAB/n2cms,DejanMilicic/n2cms,n2cms/n2cms,n2cms/n2cms,VoidPointerAB/n2cms,EzyWebwerkstaden/n2cms,n2cms/n2cms,bussemac/n2cms,DejanMilicic/n2cms,SntsDev/n2cms,SntsDev/n2cms,SntsDev/n2cms,SntsDev/n2cms,nimore/n2cms,nimore/n2cms,nicklv/n2cms,nicklv/n2cms,n2cms/n2cms,bussemac/n2cms,bussemac/n2cms,EzyWe... | src/Framework/N2/Resources/ScriptOptions.cs | src/Framework/N2/Resources/ScriptOptions.cs | using System;
namespace N2.Resources
{
[Flags]
public enum ScriptOptions
{
/// <summary>Add the script exactly as given.</summary>
None = 1,
/// <summary>Embed the script in script tags.</summary>
ScriptTags = 2,
/// <summary>Embed the script in script tags and use j... | using System;
namespace N2.Resources
{
[Flags]
public enum ScriptOptions
{
/// <summary>Add the script exactly as given.</summary>
None = 1,
/// <summary>Embed the script in script tags.</summary>
ScriptTags = 2,
/// <summary>Embed the script in script tags and use j... | lgpl-2.1 | C# |
cd7414005d1f5a3bf36f83d7ae7e66c6156b9e9c | Debug output removed | drussilla/ConsoleX | Project/Assets/TestConsole.cs | Project/Assets/TestConsole.cs | using UnityEngine;
using ConsoleX;
using ConsoleX.Helpers;
public class TestConsole : MonoBehaviour
{
public ConsoleController ConsoleController;
// Use this for initialization
void Start ()
{
ConsoleController.Console.RegisterCommand("test", strings => {Debug.Log("test");});
ConsoleContro... | using UnityEngine;
using ConsoleX;
using ConsoleX.Helpers;
public class TestConsole : MonoBehaviour
{
public ConsoleController ConsoleController;
// Use this for initialization
void Start ()
{
ConsoleController.Console.RegisterCommand("test", strings => {Debug.Log("test");});
ConsoleContro... | mit | C# |
abd6c7de2b9c7655ea54cc25977a83660e73899c | Fix help. | KirillOsenkov/CodeCleanupTools | dos2unix/dos2unix.cs | dos2unix/dos2unix.cs | using System;
using System.IO;
class dos2unix
{
static void Main(string[] args)
{
if (args.Length != 1)
{
PrintHelp();
return;
}
string input = args[0];
if (!File.Exists(input))
{
Console.WriteLine($"Input fi... | using System;
using System.IO;
class dos2unix
{
static void Main(string[] args)
{
if (args.Length != 1)
{
PrintHelp();
return;
}
string input = args[0];
if (!File.Exists(input))
{
Console.WriteLine($"Input fi... | apache-2.0 | C# |
2c35fcfa72560b2f3dead1627792c6e9edfead16 | Add comment. | pdelvo/roslyn,dpoeschl/roslyn,mmitche/roslyn,wvdd007/roslyn,yeaicc/roslyn,bartdesmet/roslyn,mattscheffer/roslyn,dpoeschl/roslyn,jcouv/roslyn,bartdesmet/roslyn,TyOverby/roslyn,mgoertz-msft/roslyn,kelltrick/roslyn,AnthonyDGreen/roslyn,MichalStrehovsky/roslyn,nguerrera/roslyn,srivatsn/roslyn,panopticoncentral/roslyn,tvand... | src/Features/Core/Portable/AddImport/CodeActions/ProjectSymbolReferenceCodeAction.cs | src/Features/Core/Portable/AddImport/CodeActions/ProjectSymbolReferenceCodeAction.cs | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Immutable;
using Microsoft.CodeAnalysis.CodeActions;
using Microsoft.CodeAnalysis.Text;
namespace Microsoft.CodeAnalysis.AddImport
... | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Immutable;
using Microsoft.CodeAnalysis.CodeActions;
using Microsoft.CodeAnalysis.Text;
namespace Microsoft.CodeAnalysis.AddImport
... | mit | C# |
75425fd968968bd1a4d8a5d7056e31497717d6e1 | Add more properties to AnimationView | modplug/LottieXamarin,martijn00/LottieXamarin,fabionuno/LottieXamarin,fabionuno/LottieXamarin,martijn00/LottieXamarin | Lottie.Forms/AnimationView.cs | Lottie.Forms/AnimationView.cs | using System;
using Xamarin.Forms;
namespace Lottie.Forms
{
public class AnimationView : View
{
public static readonly BindableProperty ProgressProperty = BindableProperty.Create(nameof(Progress),
typeof(float), typeof(AnimationView), default(float));
public static readonly Bindabl... | using System;
namespace Lottie.Forms
{
public class AnimationView : Xamarin.Forms.View
{
public static readonly Xamarin.Forms.BindableProperty ProgressProperty = Xamarin.Forms.BindableProperty.Create(nameof(Progress), typeof(float), typeof(Lottie.Forms.AnimationView), default(float));
public float Progress
{
... | apache-2.0 | C# |
0239c109292bf30e9e8c9366a12445dc9ff76439 | Add localised test coverage of new wait function | EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,ZLima12/osu-framework,ppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework | osu.Framework.Tests/Threading/AsyncDisposalQueueTest.cs | osu.Framework.Tests/Threading/AsyncDisposalQueueTest.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.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using NUnit.Framework;
using osu.Framework.Alloca... | // 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 System.Threading;
using System.Threading.Tasks;
using NUnit.Framework;
using osu.Framework.Alloca... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.