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 |
|---|---|---|---|---|---|---|---|---|
c670356b3ff2afe13648ed35e17163a6056f3aff | Add comment | nunit/nunit-console,nunit/nunit-console,nunit/nunit-console | src/NUnitEngine/nunit.engine/Properties/AssemblyInfo.cs | src/NUnitEngine/nunit.engine/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.
#if NETSTANDARD1_3
[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.
#if NETSTANDARD1_3
[assembly:... | mit | C# |
16f4afad275ec98b8636ccba06a492fa6cc12746 | Update version number on each call. Build-State records the original state and is not updated during the release build cycle. | RabbitStewDio/AutoCake,RabbitStewDio/AutoCake | release.cake | release.cake | #load "src/AutoCake.Release/dependencies.cake"
#load "src/AutoCake.Release/release-tasks.cake"
#load "src/AutoCake.Release/git-tasks.cake"
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsD... | #load "src/AutoCake.Release/dependencies.cake"
#load "src/AutoCake.Release/release-tasks.cake"
#load "src/AutoCake.Release/git-tasks.cake"
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsD... | mit | C# |
390d27c1829e492ac65499e4a1c52d8a1ba98942 | Update ViewController.cs | IdentityModel/IdentityModel.OidcClient.Samples,IdentityModel/IdentityModel.OidcClient.Samples | iOSClient/iOSClient/ViewController.cs | iOSClient/iOSClient/ViewController.cs | using System;
using System.Text;
using IdentityModel.OidcClient;
using UIKit;
using Foundation;
using System.Net.Http;
using Newtonsoft.Json.Linq;
namespace iOSClient
{
public partial class ViewController : UIViewController
{
SafariServices.SFSafariViewController safari;
OidcClient _client;
AuthorizeState _st... | using System;
using System.Text;
using IdentityModel.OidcClient;
using UIKit;
using Foundation;
using System.Net.Http;
using Newtonsoft.Json.Linq;
namespace iOSClient
{
public partial class ViewController : UIViewController
{
SafariServices.SFSafariViewController safari;
OidcClient _client;
AuthorizeState _s... | apache-2.0 | C# |
4359b30ae33a69bc3d2f1b4af3c77050ed5e5c6a | Add Microsoft's Nuget Package Source | ApplETS/ETSMobile-WindowsPlatforms,ApplETS/ETSMobile-WindowsPlatforms | build.cake | build.cake | //////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
// Solution
var rootFolder = "./Ets.Mobile";
var solutionPath = rootFolder + "/Ets.Mobile.WindowsPhone.sln";
var allProjectsBinPath = rootFolder + "/**/bin";
// Te... | //////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
// Solution
var rootFolder = "./Ets.Mobile";
var solutionPath = rootFolder + "/Ets.Mobile.WindowsPhone.sln";
var allProjectsBinPath = rootFolder + "/**/bin";
// Te... | apache-2.0 | C# |
2fb2ecdb82e073386825fd47cd1cf894813a23ce | Tweak cake | danielwertheim/mynatsclient,danielwertheim/mynatsclient | build.cake | build.cake | #tool "nuget:?package=NUnit.ConsoleRunner"
#load "./buildconfig.cake"
var config = BuildConfig.Create(Context, BuildSystem);
Func<string, string> projectOutDir = project => string.Format("{0}{1}.{2}", config.OutDir, project, config.SemVer);
Task("Default")
.IsDependentOn("InitOutDir")
.IsDependentOn("NuGet-R... | #tool "nuget:?package=NUnit.ConsoleRunner"
#load "./buildconfig.cake"
var config = BuildConfig.Create(Context, BuildSystem);
Func<string, string> projectOutDir = project => string.Format("{0}{1}.v{2}", config.OutDir, project, config.SemVer);
Task("Default")
.IsDependentOn("InitOutDir")
.IsDependentOn("NuGet-... | mit | C# |
648d96aa91189f4d8a491810896fcecab3f43b4e | Update build.cake | davetimmins/Anywhere.ArcGIS,davetimmins/Anywhere.ArcGIS | build.cake | build.cake | using System.Text.RegularExpressions;
#tool nuget:?package=NUnit.ConsoleRunner&version=3.4.0
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
var configuration = Argume... | using System.Text.RegularExpressions;
#tool nuget:?package=NUnit.ConsoleRunner&version=3.4.0
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
var configuration = Argume... | mit | C# |
e71f702bb8a40a4e04cf424377bd3de5acbcb2f2 | Change SUCCESSFUL to SUCCEDDED in SkillStatusState | stoiveyp/Alexa.NET.Management | Alexa.NET.Management/Skills/SkillStatusState.cs | Alexa.NET.Management/Skills/SkillStatusState.cs | namespace Alexa.NET.Management.Skills
{
public enum SkillStatusState
{
IN_PROGRESS,
FAILED,
SUCCEEDED
}
} | namespace Alexa.NET.Management.Skills
{
public enum SkillStatusState
{
IN_PROGRESS,
FAILED,
SUCCESSFUL
}
} | mit | C# |
f642704ff3d86f69d5012900d6f4085eac1a6707 | allow documentation of if statements | toontown-archive/Krypton.LibProtocol | Krypton.LibProtocol/Src/Member/Statement/IfStatement.cs | Krypton.LibProtocol/Src/Member/Statement/IfStatement.cs | using System.Collections.Generic;
using System.Collections.ObjectModel;
using Krypton.LibProtocol.Member.Common;
using Krypton.LibProtocol.Member.Expression;
using Krypton.LibProtocol.Target;
namespace Krypton.LibProtocol.Member.Statement
{
public class IfStatement : IExpressiveStatementContainer, IStatement, IDo... | using System.Collections.Generic;
using System.Collections.ObjectModel;
using Krypton.LibProtocol.Member.Expression;
using Krypton.LibProtocol.Target;
namespace Krypton.LibProtocol.Member.Statement
{
public class IfStatement : IExpressiveStatementContainer, IStatement, ITemplateType
{
public string Te... | mit | C# |
b9db982c18ed4423f8f60947eba6faec780c8397 | Load images in the test folder | fraxedas/photo,fraxedas/photo | src/photo.exif.unit.test/ParserTest.cs | src/photo.exif.unit.test/ParserTest.cs | using System;
using System.IO;
using System.Linq;
using NUnit.Framework;
namespace photo.exif.unit.test
{
public class ParserTest
{
public ParserTest()
{
_parser = new Parser();
}
private readonly Parser _parser;
static string[] paths = Dir... | using System;
using System.IO;
using System.Linq;
using NUnit.Framework;
namespace photo.exif.unit.test
{
[TestFixture("Images/Canon PowerShot SX500 IS.JPG")]
[TestFixture("Images/Nikon COOLPIX P510.JPG")]
[TestFixture("Images/Panasonic Lumix DMC-FZ200.JPG")]
[TestFixture("Images/Samsung SII... | mit | C# |
c1e328feb4577a9d86c3ed70eee773635b16aac7 | Drop special support for "default" target. | ejball/ArgsReading | tools/BuildTools/BuildRunner.cs | tools/BuildTools/BuildRunner.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.CompilerServices;
using McMaster.Extensions.CommandLineUtils;
namespace BuildTools
{
public static class BuildRunner
{
public static int Execute(string[] args, Action<BuildApp> initialize, string scriptPath = n... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.CompilerServices;
using McMaster.Extensions.CommandLineUtils;
namespace BuildTools
{
public static class BuildRunner
{
public static int Execute(string[] args, Action<BuildApp> initialize, string scriptPath = n... | mit | C# |
61ab05efe6d3370be40c2f3627c38cb3ea1266a8 | Fix grammar | HangfireIO/Hangfire.Highlighter,HangfireIO/Hangfire.Highlighter,HangfireIO/Hangfire.Highlighter | Hangfire.Highlighter/Views/Home/_Snippet.cshtml | Hangfire.Highlighter/Views/Home/_Snippet.cshtml | @model CodeSnippet
<div data-snippet="@Model.Id" data-subscribe="@(Model.HighlightedCode == null)">
@if (Model.HighlightedCode == null)
{
<span class="text-waring"><img src="~/Content/ajax-loader.gif"> <em>Background job is being processed...</em></span>
}
else
{
@Html.Raw(Model.Hig... | @model CodeSnippet
<div data-snippet="@Model.Id" data-subscribe="@(Model.HighlightedCode == null)">
@if (Model.HighlightedCode == null)
{
<span class="text-waring"><img src="~/Content/ajax-loader.gif"> <em>Background job is processed...</em></span>
}
else
{
@Html.Raw(Model.Highlight... | mit | C# |
41ea6c6c3df31b360c53a9ec3aaed04ca848e941 | 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# |
0b89f8489e9c1ffcb7cafa214efc6684082f6cc0 | Remove smart grid metamodels from the unit tests | mlessmann/NMF,georghinkel/NMF,NMFCode/NMF | Transformations/Tests/CodeGenerationTests/ModelTests.cs | Transformations/Tests/CodeGenerationTests/ModelTests.cs | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NMF.Models.Repository;
using NMF.Interop.Ecore;
namespace NMF.CodeGenerationTests
{
[TestClass]
public class ModelTests
{
[TestMethod]
public void ClassModelGeneratesSuccessfully()
{
GenerateAndAsse... | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NMF.Models.Repository;
using NMF.Interop.Ecore;
namespace NMF.CodeGenerationTests
{
[TestClass]
public class ModelTests
{
[TestMethod]
public void ClassModelGeneratesSuccessfully()
{
GenerateAndAsse... | apache-2.0 | C# |
fa702999d733136c5afd2546309a69fdcfba9e42 | Fix MicrogameNumber decrease increasing number | NitorInc/NitoriWare,NitorInc/NitoriWare,plrusek/NitoriWare,Barleytree/NitoriWare,Barleytree/NitoriWare | Assets/Scripts/Animation/MicrogameNumber.cs | Assets/Scripts/Animation/MicrogameNumber.cs | using UnityEngine;
using System.Collections;
public class MicrogameNumber : MonoBehaviour
{
public static MicrogameNumber instance;
public TextMesh text;
void Awake()
{
instance = this;
}
public void increaseNumber()
{
if (text.text == "999")
return;
int number = int.Parse(text.text) + 1;
text.te... | using UnityEngine;
using System.Collections;
public class MicrogameNumber : MonoBehaviour
{
public static MicrogameNumber instance;
public TextMesh text;
void Awake()
{
instance = this;
}
public void increaseNumber()
{
if (text.text == "999")
return;
int number = int.Parse(text.text) + 1;
text.te... | mit | C# |
43d2095c150d7edd23faafcff248edf05441f130 | Fix translation for International Women's Day | tinohager/Nager.Date,tinohager/Nager.Date,tinohager/Nager.Date | Src/Nager.Date/PublicHolidays/RussiaProvider.cs | Src/Nager.Date/PublicHolidays/RussiaProvider.cs | using Nager.Date.Contract;
using Nager.Date.Model;
using System.Collections.Generic;
using System.Linq;
namespace Nager.Date.PublicHolidays
{
public class RussiaProvider : IPublicHolidayProvider
{
public IEnumerable<PublicHoliday> Get(int year)
{
//Russia
//https://en.w... | using Nager.Date.Contract;
using Nager.Date.Model;
using System.Collections.Generic;
using System.Linq;
namespace Nager.Date.PublicHolidays
{
public class RussiaProvider : IPublicHolidayProvider
{
public IEnumerable<PublicHoliday> Get(int year)
{
//Russia
//https://en.w... | mit | C# |
9bca25b26be12cd07c8367c0ff28c18229d93394 | Support multiple repos on commandline. | kingsimmy/GitRepoStats,kingsimmy/GitRepoStats | GitRepoStats.CommandLine/GitRepoAnalyser.cs | GitRepoStats.CommandLine/GitRepoAnalyser.cs | using HtmlGenerator;
using LibGit2Sharp;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
namespace GitRepoStats.CommandLine
{
public class GitRepoAnalyser
{
static void Main(string[] args)
{
List<string> argL... | using HtmlGenerator;
using LibGit2Sharp;
using System;
using System.Collections.Generic;
using System.Linq;
namespace GitRepoStats.CommandLine
{
public class GitRepoAnalyser
{
static void Main(string[] args)
{
List<string> argList = args.ToList();
bool htmlOutput = argL... | mit | C# |
236e8b0f2f55b8689c13915c4f037f45ec480eb9 | add using for System.Linq | louthy/language-ext,StefanBertels/language-ext,StanJav/language-ext | LanguageExt.Process/ActorSys/Deserialise.cs | LanguageExt.Process/ActorSys/Deserialise.cs | using Newtonsoft.Json;
using System;
using System.Reflection;
using LanguageExt.Trans;
using static LanguageExt.Prelude;
using System.Linq;
namespace LanguageExt
{
/// <summary>
/// Helper function for invoking the generic JsonConvert.DeserializeObject function
/// instead of the variant that takes a Type... | using Newtonsoft.Json;
using System;
using System.Reflection;
using LanguageExt.Trans;
using static LanguageExt.Prelude;
namespace LanguageExt
{
/// <summary>
/// Helper function for invoking the generic JsonConvert.DeserializeObject function
/// instead of the variant that takes a Type argument. This fo... | mit | C# |
b7841339c1e17899bab362a0fc94982ad077ea65 | update interface | Epxoxy/LiveRoku | LiveRoku.Base/downloader/ILiveDownloader.cs | LiveRoku.Base/downloader/ILiveDownloader.cs | namespace LiveRoku.Base {
public delegate void DanmakuResolver(DanmakuModel danmaku);
//To implements ILiveDownloader must have a default constructor as
//public Constructor (IRequestModel model, string userAgent, int requestTimeout);
public interface ILiveDownloader : IDownloader{
LowList<ILiv... | namespace LiveRoku.Base {
public delegate void DanmakuResolver(DanmakuModel danmaku);
//To implements ILiveDownloader must have a default constructor as
//public Constructor (IRequestModel model, string userAgent, int requestTimeout);
public interface ILiveDownloader : IDownloader{
LowList<ILiv... | mit | C# |
a3f685419fe2330782272ccf2720b27750390346 | Remove IntervalType from IntervalReachedEventArgs. | jcheng31/IntervalTimer | IntervalReachedEventArgs.cs | IntervalReachedEventArgs.cs | using System;
using Microsoft.SPOT;
namespace IntervalTimer
{
public class IntervalReachedEventArgs : EventArgs
{
public String Message { get; set; }
public IntervalReachedEventArgs(String message)
{
Message = message;
}
}
}
| using System;
using Microsoft.SPOT;
namespace IntervalTimer
{
public enum IntervalType
{
Short,
Long
};
public class IntervalReachedEventArgs : EventArgs
{
public IntervalType Type { get; set; }
public String Message { get; set; }
public Int... | mit | C# |
5d940ded09d91d1e1d217b173fa598ed5196985e | Fix incorrect usage of nullable in `ControlItemMention` | peppy/osu,NeoAdonis/osu,ppy/osu,peppy/osu,ppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu | osu.Game/Overlays/Chat/ChannelControl/ControlItemMention.cs | osu.Game/Overlays/Chat/ChannelControl/ControlItemMention.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
#nullable enable
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framewor... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
#nullable enable
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framewor... | mit | C# |
c55ec690506a2afa58297f62986a2bc4f09371bc | Set the SonarTfsAnnotate.exe version to 2.1.1 | SonarCommunity/sonar-scm-tfvc,SonarCommunity/sonar-scm-tfvc | SonarTfsAnnotate/Properties/AssemblyInfo.cs | SonarTfsAnnotate/Properties/AssemblyInfo.cs | /*
* SonarQube :: SCM :: TFVC :: Plugin
* Copyright (c) SonarSource SA and Microsoft Corporation. All rights reserved.
*
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
using System.Reflection;
using System.Runtime.InteropServices;
// General Information about a... | /*
* SonarQube :: SCM :: TFVC :: Plugin
* Copyright (c) SonarSource SA and Microsoft Corporation. All rights reserved.
*
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
using System.Reflection;
using System.Runtime.InteropServices;
// General Information about a... | mit | C# |
a4de7bdeb7fe51cca5828e9f70c88fe3577c680a | Call base Handle if Decoratee not handled | Miruken-DotNet/Miruken | Source/Miruken/Callback/HandlerDecorator.cs | Source/Miruken/Callback/HandlerDecorator.cs | namespace Miruken.Callback
{
using System;
public abstract class HandlerDecorator : Handler, IDecorator
{
protected HandlerDecorator(IHandler decoratee)
{
if (decoratee == null)
throw new ArgumentNullException(nameof(decoratee));
Decoratee = decorat... | namespace Miruken.Callback
{
using System;
public abstract class HandlerDecorator : Handler, IDecorator
{
protected HandlerDecorator(IHandler decoratee)
{
if (decoratee == null)
throw new ArgumentNullException(nameof(decoratee));
Decoratee = decorat... | mit | C# |
695964de7a49cbb176a66801b285f8d96dfbbeb1 | Update assembly information and add file header. | oliverzick/ImmutableUndoRedo | src/ImmutableUndoRedo.Test/Properties/AssemblyInfo.cs | src/ImmutableUndoRedo.Test/Properties/AssemblyInfo.cs | #region Copyright and license
// <copyright file="AssemblyInfo.cs" company="Oliver Zick">
// Copyright (c) 2015 Oliver Zick. All rights reserved.
// </copyright>
// <author>Oliver Zick</author>
// <license>
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file exce... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Allgemeine Informationen über eine Assembly werden über folgende
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die einer Assembly zugeordnet sind.
[assembly: AssemblyT... | apache-2.0 | C# |
6c5dfff0e72a8b29f7f90a340eea435f7c4e661b | Update Program.cs | ickecode/GitTest1 | ConsoleApp1/ConsoleApp1/Program.cs | ConsoleApp1/ConsoleApp1/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
Console.ReadKey();
//Comment add... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
Console.ReadKey();
//Comment add... | mit | C# |
3c4a1cb08ceb507a3a25abdb1da864b6f98760f8 | Remove unnecessary annotations | yb199478/catlib,CatLib/Framework | CatLib.VS/CatLib/FileSystem/File.cs | CatLib.VS/CatLib/FileSystem/File.cs | /*
* This file is part of the CatLib package.
*
* (c) Yu Bin <support@catlib.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Document: http://catlib.io/
*/
using CatLib.API.FileSystem;
namespace CatLib.FileSystem
{
//... | /*
* This file is part of the CatLib package.
*
* (c) Yu Bin <support@catlib.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Document: http://catlib.io/
*/
using CatLib.API.FileSystem;
namespace CatLib.FileSystem
{
//... | unknown | C# |
2e17e08b70534710b950beddebd4ff60b669524a | Fix display window construction. | eylvisaker/AgateLib | Tests/Core/TgzProvider/TgzProviderTester.cs | Tests/Core/TgzProvider/TgzProviderTester.cs | using System;
using System.Collections.Generic;
using System.Linq;
using AgateLib;
using AgateLib.DisplayLib;
using AgateLib.Geometry;
using AgateLib.Utility;
namespace TgzProviderTester
{
class TgzProviderTester
{
/// <summary>
/// The main entry point for the application.
... | using System;
using System.Collections.Generic;
using System.Linq;
using AgateLib;
using AgateLib.DisplayLib;
using AgateLib.Geometry;
using AgateLib.Utility;
namespace TgzProviderTester
{
class TgzProviderTester
{
/// <summary>
/// The main entry point for the application.
... | mit | C# |
5d199e9b51f49f7260aea574201b0b0879ccb67c | Change slack error message text. | LykkeCity/CompetitionPlatform,LykkeCity/CompetitionPlatform,LykkeCity/CompetitionPlatform | src/CompetitionPlatform/Exceptions/GlobalExceptionFilter.cs | src/CompetitionPlatform/Exceptions/GlobalExceptionFilter.cs | using System;
using AzureStorage.Queue;
using Common.Log;
using CompetitionPlatform.Models;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
namespace CompetitionPlatform.Exceptions
{
public class GlobalExceptionFilter : IExceptionFilter, IDisposable
{
private readonly ILog _log... | using System;
using AzureStorage.Queue;
using Common.Log;
using CompetitionPlatform.Models;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
namespace CompetitionPlatform.Exceptions
{
public class GlobalExceptionFilter : IExceptionFilter, IDisposable
{
private readonly ILog _log... | mit | C# |
376cfe880e64ec5c90aeac96c0f1045e83d708e0 | Bump version to 1.4.2 | CodeAnimal/PreMailer.Net,CarterTsai/PreMailer.Net,tobio/PreMailer.Net,milkshakesoftware/PreMailer.Net,kendallb/PreMailer.Net,rohk/PreMailer.Net | PreMailer.Net/GlobalAssemblyInfo.cs | PreMailer.Net/GlobalAssemblyInfo.cs | using System;
using System.Reflection;
using System.Runtime.InteropServices;
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
[assembly: AssemblyProduct("PreMailer.Net")]
[assembly: AssemblyCompany("Milkshake Software")]
[assembly: AssemblyCopyright("Copyright © Milkshake Software 2015")]
[assembly: Ass... | using System;
using System.Reflection;
using System.Runtime.InteropServices;
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
[assembly: AssemblyProduct("PreMailer.Net")]
[assembly: AssemblyCompany("Milkshake Software")]
[assembly: AssemblyCopyright("Copyright © Milkshake Software 2015")]
[assembly: Ass... | mit | C# |
d68381d38445f5ebd0893b45312e88c64bdfc7b2 | Update PBU-Main-Future.cs | win120a/ACClassRoomUtil,win120a/ACClassRoomUtil | ProcessBlockUtil/PBU-Main-Future.cs | ProcessBlockUtil/PBU-Main-Future.cs | /*
THIS IS ONLY TO EASY CHANGE, NOT THE PROJECT CODE AT NOW. (I will use in the future.)
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... | /*
THIS IS ONLY TO EASY CHANGE, NOT THE PROJECT CODE AT NOW. (I will use in the future.)
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... | apache-2.0 | C# |
0dcb2b252226efe8fcf034ba6c346ca30a56ff6d | Remove unused code. | mrward/monodevelop-dnx-addin | src/MonoDevelop.Dnx/MonoDevelop.Dnx/AspNetProjectLocator.cs | src/MonoDevelop.Dnx/MonoDevelop.Dnx/AspNetProjectLocator.cs | //
// AspNetProjectLocator.cs
//
// Author:
// Matt Ward <ward.matt@gmail.com>
//
// Copyright (c) 2015 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 restr... | //
// AspNetProjectLocator.cs
//
// Author:
// Matt Ward <ward.matt@gmail.com>
//
// Copyright (c) 2015 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 restr... | mit | C# |
bcbfeb65e9922a2e35c5e982b7a276b65707d33c | Fix an incorrect type | Aux/NTwitch,Aux/NTwitch | src/NTwitch.Rest/Entities/Follows/RestChannelFollow.cs | src/NTwitch.Rest/Entities/Follows/RestChannelFollow.cs | using Newtonsoft.Json;
namespace NTwitch.Rest
{
public class RestChannelFollow : RestFollow
{
[JsonProperty("channel")]
public RestChannel Channel { get; private set; }
public RestChannelFollow(BaseRestClient client) : base(client) { }
public static new RestChannelFollow Crea... | using Newtonsoft.Json;
namespace NTwitch.Rest
{
public class RestChannelFollow : RestFollow
{
[JsonProperty("channel")]
public RestChannel Channel { get; private set; }
public RestChannelFollow(BaseRestClient client) : base(client) { }
public static new RestChannelFollow Crea... | mit | C# |
be9e6824572eda11a2b246443b42e77362b01cef | Update minor version | provisiondata/Provision.AspNet.StructureMap | src/Provision.AspNet.StructureMap/Properties/AssemblyInfo.cs | src/Provision.AspNet.StructureMap/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Provision.AspNet.StructureMap")]
[assembly: AssemblyDescription("StructureMap integration for ASP.NET MVC and WebAPI")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Provision Data Systems Inc.")]
[assembly: A... | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Provision.AspNet.StructureMap")]
[assembly: AssemblyDescription("StructureMap integration for ASP.NET MVC and WebAPI")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Provision Data Systems Inc.")]
[assembly: A... | mit | C# |
b3465c182179e16404d8ca3c40a268a8448d357d | Change HelenaZ force | bunashibu/kikan | Assets/Scripts/Skill/Helena/HelenaZ.cs | Assets/Scripts/Skill/Helena/HelenaZ.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UniRx;
using UniRx.Triggers;
namespace Bunashibu.Kikan {
[RequireComponent(typeof(SkillSynchronizer))]
public class HelenaZ : Skill {
void Awake() {
_synchronizer = GetComponent<SkillSynchronizer>();
_hitRistrictor... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Bunashibu.Kikan {
[RequireComponent(typeof(SkillSynchronizer))]
public class HelenaZ : Skill {
void Awake() {
_synchronizer = GetComponent<SkillSynchronizer>();
_hitRistrictor = new HitRistrictor(_hitInfo);
... | mit | C# |
cef646bf586a3f82e7feb9565e0cb33060a0e4bd | fix exception message | NServiceBusSqlPersistence/NServiceBus.SqlPersistence | src/Guard.cs | src/Guard.cs |
using System;
using System.Collections;
static class Guard
{
public static void AgainstNull(string argumentName, object value)
{
if (value == null)
{
throw new ArgumentNullException(argumentName);
}
}
public static void AgainstNullAndEmpty(string argumentName, str... |
using System;
using System.Collections;
static class Guard
{
public static void AgainstNull(string argumentName, object value)
{
if (value == null)
{
throw new ArgumentNullException(argumentName);
}
}
public static void AgainstNullAndEmpty(string argumentName, str... | mit | C# |
c5972e1912a61013c9f0bd36287abd7e83aab8fb | Update CameraEventsListener.android.cs | Redth/ZXing.Net.Mobile | ZXing.Net.Mobile/Android/CameraAccess/CameraEventsListener.android.cs | ZXing.Net.Mobile/Android/CameraAccess/CameraEventsListener.android.cs | using System;
using Android.Hardware;
using ApxLabs.FastAndroidCamera;
namespace ZXing.Mobile.CameraAccess
{
public class CameraEventsListener : Java.Lang.Object, INonMarshalingPreviewCallback, Camera.IAutoFocusCallback
{
public event EventHandler<FastJavaByteArray> OnPreviewFrameReady;
public void OnPreviewFr... | using System;
using Android.Hardware;
using ApxLabs.FastAndroidCamera;
namespace ZXing.Mobile.CameraAccess
{
public class CameraEventsListener : Java.Lang.Object, INonMarshalingPreviewCallback, Camera.IAutoFocusCallback
{
public event EventHandler<FastJavaByteArray> OnPreviewFrameReady;
public void OnPreviewFr... | apache-2.0 | C# |
f9c6200b279a9a58e3d63a78bec8209dc52d9c5a | Fix some documentation issues. | nohros/must,nohros/must,nohros/must | src/base/common/data/transferobjects/IDataTransferObject.cs | src/base/common/data/transferobjects/IDataTransferObject.cs | using System;
using System.Collections.Generic;
using System.Text;
namespace Nohros.Data.TransferObjects
{
/// <summary>
/// Represents an class that can be serialized using the json format. Classes
/// that implement this interface is usually used to transfer json encoded
/// data from the data acces... | using System;
using System.Collections.Generic;
using System.Text;
namespace Nohros.Data.TransferObjects
{
/// <summary>
/// Represents an class that can be serialized using the json format. Classes
/// that implement this interface is usually used to transfer json encoded
/// data from the data acces... | mit | C# |
d5cca8386e6ccd42d62faa61e61a50f76ebe3da4 | Add possible IOExceptino | dotnet/roslyn,dotnet/roslyn,dotnet/roslyn | src/Workspaces/Core/Portable/Shared/Utilities/IOUtilities.cs | src/Workspaces/Core/Portable/Shared/Utilities/IOUtilities.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.
#nullable disable
using System;
using System.IO;
using System.Security;
using System.Threading.Tasks;
namespace M... | // 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.
#nullable disable
using System;
using System.IO;
using System.Security;
using System.Threading.Tasks;
namespace M... | mit | C# |
81b0b4670501e7c53e54a539abed33e6c3a5de6c | Update IInputRaster.cs | LANDIS-II-Foundation/Landis-Spatial-Modeling-Library | src/api/IInputRaster.cs | src/api/IInputRaster.cs | // Copyright 2004-2006 University of Wisconsin
// All rights reserved.
//
// Contributors:
// James Domingo, UW-Madison, Forest Landscape Ecology Lab
// James Domingo, Green Code LLC
namespace Landis.SpatialModeling
{
/// <summary>
/// An input raster file from which pixel data are read. Pixels ... | // Copyright 2004-2006 University of Wisconsin
// All rights reserved.
//
// The copyright holders license this file under the New (3-clause) BSD
// License (the "License"). You may not use this file except in
// compliance with the License. A copy of the License is available at
//
// http://www.opensource.o... | apache-2.0 | C# |
3c5a3124e8fc5b98a11ba83c583e1fa36ddf8cab | Update FileSystemRootPathProvider.cs | danbarua/Nancy,guodf/Nancy,rudygt/Nancy,asbjornu/Nancy,blairconrad/Nancy,tareq-s/Nancy,cgourlay/Nancy,damianh/Nancy,ayoung/Nancy,wtilton/Nancy,adamhathcock/Nancy,JoeStead/Nancy,phillip-haydon/Nancy,cgourlay/Nancy,grumpydev/Nancy,thecodejunkie/Nancy,Worthaboutapig/Nancy,tsdl2013/Nancy,xt0rted/Nancy,kekekeks/Nancy,EliotJ... | src/Nancy.Hosting.Self/FileSystemRootPathProvider.cs | src/Nancy.Hosting.Self/FileSystemRootPathProvider.cs | namespace Nancy.Hosting.Self
{
using System;
using System.IO;
using System.Reflection;
public class FileSystemRootPathProvider : IRootPathProvider
{
public string GetRootPath()
{
var assembly = Assembly.GetEntryAssembly();
return assembly != ... | using System;
using System.IO;
using System.Reflection;
namespace Nancy.Hosting.Self
{
public class FileSystemRootPathProvider : IRootPathProvider
{
public string GetRootPath()
{
var assembly = Assembly.GetEntryAssembly();
return assembly != null ?
... | mit | C# |
9e92339e4fbb042ae6d4de98348a63208c768e1c | Remove unused field. | blakeohare/crayon,blakeohare/crayon,blakeohare/crayon,blakeohare/crayon,blakeohare/crayon,blakeohare/crayon,blakeohare/crayon,blakeohare/crayon | Compiler/ParseTree/FieldDeclaration.cs | Compiler/ParseTree/FieldDeclaration.cs | using System;
using System.Collections.Generic;
namespace Crayon.ParseTree
{
internal class FieldDeclaration : Executable
{
public Token NameToken { get; set; }
public Expression DefaultValue { get; set; }
public bool IsStaticField { get; private set; }
public int Mem... | using System;
using System.Collections.Generic;
namespace Crayon.ParseTree
{
internal class FieldDeclaration : Executable
{
public Token NameToken { get; set; }
public Expression DefaultValue { get; set; }
public bool IsStaticField { get; private set; }
public int Mem... | mit | C# |
f93b2ce2fe26accb3c36f6bfa1c0fcd40282067c | fix null reference errors while converting reg date | mdavid626/artemis | src/Artemis.Web/App_Start/AutoMapperConfig.cs | src/Artemis.Web/App_Start/AutoMapperConfig.cs | using Artemis.Common;
using Artemis.Web.Models;
using AutoMapper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Artemis.Web
{
public static class AutoMapperConfig
{
public static IMapper Create()
{
var config = new MapperConfiguratio... | using Artemis.Common;
using Artemis.Web.Models;
using AutoMapper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Artemis.Web
{
public static class AutoMapperConfig
{
public static IMapper Create()
{
var config = new MapperConfiguratio... | mit | C# |
628f12b4424ad6f50177a21d1a2b257b8cb9e805 | fix attr on name of event | LagoVista/DeviceAdmin | src/LagoVista.IoT.DeviceAdmin/Models/Event.cs | src/LagoVista.IoT.DeviceAdmin/Models/Event.cs | using LagoVista.Core.Attributes;
using LagoVista.Core.Interfaces;
using LagoVista.IoT.DeviceAdmin.Resources;
using System;
namespace LagoVista.IoT.DeviceAdmin.Models
{
[EntityDescription(DeviceAdminDomain.StateMachines, DeviceLibraryResources.Names.StateMachineEvent_Title, Resources.DeviceLibraryResources.Names.S... | using LagoVista.Core.Attributes;
using LagoVista.Core.Interfaces;
using LagoVista.IoT.DeviceAdmin.Resources;
using System;
namespace LagoVista.IoT.DeviceAdmin.Models
{
[EntityDescription(DeviceAdminDomain.StateMachines, DeviceLibraryResources.Names.StateMachineEvent_Title, Resources.DeviceLibraryResources.Names.S... | mit | C# |
0389c3ecca3bb254caffec97ddbf9cceeecf28c1 | make json came case in eventhub trace | aliostad/PerfIt,aliostad/PerfIt | src/PerfIt.Tracers.EventHub/EventHubTracer.cs | src/PerfIt.Tracers.EventHub/EventHubTracer.cs | using Microsoft.Azure.EventHubs;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using Psyfon;
using System;
using System.Collections.Generic;
using System.Text;
namespace PerfIt.Tracers.EventHub
{
/// <summary>
/// A tracer that pushes instrumentation events to EventHub
/// </summary>
pub... | using Microsoft.Azure.EventHubs;
using Newtonsoft.Json;
using Psyfon;
using System;
using System.Collections.Generic;
using System.Text;
namespace PerfIt.Tracers.EventHub
{
/// <summary>
/// A tracer that pushes instrumentation events to EventHub
/// </summary>
public class EventHubTracer : ITwoStageT... | mit | C# |
43e6efc960dc4dd55b989bf7cbcf1653221500cb | Update _VacancySmallPreview.cshtml | dncuug/dot-net.in.ua,dncuug/dot-net.in.ua,dncuug/dot-net.in.ua | src/WebSite/Views/Shared/_VacancySmallPreview.cshtml | src/WebSite/Views/Shared/_VacancySmallPreview.cshtml | @model Core.ViewModels.VacancyViewModel
@{
var cssClass = "";
if (Model.Hot) {cssClass = "hot"; }
if (Model.Fresh) {cssClass = "fresh"; }
}
<div class="vacancy-small-preview @cssClass">
<h4>@Model.Title</h4>
<div>
<span class="label category-label label-default">@Model.Category.Name</span>... | @model Core.ViewModels.VacancyViewModel
@{
var cssClass = "";
if (Model.Hot) {cssClass = "hot"; }
if (Model.Fresh) {cssClass = "fresh"; }
}
<div class="vacancy-small-preview @cssClass">
<h4>@Model.Title</h4>
<div>
<span class="label category-label label-default">@Model.Category.Name</span>... | mit | C# |
34ace2553e5b8db36be5dd0447bac569eeb2d843 | Revert "Refactor the menu's max height to be a property" | NeoAdonis/osu,peppy/osu-new,peppy/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,smoogipooo/osu,peppy/osu,ppy/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu | osu.Game/Overlays/Settings/SettingsEnumDropdown.cs | osu.Game/Overlays/Settings/SettingsEnumDropdown.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 osu.Framework.Graphics;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Settings
{
public class SettingsEnumDropdown<T> : Set... | // 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 osu.Framework.Graphics;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Settings
{
public class SettingsEnumDropdown<T> : Set... | mit | C# |
e43d91ad5d82cc338802f312411a24abe411f3bc | Fix another case of incorrect null checking in editor verification processing | NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,peppy/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu,ppy/osu,NeoAdonis/osu,ppy/osu,smoogipooo/osu,ppy/osu | osu.Game/Rulesets/Edit/Checks/CheckFilePresence.cs | osu.Game/Rulesets/Edit/Checks/CheckFilePresence.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Edit.Checks.Components;
namespace osu.Game.Rulesets.Edit.Checks
{
public abstract ... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Edit.Checks.Components;
namespace osu.Game.Rulesets.Edit.Checks
{
public abstract ... | mit | C# |
4212b44f40c1d7fca50dd24f5456c82391526cb5 | Fix cannot load firebase analytics type. | Senspark/ee-x,Senspark/ee-x,Senspark/ee-x,Senspark/ee-x,Senspark/ee-x,Senspark/ee-x,Senspark/ee-x,Senspark/ee-x,Senspark/ee-x | src/unity/Runtime/Services/Internal/FirebaseAnalyticsImpl.cs | src/unity/Runtime/Services/Internal/FirebaseAnalyticsImpl.cs | using System;
using System.Reflection;
namespace EE.Internal {
internal class FirebaseAnalyticsImpl : IFirebaseAnalyticsImpl {
private readonly MethodInfo _methodSetCurrentScreen;
public FirebaseAnalyticsImpl() {
var type = Type.GetType("Firebase.Analytics.FirebaseAnalytics, Firebase.A... | using System;
using System.Reflection;
namespace EE.Internal {
internal class FirebaseAnalyticsImpl : IFirebaseAnalyticsImpl {
private readonly MethodInfo _methodSetCurrentScreen;
public FirebaseAnalyticsImpl() {
var type = Type.GetType("Firebase.Analytics.FirebaseAnalytics, Firebase.C... | mit | C# |
22570be8ac5d1c37bc0f3056d6cf8f2560d402f3 | remove price form _GalleryPartial | ramzzzay/GalleryMVC_With_Auth,ramzzzay/GalleryMVC_With_Auth,ramzzzay/GalleryMVC_With_Auth | GalleryMVC_With_Auth/Views/Shared/_GalleryPartial.cshtml | GalleryMVC_With_Auth/Views/Shared/_GalleryPartial.cshtml | @using GalleryMVC_With_Auth.Domain.Entities
<div id="blueimp-gallery" class="blueimp-gallery blueimp-gallery-controls">
<div class="slides"></div>
<h3 class="title"></h3>
<a class="prev">‹</a>
<a class="next">›</a>
<a class="close">×</a>
<a class="play-pause"></a>
<ol class="indicator"></ol... | @using GalleryMVC_With_Auth.Domain.Entities
<div id="blueimp-gallery" class="blueimp-gallery blueimp-gallery-controls">
<div class="slides"></div>
<h3 class="title"></h3>
<a class="prev">‹</a>
<a class="next">›</a>
<a class="close">×</a>
<a class="play-pause"></a>
<ol class="indicator"></ol... | apache-2.0 | C# |
b0d180b5a94a96cffad99c2a9d95a83d7424091c | Fix R# nag. | JohanLarsson/Gu.Wpf.ValidationScope | Gu.Wpf.ValidationScope.Ui.Tests/Helpers/DumpAppDomain.cs | Gu.Wpf.ValidationScope.Ui.Tests/Helpers/DumpAppDomain.cs | namespace Gu.Wpf.ValidationScope.Ui.Tests
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using NUnit.Framework;
[Explicit("Script")]
public class DumpAppDomain
{
[Test]
public void DumpNotExcludedAssemblies()
{
... | namespace Gu.Wpf.ValidationScope.Ui.Tests
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using NUnit.Framework;
[Explicit("Script")]
public class DumpAppDomain
{
[Test]
public void DumpNotExcludedAssemblies()
{
... | mit | C# |
469450075c66a9f96690abcb19d21d7be268138b | Update Program.cs | mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander | Battery-Commander.Web/Program.cs | Battery-Commander.Web/Program.cs | namespace BatteryCommander.Web
{
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Serilog;
using Serilog.Core;
public class Program
{
public static LoggingLevelSwitch LogLevel { get; } = new LoggingLevelSwitch(Se... | namespace BatteryCommander.Web
{
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Serilog;
using Serilog.Core;
public class Program
{
public static LoggingLevelSwitch LogLevel { get; } = new LoggingLevelSwitch(Se... | mit | C# |
205661e6ce1ad40ae4b82a510da1a325006934e2 | Remove CommandImporter mock | renehernandez/NetConsole.Core,renehernandez/NetConsole.Core | src/tests/NetConsole.Core.Tests/CommandImporterTest.cs | src/tests/NetConsole.Core.Tests/CommandImporterTest.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using NetConsole.Core.Managers;
using NUnit.Framework;
using Rhino.Mocks;
namespace NetConsole.Core.Tests
{
[TestFixture]
public class CommandImporterTest
{
private CommandI... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using NetConsole.Core.Managers;
using NUnit.Framework;
using Rhino.Mocks;
namespace NetConsole.Core.Tests
{
[TestFixture]
public class CommandImporterTest
{
private CommandI... | mit | C# |
679b7bfca5106756c80c55b17f1e6f12298f30fe | Remove noise | ceddlyburge/canoe-polo-league-organiser-backend | CanoePoloLeagueOrganiser/Team.cs | CanoePoloLeagueOrganiser/Team.cs | using System;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Linq;
using System.Text;
namespace CanoePoloLeagueOrganiser
{
public class Team
{
public string Name { get; }
public Team(string name) =>
Name = name;
public override bool Equ... | using System;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Linq;
using System.Text;
namespace CanoePoloLeagueOrganiser
{
public class Team
{
public string Name { get; }
public Team(string name)
{
Name = name;
}
public ... | mit | C# |
48209b37a2f09f40cfbba024087a767244ee42e0 | Add LiveNodePacket.DisableAcknowledgement | Jay-Jay-D/LeanSTP,jameschch/Lean,jameschch/Lean,QuantConnect/Lean,jameschch/Lean,Jay-Jay-D/LeanSTP,redmeros/Lean,redmeros/Lean,AlexCatarino/Lean,AlexCatarino/Lean,jameschch/Lean,kaffeebrauer/Lean,kaffeebrauer/Lean,QuantConnect/Lean,AnshulYADAV007/Lean,AlexCatarino/Lean,AnshulYADAV007/Lean,redmeros/Lean,kaffeebrauer/Lea... | Common/Packets/LiveNodePacket.cs | Common/Packets/LiveNodePacket.cs | /*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect 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... | /*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect 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 ... | apache-2.0 | C# |
1650f8517bfef174f8637d8f74d575648e534b94 | Add AsyncActionDispatcher | jorik041/maccore,cwensley/maccore,mono/maccore | src/Foundation/NSAction.cs | src/Foundation/NSAction.cs | //
// Copyright 2009-2010, Novell, Inc.
// Copyright 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 restriction, including
// without limitation the rights to... | //
// Copyright 2009-2010, Novell, 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 restriction, including
// without limitation the rights to use, copy, modify, merge, publ... | apache-2.0 | C# |
38899ea4dba68dcc4e0d0ddbf242756c26700265 | add manage link to key index page to edit keys | IdentityModel/AuthorizationServer,s093294/Thinktecture.AuthorizationServer,IdentityModel/AuthorizationServer,s093294/Thinktecture.AuthorizationServer,yfann/AuthorizationServer,yfann/AuthorizationServer | source/WebHost/Areas/Admin/Views/Key/Index.cshtml | source/WebHost/Areas/Admin/Views/Key/Index.cshtml | @{
ViewBag.Title = "Keys";
}
<h2>Keys</h2>
<ul class="nav nav-pills">
<li>@Html.ActionLink("New Symmetric Key", "SymmetricKey")</li>
</ul>
<table class="table table-striped hide table-condensed" data-bind="css: { hide: !keys().length }">
<thead>
<tr>
<th></th>
<th>Name</th>... | @{
ViewBag.Title = "Keys";
}
<h2>Keys</h2>
<ul class="nav nav-pills">
<li>@Html.ActionLink("New Symmetric Key", "SymmetricKey")</li>
</ul>
<table class="table table-striped hide table-condensed" data-bind="css: { hide: !keys().length }">
<thead>
<tr>
<th></th>
<th>Name</th>... | bsd-3-clause | C# |
8a35bae81624fedf89fbbaf628ed54ed26188f2b | Simplify code (and slightly improve performance) | chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium | src/Server/FileSystem/Builder/ProjectPathChanges.cs | src/Server/FileSystem/Builder/ProjectPathChanges.cs | using System;
using System.Collections.Generic;
using System.Linq;
using VsChromium.Core.Collections;
using VsChromium.Core.Files;
using VsChromium.Core.Linq;
using VsChromium.Core.Utility;
namespace VsChromium.Server.FileSystem.Builder {
/// <summary>
/// Map from RelativePath to PathChangeKind for a given projec... | using System;
using System.Collections.Generic;
using System.Linq;
using VsChromium.Core.Collections;
using VsChromium.Core.Files;
using VsChromium.Core.Linq;
using VsChromium.Core.Utility;
namespace VsChromium.Server.FileSystem.Builder {
/// <summary>
/// Map from RelativePath to PathChangeKind for a given projec... | bsd-3-clause | C# |
ea25c12fac50520c12649995c731aab4724a622e | Use nameof | carbon/Amazon | src/Amazon.CloudFront/Models/InvalidationBatch.cs | src/Amazon.CloudFront/Models/InvalidationBatch.cs | using System;
using System.Collections.Generic;
using System.Xml.Linq;
namespace Amazon.CloudFront
{
public sealed class InvalidationBatch
{
public InvalidationBatch(IList<string> paths)
{
if (paths is null)
throw new ArgumentNullException(nameof(paths));
if (paths.Count == 0)
thro... | using System;
using System.Collections.Generic;
using System.Xml.Linq;
namespace Amazon.CloudFront
{
public sealed class InvalidationBatch
{
public InvalidationBatch(IList<string> paths)
{
if (paths is null)
throw new ArgumentNullException(nameof(paths));
if (paths.Count == 0)
thro... | mit | C# |
feaba98fc30059e605b15bc901fed81643466040 | add of line number | Appleseed/base,Appleseed/base | Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Model/SolrResponseItem.cs | Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Model/SolrResponseItem.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Appleseed.Base.Alerts.Model
{
class SolrResponseItem
{
public string id { get; set; }
public string item_type { get; set; }
public string address_1 { get; set;... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Appleseed.Base.Alerts.Model
{
class SolrResponseItem
{
public string id { get; set; }
public string item_type { get; set; }
public string address_1 { get; set;... | apache-2.0 | C# |
bd48694074e3bbb2164de68d909b3c26a14377b1 | Make method private | roman-yagodin/R7.News,roman-yagodin/R7.News,roman-yagodin/R7.News | R7.News/Controls/ActionButtons.ascx.cs | R7.News/Controls/ActionButtons.ascx.cs | using System.Collections.Generic;
using System.Linq;
using System.Web.UI;
using System.Web.UI.WebControls;
using DotNetNuke.Common.Utilities;
using DotNetNuke.Entities.Portals;
using DotNetNuke.Entities.Users;
using DotNetNuke.UI.Modules;
using R7.Dnn.Extensions.ViewModels;
using R7.News.Components;
using R7.News.Contr... | using System.Collections.Generic;
using System.Linq;
using System.Web.UI;
using System.Web.UI.WebControls;
using DotNetNuke.Common.Utilities;
using DotNetNuke.Entities.Portals;
using DotNetNuke.Entities.Users;
using DotNetNuke.UI.Modules;
using R7.Dnn.Extensions.ViewModels;
using R7.News.Components;
using R7.News.Contr... | agpl-3.0 | C# |
fdf8998e46e08f017afdc53b884940470371dfb1 | Add AssembyResolver test | Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver | test/AsmResolver.DotNet.Tests/AssemblyResolverTest.cs | test/AsmResolver.DotNet.Tests/AssemblyResolverTest.cs | using System.IO;
using AsmResolver.DotNet.Signatures;
using AsmResolver.DotNet.TestCases.NestedClasses;
using Xunit;
namespace AsmResolver.DotNet.Tests
{
public class AssemblyResolverTest
{
private readonly SignatureComparer _comparer = new SignatureComparer();
[Fact]
publi... | using System.IO;
using AsmResolver.DotNet.Signatures;
using AsmResolver.DotNet.TestCases.NestedClasses;
using Xunit;
namespace AsmResolver.DotNet.Tests
{
public class AssemblyResolverTest
{
private readonly SignatureComparer _comparer = new SignatureComparer();
[Fact]
publi... | mit | C# |
0ec72a7b8c2f09bbdc3bc73f7fa1e4267d2c7edc | Fix formatting. | int19h/PTVS,int19h/PTVS,huguesv/PTVS,huguesv/PTVS,Microsoft/PTVS,DEVSENSE/PTVS,huguesv/PTVS,DEVSENSE/PTVS,int19h/PTVS,DEVSENSE/PTVS,int19h/PTVS,zooba/PTVS,zooba/PTVS,DEVSENSE/PTVS,DEVSENSE/PTVS,int19h/PTVS,Microsoft/PTVS,DEVSENSE/PTVS,Microsoft/PTVS,Microsoft/PTVS,Microsoft/PTVS,int19h/PTVS,huguesv/PTVS,zooba/PTVS,hugu... | Python/Product/Cookiecutter/Telemetry/DictionaryExtension.cs | Python/Product/Cookiecutter/Telemetry/DictionaryExtension.cs | // Python Tools for Visual Studio
// 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 copy of the
// License at http://www.apache.org/licenses/LICENSE-2.0
/... | // Python Tools for Visual Studio
// 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 copy of the
// License at http://www.apache.org/licenses/LICENSE-2.0
/... | apache-2.0 | C# |
f81b0c01ec686e43fb3da44c0758d1b4536e5284 | Add sqlite migrate on startup | mglodack/RedCard.API,mglodack/RedCard.API | src/RedCard.API/Program.cs | src/RedCard.API/Program.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Builder;
using RedCard.API.Contexts;
using Microsoft.EntityFrameworkCore;
namespace RedCard.API
{
public class Program
{
publ... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Builder;
namespace RedCard.API
{
public class Program
{
public static void Main(string[] args)
{
var host... | mit | C# |
9e9f6e0c9357c19014a87662cfa7525fbd09f413 | Fix error if Content-Length has already been set | xabikos/aspnet-webpack | src/Webpack/WebpackMiddleware.cs | src/Webpack/WebpackMiddleware.cs | using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http;
using Microsoft.Extensions.Logging;
using System.IO;
using System.Threading.Tasks;
namespace Webpack {
public class WebpackMiddleware {
RequestDelegate _next;
private readonly ILogger _logger;
WebPackMiddlewareOptions _options;
public WebpackMiddl... | using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http;
using Microsoft.Extensions.Logging;
using System.IO;
using System.Threading.Tasks;
namespace Webpack {
public class WebpackMiddleware {
RequestDelegate _next;
private readonly ILogger _logger;
WebPackMiddlewareOptions _options;
public WebpackMiddl... | mit | C# |
6662724f2b8e37518b76b4616d39b107da88053a | check if Dns.GetHostAddressesAsync got a ip "::1" then convert to 127.0.0.1 | gboucher90/thrift-netcore,gboucher90/thrift-netcore | src/thrift-netcore/Transport/TcpClientExtensions.cs | src/thrift-netcore/Transport/TcpClientExtensions.cs | using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace Thrift.Transport
{
public static class TcpClientExtensions
{
public static async Task ClientConnectAsync(this TcpClient tcpClient, string host, int por... | using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace Thrift.Transport
{
public static class TcpClientExtensions
{
public static async Task ClientConnectAsync(this TcpClient tcpClient, string host, int por... | apache-2.0 | C# |
6a971d3e42403c8e7f48ffe5c2b240c89f34e1b4 | add Timer in PomodoroService | zindlsn/RosaroterTiger | RosaroterPanterWPF/RosaroterPanterWPF/PomodoroService.cs | RosaroterPanterWPF/RosaroterPanterWPF/PomodoroService.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Timers;
namespace RosaroterPanterWPF
{
public class PomodoroService
{
private Timer Timer;
public PomodoroService()
{
}
public void StartT... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RosaroterPanterWPF.Services
{
public class PomodoroService
{
public void startTask(Task task)
{
}
}
}
| mit | C# |
b6076d50c10411868bee820e338753a0dbdd4878 | Use wss for lobby, not ws | Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training | src/ChessVariantsTraining/Views/Variant960/Lobby.cshtml | src/ChessVariantsTraining/Views/Variant960/Lobby.cshtml | @section Title{Variant960 Lobby}
@section AddToHead {
<link rel="stylesheet" type="text/css" href="@Url.Content("~/styles/variant960/lobby.css")">
<script type="text/javascript">window.wsUrl = "@Url.Action("LobbySocket", "Socket", null, "wss")";</script>
<script src="@Url.Content("~/scripts/variant960/lobb... | @section Title{Variant960 Lobby}
@section AddToHead {
<link rel="stylesheet" type="text/css" href="@Url.Content("~/styles/variant960/lobby.css")">
<script type="text/javascript">window.wsUrl = "@Url.Action("LobbySocket", "Socket", null, "ws")";</script>
<script src="@Url.Content("~/scripts/variant960/lobby... | agpl-3.0 | C# |
4913e83a32ef54d35acabd51936e979709892494 | Set correct min and max values | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Fluent/ViewModels/TestLineChartViewModel.cs | WalletWasabi.Fluent/ViewModels/TestLineChartViewModel.cs | using System.Collections.Generic;
namespace WalletWasabi.Fluent.ViewModels
{
public class TestLineChartViewModel
{
public double XAxisCurrentValue { get; set; } = 36;
public double XAxisMinValue { get; set; } = 1;
public double XAxisMaxValue { get; set; } = 1008;
public List<string> XAxisLabels => new Lis... | using System.Collections.Generic;
namespace WalletWasabi.Fluent.ViewModels
{
public class TestLineChartViewModel
{
public double XAxisCurrentValue { get; set; } = 36;
public double XAxisMinValue { get; set; } = 2;
public double XAxisMaxValue { get; set; } = 864;
public List<string> XAxisLabels => new List... | mit | C# |
875c31c2eca4a05c07d3c0ff89cda272fa9e9762 | fix tests | sachatrauwaen/OpenApp,sachatrauwaen/OpenApp,sachatrauwaen/OpenApp,sachatrauwaen/OpenApp,sachatrauwaen/OpenApp,sachatrauwaen/OpenApp | test/Satrabel.OpenApp.Tests/JobManagerTestModule.cs | test/Satrabel.OpenApp.Tests/JobManagerTestModule.cs | using System;
using Abp.AutoMapper;
using Abp.Dependency;
using Abp.Modules;
using Abp.Configuration.Startup;
using Abp.Net.Mail;
using Abp.TestBase;
using Abp.Zero.Configuration;
using Abp.Zero.EntityFrameworkCore;
using Satrabel.OpenApp.EntityFramework;
using Satrabel.OpenApp.Tests.DependencyInjection;
using Castle.M... | using System;
using Abp.AutoMapper;
using Abp.Dependency;
using Abp.Modules;
using Abp.Configuration.Startup;
using Abp.Net.Mail;
using Abp.TestBase;
using Abp.Zero.Configuration;
using Abp.Zero.EntityFrameworkCore;
using Satrabel.OpenApp.EntityFramework;
using Satrabel.OpenApp.Tests.DependencyInjection;
using Castle.M... | mit | C# |
fcbbf5703f4bef0560d753b44439ff6fbec1d6f1 | Fix LocalConfiguration values from being space sensitive | adam-mccoy/elasticsearch-net,elastic/elasticsearch-net,jonyadamit/elasticsearch-net,RossLieberman/NEST,RossLieberman/NEST,UdiBen/elasticsearch-net,cstlaurent/elasticsearch-net,cstlaurent/elasticsearch-net,cstlaurent/elasticsearch-net,adam-mccoy/elasticsearch-net,TheFireCookie/elasticsearch-net,azubanov/elasticsearch-ne... | src/Tests/Framework/Configuration/LocalConfiguration.cs | src/Tests/Framework/Configuration/LocalConfiguration.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tests.Framework.Configuration
{
public class LocalConfiguration
{
public bool IntegrationOverride { get; private set; } = false;
public string ManualOverrideVersion { ge... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tests.Framework.Configuration
{
public class LocalConfiguration
{
public bool IntegrationOverride { get; private set; } = false;
public string ManualOverrideVersion { ge... | apache-2.0 | C# |
47cb516a93c3e5c24a20ffac630c6f384b3fa67f | Reorder methods | appharbor/appharbor-cli | src/AppHarbor/AppHarborClient.cs | src/AppHarbor/AppHarborClient.cs | using System;
using System.Collections.Generic;
using AppHarbor.Model;
namespace AppHarbor
{
public class AppHarborClient : IAppHarborClient
{
private readonly AuthInfo _authInfo;
public AppHarborClient(string AccessToken)
{
_authInfo = new AuthInfo { AccessToken = AccessToken };
}
public CreateResul... | using System;
using System.Collections.Generic;
using AppHarbor.Model;
namespace AppHarbor
{
public class AppHarborClient : IAppHarborClient
{
private readonly AuthInfo _authInfo;
public AppHarborClient(string AccessToken)
{
_authInfo = new AuthInfo { AccessToken = AccessToken };
}
public CreateResul... | mit | C# |
6744ff5ac87c0dae9755d28a7529ed6e09d91fc8 | Update version 1.3.73 | agileharbor/shipStationAccess | src/Global/GlobalAssemblyInfo.cs | src/Global/GlobalAssemblyInfo.cs | using System;
using System.Reflection;
using System.Runtime.InteropServices;
[ assembly : ComVisible( false ) ]
[ assembly : AssemblyProduct( "ShipStationAccess" ) ]
[ assembly : AssemblyCompany( "Agile Harbor, LLC" ) ]
[ assembly : AssemblyCopyright( "Copyright (C) Agile Harbor, LLC" ) ]
[ assembly : Assembly... | using System;
using System.Reflection;
using System.Runtime.InteropServices;
[ assembly : ComVisible( false ) ]
[ assembly : AssemblyProduct( "ShipStationAccess" ) ]
[ assembly : AssemblyCompany( "Agile Harbor, LLC" ) ]
[ assembly : AssemblyCopyright( "Copyright (C) Agile Harbor, LLC" ) ]
[ assembly : Assembly... | bsd-3-clause | C# |
57b4eeb19a04ce1d2af64a637d06082b545435a2 | fix message | PKRoma/Fody,distantcam/Fody,huoxudong125/Fody,furesoft/Fody,Fody/Fody,GeertvanHorrik/Fody,ichengzi/Fody,ColinDabritzViewpoint/Fody,jasonholloway/Fody | Fody/InstanceLinker/WeaversConfiguredInstanceLinker.cs | Fody/InstanceLinker/WeaversConfiguredInstanceLinker.cs | using MethodTimer;
public partial class Processor
{
[Time]
public void ConfigureWhenWeaversFound()
{
foreach (var weaverConfig in Weavers)
{
ProcessConfig(weaverConfig);
}
}
public void ProcessConfig(WeaverEntry weaverConfig)
{
//support for diff n... | using MethodTimer;
public partial class Processor
{
[Time]
public void ConfigureWhenWeaversFound()
{
foreach (var weaverConfig in Weavers)
{
ProcessConfig(weaverConfig);
}
}
public void ProcessConfig(WeaverEntry weaverConfig)
{
//support for diff n... | mit | C# |
b5e820c6a84b51d38af12d09e9dbb491d17b19e5 | Update Demo | sunkaixuan/SqlSugar | Src/Asp.Net/OracleTest/Config.cs | Src/Asp.Net/OracleTest/Config.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class Config
{
public static string ConnectionString = "Data Source=localhost/orcl;User ID=system;Password=jhl856615011;";
}
}
| using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class Config
{
public static string ConnectionString = "Data Source=localhost/orcl;User ID=system;Password=jhl85661501;";
}
}
| apache-2.0 | C# |
f93487922d5cb49056151b668e4e79043361a09c | Update assembly info | Epinova/Epinova.QuickExport,Epinova/Epinova.QuickExport | src/Epinova.QuickExport/Properties/AssemblyInfo.cs | src/Epinova.QuickExport/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("Epinova.QuickExport")]
[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: AssemblyTitle("Epi... | mit | C# |
b4063c8d9cbadb09a6294ca4f53b65b9a6586b55 | Fix incorrect doc comments. | github/VisualStudio,github/VisualStudio,github/VisualStudio | src/GitHub.Exports.Reactive/Services/IGitClient.cs | src/GitHub.Exports.Reactive/Services/IGitClient.cs | using System;
using System.Reactive;
using LibGit2Sharp;
namespace GitHub.Services
{
public interface IGitClient
{
/// <summary>
/// Pushes the specified branch to the remote.
/// </summary>
/// <param name="repository">The repository to pull</param>
/// <param name="re... | using System;
using System.Reactive;
using LibGit2Sharp;
namespace GitHub.Services
{
public interface IGitClient
{
/// <summary>
/// Pushes the specified branch to the remote.
/// </summary>
/// <param name="repository">The repository to pull</param>
/// <param name="re... | mit | C# |
72cda724643082bd3b6b0f27fb5e5e37be62016b | Reorganize Assembler.cs | aivel/AlmostPDP11,aivel/AlmostPDP11 | AlmostPDP11/VM/Assembler/Assembler.cs | AlmostPDP11/VM/Assembler/Assembler.cs | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace VM.Assembler
{
public class Assembler
{
public static IEnumerable<ushort> Assambly(IEnumerable<String> program, int baseAddress)
{
return new ushort[] {};
}
}
} | using System;
using System.Collections.Generic;
namespace VM.Assembler
{
public class Assembler
{
public Assembler(IEnumerable<String> program, int baseAddress)
{
this.program = program;
BASEADDRESS = baseAddress;
}
public int BASEADDRESS { get; set; }... | mit | C# |
1884e35ceffeefd123d7aea2e0d5f458436e2cf3 | Revert "fixed compile error" | CombatCube/HoloAtelier | Assets/Scripts/RemoteHead.cs | Assets/Scripts/RemoteHead.cs | using UnityEngine;
using System.Collections;
public class RemoteHead : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
void OnSelect()
{
Debug.Log("Remote Head tapped!");
if (RemoteHeadManager.Instance.activeHe... | using UnityEngine;
using System.Collections;
public class RemoteHead : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
void OnSelect()
{
Debug.Log("Remote Head tapped!");
//if (RemoteHeadManager.Instance.active... | mit | C# |
4016695162a14ae5969c91c8a0b7ebe052ec09e8 | fix MC test for 'prefetch' in 3DNow.s.cs | AmesianX/capstone,code4bones/capstone,xia0pin9/capstone,AmesianX/capstone,pombredanne/capstone,zneak/capstone,fvrmatteo/capstone,pranith/capstone,techvoltage/capstone,dynm/capstone,nplanel/capstone,zuloloxi/capstone,capturePointer/capstone,pranith/capstone,zuloloxi/capstone,sigma-random/capstone,zneak/capstone,bSr43/ca... | suite/MC/X86/3DNow.s.cs | suite/MC/X86/3DNow.s.cs | # CS_ARCH_X86, CS_MODE_32, CS_OPT_SYNTAX_ATT
0x0f,0x0f,0xca,0xbf = pavgusb %mm2, %mm1
0x67,0x0f,0x0f,0x5c,0x16,0x09,0xbf = pavgusb 9(%esi,%edx), %mm3
0x0f,0x0f,0xca,0x1d = pf2id %mm2, %mm1
0x67,0x0f,0x0f,0x5c,0x16,0x09,0x1d = pf2id 9(%esi,%edx), %mm3
0x0f,0x0f,0xca,0xae = pfacc %mm2, %mm1
0x0f,0x0f,0xca,0x9e = pfadd %m... | # CS_ARCH_X86, CS_MODE_32, CS_OPT_SYNTAX_ATT
0x0f,0x0f,0xca,0xbf = pavgusb %mm2, %mm1
0x67,0x0f,0x0f,0x5c,0x16,0x09,0xbf = pavgusb 9(%esi,%edx), %mm3
0x0f,0x0f,0xca,0x1d = pf2id %mm2, %mm1
0x67,0x0f,0x0f,0x5c,0x16,0x09,0x1d = pf2id 9(%esi,%edx), %mm3
0x0f,0x0f,0xca,0xae = pfacc %mm2, %mm1
0x0f,0x0f,0xca,0x9e = pfadd %m... | bsd-3-clause | C# |
6570a8fefad8eb0164aef8c70d6e7cd53173432f | fix the internals visible to | DHGMS-Solutions/gripewithroslyn | src/Dhgms.GripeWithRoslyn.Analyzer/Properties/AssemblyInfo.cs | src/Dhgms.GripeWithRoslyn.Analyzer/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: AssemblyDescripti... | 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: AssemblyDescripti... | mit | C# |
3e93a708a68e70c725f19094a31a71d195051cd9 | make sure matrix aggs is added to solution on master, fix upgrade api tests on master as well | adam-mccoy/elasticsearch-net,CSGOpenSource/elasticsearch-net,adam-mccoy/elasticsearch-net,elastic/elasticsearch-net,CSGOpenSource/elasticsearch-net,elastic/elasticsearch-net,adam-mccoy/elasticsearch-net,CSGOpenSource/elasticsearch-net | src/Tests/Indices/StatusManagement/Upgrade/UpgradeApiTests.cs | src/Tests/Indices/StatusManagement/Upgrade/UpgradeApiTests.cs | using System;
using Elasticsearch.Net;
using Nest;
using Tests.Framework;
using Tests.Framework.Integration;
using Tests.Framework.MockData;
using Xunit;
using static Nest.Infer;
namespace Tests.Indices.StatusManagement.Upgrade
{
public class UpgradeApiTests
: ApiIntegrationAgainstNewIndexTestBase
<IntrusiveOpe... | using System;
using Elasticsearch.Net;
using Nest;
using Tests.Framework;
using Tests.Framework.Integration;
using Tests.Framework.MockData;
using Xunit;
using static Nest.Infer;
namespace Tests.Indices.StatusManagement.Upgrade
{
public class UpgradeApiTests
: ApiIntegrationAgainstNewIndexTestBase
<IntrusiveOpe... | apache-2.0 | C# |
35fdc55d52e3b7b1c88758365c884344e3a2176d | Fix merge conflict resolution | sharwell/roslyn,AlekseyTs/roslyn,CyrusNajmabadi/roslyn,weltkante/roslyn,jasonmalinowski/roslyn,jmarolf/roslyn,gafter/roslyn,AmadeusW/roslyn,eriawan/roslyn,weltkante/roslyn,stephentoub/roslyn,CyrusNajmabadi/roslyn,davkean/roslyn,mgoertz-msft/roslyn,KevinRansom/roslyn,jmarolf/roslyn,shyamnamboodiripad/roslyn,davkean/rosl... | src/VisualStudio/LiveShare/Test/RunCodeActionsHandlerTests.cs | src/VisualStudio/LiveShare/Test/RunCodeActionsHandlerTests.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.Linq;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.... | // 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.Linq;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.... | mit | C# |
b45d121c24f040d6c5b8cfa67d2745ea8692e802 | Fix puller empty statement | space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14 | Content.Shared/Pulling/Systems/SharedPullerSystem.cs | Content.Shared/Pulling/Systems/SharedPullerSystem.cs | using Content.Shared.Alert;
using Content.Shared.Hands;
using Content.Shared.Physics.Pull;
using Content.Shared.Pulling.Components;
using JetBrains.Annotations;
using Robust.Shared.GameObjects;
namespace Content.Shared.Pulling.Systems
{
[UsedImplicitly]
public sealed class SharedPullerSystem : EntitySystem
... | using Content.Shared.Alert;
using Content.Shared.Hands;
using Content.Shared.Physics.Pull;
using Content.Shared.Pulling.Components;
using JetBrains.Annotations;
using Robust.Shared.GameObjects;
namespace Content.Shared.Pulling.Systems
{
[UsedImplicitly]
public sealed class SharedPullerSystem : EntitySystem
... | mit | C# |
a70a23981472e089b8eb82306bc918316778fb60 | Update docs for license status | SerialKeyManager/SKGL-Extension-for-dot-NET,artemlos/SKGL-Extension-for-dot-NET | Cryptolens.Licensing/LicenseRelated/LicenseStatus.cs | Cryptolens.Licensing/LicenseRelated/LicenseStatus.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SKM.V3.Methods;
namespace SKM.V3
{
/// <summary>
/// This field is obtained when you either call <see cref="Key.Activate(string, Models.ActivateModel)"/>
/// or <see cref="Key.GetKey(string, Models.KeyInfoModel)"/... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SKM.V3.Methods;
namespace SKM.V3
{
/// <summary>
/// This field is obtained when you either call <see cref="Key.Activate(string, Models.ActivateModel)"/>
/// or <see cref="Key.GetKey(string, Models.KeyInfoModel)"/... | bsd-3-clause | C# |
64d3b91c9e1ba911c7977c8109f0f6681b1a6a58 | Clean standalone-test | splunk/splunk-library-dotnetlogging | standalone-test/Program.cs | standalone-test/Program.cs | using Splunk.Logging;
using System;
namespace standalone_test
{
/// <summary>
/// Playground for Splunk logging .NET library.
/// </summary>
class Program
{
static void Main(string[] args)
{
}
}
}
| using Splunk.Logging;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Practices.EnterpriseLibrary.SemanticLogging;
using System.Diagnostics.Tracing;
namespace standalo... | apache-2.0 | C# |
605822a364e3a5b47f8c898950859d1e158c5b95 | Add AddChild shortcut for IPermissionService | MarinAtanasov/AppBrix,MarinAtanasov/AppBrix.NetCore | Modules/AppBrix.Permissions/PermissionsExtensions.cs | Modules/AppBrix.Permissions/PermissionsExtensions.cs | // Copyright (c) MarinAtanasov. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the project root for license information.
//
using AppBrix.Permissions;
using System;
using System.Collections.Generic;
using System.Linq;
namespace AppBrix
{
/// <summary>
/// Extension methods for... | // Copyright (c) MarinAtanasov. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the project root for license information.
//
using AppBrix.Permissions;
using System;
using System.Collections.Generic;
using System.Linq;
namespace AppBrix
{
/// <summary>
/// Extension methods for... | mit | C# |
cb1a4584ea0ddf8952eff74fb919a314f169cd82 | bump version | hpcsc/Sharpenter.BootstrapperLoader | Sharpenter.BootstrapperLoader/Properties/AssemblyInfo.cs | Sharpenter.BootstrapperLoader/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("Sh... | 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("Sh... | mit | C# |
8531853aa2093613ee27e7542aef267bb1bf7d94 | Use ConcurrentDictionary instead of Dictionary to allow lock-free async access | FetzenRndy/Creative,FetzenRndy/Creative,FetzenRndy/Creative,FetzenRndy/Creative,FetzenRndy/Creative | Creative/StatoBot/StatoBot.Analytics/Statistics.cs | Creative/StatoBot/StatoBot.Analytics/Statistics.cs | using System;
using System.Text;
using System.Collections.Concurrent;
namespace StatoBot.Analytics
{
public class Statistics : ConcurrentDictionary<string, decimal>
{
private readonly Encoding encoder;
public Statistics()
{
encoder = Encoding.GetEncoding(
"U... | using System;
using System.Collections.Generic;
using System.Text;
namespace StatoBot.Analytics
{
public class Statistics : Dictionary<string, decimal>
{
private readonly Encoding encoder;
private readonly object mutationLock;
public Statistics()
{
encoder = Encoding.GetEncoding(
"UTF-8",
new Enc... | mit | C# |
a27ca640651486367ca5f0ebaf6c9f089c5ba569 | Fix incorrect comment | martincostello/adventofcode,martincostello/adventofcode,martincostello/adventofcode,martincostello/adventofcode | tests/AdventOfCode.Tests/Puzzles/Y2017/Day11Tests.cs | tests/AdventOfCode.Tests/Puzzles/Y2017/Day11Tests.cs | // Copyright (c) Martin Costello, 2015. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
namespace MartinCostello.AdventOfCode.Puzzles.Y2017
{
using Xunit;
/// <summary>
/// A class containing tests for the <see cref="Day... | // Copyright (c) Martin Costello, 2015. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
namespace MartinCostello.AdventOfCode.Puzzles.Y2017
{
using Xunit;
/// <summary>
/// A class containing tests for the <see cref="Day... | apache-2.0 | C# |
0ade34f964857faff036d59de3d48c5241fcc3e8 | Use PuzzleTest base class | martincostello/adventofcode,martincostello/adventofcode,martincostello/adventofcode,martincostello/adventofcode | tests/AdventOfCode.Tests/Puzzles/Y2018/Day01Tests.cs | tests/AdventOfCode.Tests/Puzzles/Y2018/Day01Tests.cs | // Copyright (c) Martin Costello, 2015. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
namespace MartinCostello.AdventOfCode.Puzzles.Y2018
{
using Xunit;
using Xunit.Abstractions;
/// <summary>
/// A class containi... | // Copyright (c) Martin Costello, 2015. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
namespace MartinCostello.AdventOfCode.Puzzles.Y2018
{
using Xunit;
/// <summary>
/// A class containing tests for the <see cref="Da... | apache-2.0 | C# |
c743be578ea820c73bf9fb42a05d3f22af993f94 | Make builds a top level menu item | jaredpar/jenkins,jaredpar/jenkins,jaredpar/jenkins | Dashboard/Views/Shared/_Layout.cshtml | Dashboard/Views/Shared/_Layout.cshtml | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-i... | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-i... | apache-2.0 | C# |
55a89556b53feeb6fcaa15ae48305994e690f2e0 | Update IntrospectionExtensions.cs (#8029) | sagood/coreclr,cmckinsey/coreclr,botaberg/coreclr,mmitche/coreclr,qiudesong/coreclr,JonHanna/coreclr,YongseopKim/coreclr,dpodder/coreclr,rartemev/coreclr,qiudesong/coreclr,pgavlin/coreclr,krytarowski/coreclr,gkhanna79/coreclr,botaberg/coreclr,yizhang82/coreclr,JosephTremoulet/coreclr,cydhaselton/coreclr,YongseopKim/cor... | src/mscorlib/src/System/Reflection/IntrospectionExtensions.cs | src/mscorlib/src/System/Reflection/IntrospectionExtensions.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.
/*=============================================================================
**
**
**
**
**
** Purpose: Get the ... | // 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.
/*=============================================================================
**
**
**
**
**
** Purpose: go from ... | mit | C# |
11288677e0121fd885269088b2df4c4bd3f1a61f | Revert "Fix The GlowWindow in the taskmanager" | chuuddo/MahApps.Metro,jumulr/MahApps.Metro,Jack109/MahApps.Metro,MahApps/MahApps.Metro,Evangelink/MahApps.Metro,pfattisc/MahApps.Metro,xxMUROxx/MahApps.Metro,psinl/MahApps.Metro,Danghor/MahApps.Metro,ye4241/MahApps.Metro,p76984275/MahApps.Metro,batzen/MahApps.Metro | MahApps.Metro/Behaviours/GlowWindowBehavior.cs | MahApps.Metro/Behaviours/GlowWindowBehavior.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Interactivity;
using MahApps.Metro.Controls;
namespace MahApps.Metro.Behaviours
{
public class GlowWindowBehavior : Behavior<Window>
{
private GlowWindow left, right, top, b... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Interactivity;
using MahApps.Metro.Controls;
namespace MahApps.Metro.Behaviours
{
public class GlowWindowBehavior : Behavior<Window>
{
private GlowWindow left, right, top, b... | mit | C# |
fb9cb6ba05da0396e4f967560ae7d9b7ca3d560a | add asembly info | csyntax/MyDynamicXmlBuilder | MyDynamicXmlBuilder/Properties/AssemblyInfo.cs | MyDynamicXmlBuilder/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("MyDynamicXmlBuilder")]
[assembly: AssemblyDescription("Dynamic XML construction API for .NET")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProdu... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
/*
Todo
Add AssemblyDescription
*/
[assembly: AssemblyTitle("MyDynamicXmlBuilder")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: Assem... | mit | C# |
a8b7904b00ee933a62724adbb9f89d30b0024e33 | Fix logger category of FileStreamResultExecutor | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Microsoft.AspNetCore.Mvc.Core/Internal/FileStreamResultExecutor.cs | src/Microsoft.AspNetCore.Mvc.Core/Internal/FileStreamResultExecutor.cs | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Net.Http.Headers;
namespace Microsoft.AspNetCore.Mvc.I... | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Net.Http.Headers;
namespace Microsoft.AspNetCore.Mvc.I... | apache-2.0 | C# |
49ab5d74ed1e41481a361d5a68ecde1505b31445 | use invariant culture for svg parsing | prime31/Nez,prime31/Nez,ericmbernier/Nez,prime31/Nez | Nez.Portable/Graphics/SVG/Shapes/SvgPolygon.cs | Nez.Portable/Graphics/SVG/Shapes/SvgPolygon.cs | using System.Xml.Serialization;
using Microsoft.Xna.Framework;
namespace Nez.Svg
{
public class SvgPolygon : SvgElement
{
[XmlAttribute( "cx" )]
public float centerX;
[XmlAttribute( "cy" )]
public float centerY;
[XmlAttribute( "sides" )]
public int sides;
[XmlAttribute( "points" )]
public string... | using System.Xml.Serialization;
using Microsoft.Xna.Framework;
namespace Nez.Svg
{
public class SvgPolygon : SvgElement
{
[XmlAttribute( "cx" )]
public float centerX;
[XmlAttribute( "cy" )]
public float centerY;
[XmlAttribute( "sides" )]
public int sides;
[XmlAttribute( "points" )]
public string... | mit | C# |
9e4fcf59b881225b441554f5f573d232a9c288ba | Build and publish XSerializer release candidate package | RockFramework/Rock.Encryption | Rock.Encryption.XSerializer/Properties/AssemblyInfo.cs | Rock.Encryption.XSerializer/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("Ro... | 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("Ro... | mit | C# |
bfea0a7b8fc7d219fd2d2e11300c22ea663ef4b9 | Update tests/System.Web.Compatibility.Tests/System.Web.Compatibility.Tests.cs | tarekgh/corefxlab,dotnet/corefxlab,tarekgh/corefxlab,dotnet/corefxlab | tests/System.Web.Compatibility.Tests/System.Web.Compatibility.Tests.cs | tests/System.Web.Compatibility.Tests/System.Web.Compatibility.Tests.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.Web;
using System.Web.Hosting;
using Xunit;
namespace System.Web.Compatibility.Tests
{
public cla... | // 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.Web;
using System.Web.Hosting;
using Xunit;
namespace System.Web.Compatibility.Tests
{
public cla... | mit | C# |
6e5c3c6853243158836ec99e0a90928c1a9e6a3e | generalize AutomaticInstanceOf to work with non-singleton lifetimes | StephenClearyApps/DotNetApis,StephenClearyApps/DotNetApis,StephenClearyApps/DotNetApis,StephenClearyApps/DotNetApis | service/DotNetApis.SimpleInjector/AutomaticInstanceOf.cs | service/DotNetApis.SimpleInjector/AutomaticInstanceOf.cs | using System;
using System.Linq;
using System.Linq.Expressions;
using SimpleInjector;
using SimpleInjector.Advanced;
namespace DotNetApis.SimpleInjector
{
public sealed class AutomaticInstanceOf : IDependencyInjectionBehavior
{
private readonly IDependencyInjectionBehavior _decorated;
private ... | using System.Linq;
using System.Linq.Expressions;
using SimpleInjector;
using SimpleInjector.Advanced;
namespace DotNetApis.SimpleInjector
{
public sealed class AutomaticInstanceOf : IDependencyInjectionBehavior
{
private readonly IDependencyInjectionBehavior _decorated;
private readonly Conta... | mit | C# |
6ad910377b64a8407701fdd2713b58288974df92 | Correct compile error in tests | NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework | Spa/NakedObjects.Spa.Selenium.Test/tests/TestConfig.cs | Spa/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://nakedobjectstest.azurewebsites.net/";
}
}
|
namespace NakedObjects.Web.UnitTests.Selenium
{
public static class TestConfig
{
//public const string BaseUrl = "http://localhost:49998/";
public const string BaseUrl = "http://nakedobjectstest.azurewebsites.net/";
}
}
| apache-2.0 | C# |
af0b79f8de882759f1299872b8f0a6373d0c412b | fix converter | Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns | TCC.Core/Converters/BoolToVisibleCollapsedConverter.cs | TCC.Core/Converters/BoolToVisibleCollapsedConverter.cs | using System;
using System.Globalization;
using System.Windows;
using System.Windows.Data;
namespace TCC.Converters
{
public class BoolToVisibleCollapsedConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var i... | using System;
using System.Globalization;
using System.Windows;
using System.Windows.Data;
namespace TCC.Converters
{
public class BoolToVisibleCollapsedConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var i... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.