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 |
|---|---|---|---|---|---|---|---|---|
fc41e893302531bee85e2409f581e24e69eb7165 | Set version to RC. | yurko7/math-expression | math-expression/Properties/AssemblyInfo.cs | math-expression/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("ma... | 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("ma... | mit | C# |
580125f1a9b7b185ce8be5a278cdfcb515a926f0 | Update IllegalStreamException.cs | stephanstapel/ZUGFeRD-csharp,stephanstapel/ZUGFeRD-csharp | ZUGFeRD/IllegalStreamException.cs | ZUGFeRD/IllegalStreamException.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")... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace s2industries.ZUGFeRD
{
public class IllegalStreamException : Exception
{
public IllegalStreamException(string message = "")
: base(message)
{
}
}
}
| apache-2.0 | C# |
3d81a5c8d649f8aaa779439c7aafbdc5517a0b5e | Add DotNetNativeWorkaround | killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity | Assets/MixedRealityToolkit.Providers/WindowsMixedReality/WindowsMixedRealityUtilities.cs | Assets/MixedRealityToolkit.Providers/WindowsMixedReality/WindowsMixedRealityUtilities.cs | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
#if WINDOWS_UWP
#if ENABLE_DOTNET
using System;
#endif // ENABLE_DOTNET
using System.Runtime.InteropServices;
using UnityEngine.XR.WSA;
using Windows.Perception.Spat... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
#if WINDOWS_UWP
using System.Runtime.InteropServices;
using UnityEngine.XR.WSA;
using Windows.Perception.Spatial;
#endif // WINDOWS_UWP
namespace Microsoft.MixedRea... | mit | C# |
a2a831a55f54159379f237ee65a773535a92f8c7 | Fix order of mouse effects and remove obsolete Custom effect. | danpierce1/Colore,CoraleStudios/Colore,WolfspiritM/Colore | Corale.Colore/Razer/Mouse/Effects/Effect.cs | Corale.Colore/Razer/Mouse/Effects/Effect.cs | // ---------------------------------------------------------------------------------------
// <copyright file="Effect.cs" company="Corale">
// Copyright © 2015 by Adam Hellberg and Brandon Scott.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and asso... | // ---------------------------------------------------------------------------------------
// <copyright file="Effect.cs" company="Corale">
// Copyright © 2015 by Adam Hellberg and Brandon Scott.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and asso... | mit | C# |
208ee608bc660507879637cc5ab2895648c5e308 | Update HomeController.cs | NanoMania/GitRepoVisualStudio,NanoMania/GitRepoVisualStudio | GitTutorialVS/Controllers/HomeController.cs | GitTutorialVS/Controllers/HomeController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace GitTutorialVS.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
//edited on git hub
//edited on git hub
return V... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace GitTutorialVS.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
//edited on git hub
return View();
}
pu... | mit | C# |
fd61689a0f0fd28c2fa3cd877ef0661b072ac40b | Make RowsListener sealed. | JohanLarsson/Gu.Wpf.DataGrid2D,mennowo/Gu.Wpf.DataGrid2D | Gu.Wpf.DataGrid2D/Internals/RowsListener.cs | Gu.Wpf.DataGrid2D/Internals/RowsListener.cs | namespace Gu.Wpf.DataGrid2D
{
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
internal sealed class RowsListener : IDisposable
{
private static readonly RoutedEventArgs RowsChangedEventArgs = new RoutedEventArgs(Events.RowsCha... | namespace Gu.Wpf.DataGrid2D
{
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
internal class RowsListener : IDisposable
{
private static readonly RoutedEventArgs RowsChangedEventArgs = new RoutedEventArgs(Events.RowsChangedEve... | mit | C# |
a4081acd2d77349530f741d88e4ab4e520d9037a | Fix logging of the notification message (#10321) | stevetayloruk/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2 | src/OrchardCore/OrchardCore.DisplayManagement/Notify/Notifier.cs | src/OrchardCore/OrchardCore.DisplayManagement/Notify/Notifier.cs | using System;
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc.Localization;
using Microsoft.Extensions.Logging;
namespace OrchardCore.DisplayManagement.Notify
{
public class Notifier : INotifier
{
private readonly IList<NotifyEntry> _entries;
private readonly ILogger _logger;
... | using System;
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc.Localization;
using Microsoft.Extensions.Logging;
namespace OrchardCore.DisplayManagement.Notify
{
public class Notifier : INotifier
{
private readonly IList<NotifyEntry> _entries;
private readonly ILogger _logger;
... | bsd-3-clause | C# |
a01fddf422fa03e3054837bc52393635a7b9537c | Fix null reference in XmlCommentsModelFilter (fixes #100) | domaindrivendev/Ahoy,domaindrivendev/Swashbuckle.AspNetCore,domaindrivendev/Swashbuckle.AspNetCore,oconics/Ahoy,domaindrivendev/Swashbuckle.AspNetCore,domaindrivendev/Ahoy,domaindrivendev/Ahoy,oconics/Ahoy | src/Swashbuckle.SwaggerGen/Annotations/XmlCommentsModelFilter.cs | src/Swashbuckle.SwaggerGen/Annotations/XmlCommentsModelFilter.cs | using System.Xml.XPath;
using System.Reflection;
using Swashbuckle.SwaggerGen.Generator;
using Swashbuckle.Swagger.Model;
namespace Swashbuckle.SwaggerGen.Annotations
{
public class XmlCommentsModelFilter : IModelFilter
{
private const string MemberXPath = "/doc/members/member[@name='{0}']";
p... | using System.Xml.XPath;
using System.Reflection;
using Swashbuckle.SwaggerGen.Generator;
using Swashbuckle.Swagger.Model;
namespace Swashbuckle.SwaggerGen.Annotations
{
public class XmlCommentsModelFilter : IModelFilter
{
private const string MemberXPath = "/doc/members/member[@name='{0}']";
p... | mit | C# |
3cfc1c13a0e51bc16f4086a14910155294f86e4a | Increment assembly version | alex-buraykin/E3Series.Wrapper | E3Series.Wrapper/Properties/AssemblyInfo.cs | E3Series.Wrapper/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("E3... | 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("E3... | mit | C# |
7459f05cbbb7a026fa4b3b58f8fe94757e53871a | Bump version. | wasker/nsight.piwik.api | Nsight.Piwik.Api/Properties/AssemblyInfo.cs | Nsight.Piwik.Api/Properties/AssemblyInfo.cs | using System.Resources;
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 assembl... | using System.Resources;
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 assembl... | mit | C# |
bee9b8246597529fa878b38a9696fbde8673d970 | Update assembly info. | VoiDeD/OctgnArtReplacer | OctgnArtReplacer/Properties/AssemblyInfo.cs | OctgnArtReplacer/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( "O... | 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( "O... | mit | C# |
43837dce4af504439f1a213efbff0683074901a6 | Allow IsEnabled to be set by scheduling strategies. | p-org/PSharp | Source/SchedulingStrategies/ISchedulable.cs | Source/SchedulingStrategies/ISchedulable.cs | //-----------------------------------------------------------------------
// <copyright file="ISchedulable.cs">
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARR... | //-----------------------------------------------------------------------
// <copyright file="ISchedulable.cs">
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARR... | mit | C# |
10396eac750a43e57e2e06849558bd150267d639 | Remove unused sandbox setup | appharbor/ConsolR,appharbor/ConsolR | Core/Sandbox.cs | Core/Sandbox.cs | using System;
using System.IO;
using System.Reflection;
using System.Runtime.Serialization;
using System.Security;
using System.Security.Permissions;
using System.Security.Policy;
using System.Threading.Tasks;
using Compilify.Models;
using Compilify.Services;
using Roslyn.Scripting.CSharp;
namespace Compi... | using System;
using System.IO;
using System.Reflection;
using System.Runtime.Serialization;
using System.Security;
using System.Security.Permissions;
using System.Security.Policy;
using System.Threading.Tasks;
using Compilify.Models;
using Compilify.Services;
using Roslyn.Scripting.CSharp;
namespace Compi... | mit | C# |
ae98f3d5e9bc06369ce1a31ded346be3d4de0787 | Add summary | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/Extensions/StringExtensions.cs | WalletWasabi/Extensions/StringExtensions.cs | using System.Linq;
namespace System
{
public static class StringExtensions
{
public static bool Equals(this string source, string value, StringComparison comparisonType, bool trimmed)
{
if (comparisonType == StringComparison.Ordinal)
{
if (trimmed)
{
return string.CompareOrdinal(source.Trim(),... | using System.Linq;
namespace System
{
public static class StringExtensions
{
public static bool Equals(this string source, string value, StringComparison comparisonType, bool trimmed)
{
if (comparisonType == StringComparison.Ordinal)
{
if (trimmed)
{
return string.CompareOrdinal(source.Trim(),... | mit | C# |
660c678cdcbe74b8a6b6fe55555a60b2b778f820 | Remove unused using directives | NeoAdonis/osu,UselessToucan/osu,ppy/osu,johnneijzen/osu,ZLima12/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,smoogipoo/osu,2yangk23/osu,peppy/osu-new,peppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,ZLima12/osu,EVAST9919/osu,ppy/osu,2yangk23/osu,johnneijzen/osu,smoogipooo/osu,EVA... | osu.Game/Overlays/Rankings/HeaderFlag.cs | osu.Game/Overlays/Rankings/HeaderFlag.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Game.Users.Drawables;
using osuTK.Graphics;
using osuTK;
using osu.Framework.Input.Events;
... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
using osu.Game.Users.Dr... | mit | C# |
064751d3714a3507c3e37118ab7fd854560ec076 | Add clipping for Gtk2 context | TheBrainTech/xwt,directhex/xwt,akrisiun/xwt,mono/xwt,sevoku/xwt,hamekoz/xwt,mminns/xwt,residuum/xwt,steffenWi/xwt,lytico/xwt,hwthomas/xwt,cra0zy/xwt,antmicro/xwt,mminns/xwt,iainx/xwt | Xwt.Gtk/Xwt.GtkBackend/CanvasBackendGtk2.cs | Xwt.Gtk/Xwt.GtkBackend/CanvasBackendGtk2.cs | //
// CanvasBackendGtk.cs
//
// Author:
// Vsevolod Kukol <v.kukol@rubologic.de>
//
// Copyright (c) 2014 Vsevolod Kukol
//
// 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 re... | //
// CanvasBackendGtk.cs
//
// Author:
// Vsevolod Kukol <v.kukol@rubologic.de>
//
// Copyright (c) 2014 Vsevolod Kukol
//
// 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 re... | mit | C# |
4020c81cb428e3334cc1c38a181a1dad1377fe5c | Tidy up. | TimCollins/Reddit.DailyProgrammer | src/14-Hard-ThreadedSort/ThreadedSort.cs | src/14-Hard-ThreadedSort/ThreadedSort.cs | using System;
namespace _14_Hard_ThreadedSort
{
public class ThreadedSort
{
//private const int SizeLimit = 1000000;
private const int SizeLimit = 100;
private const int NumberLimit = 1000;
private int[] _numbers;
public void Generate()
{
_numbers =... | using System;
namespace _14_Hard_ThreadedSort
{
public class ThreadedSort
{
//private const int SizeLimit = 1000000;
private const int SizeLimit = 100;
private const int NumberLimit = 1000;
private int[] _numbers;
public void Generate()
{
//_numbers... | mit | C# |
b4b7a667d0805e37c0a0d2780e62453c5a9c410b | Add integration from master to feature/ioperation | MattWindsor91/roslyn,ErikSchierboom/roslyn,orthoxerox/roslyn,dpoeschl/roslyn,kelltrick/roslyn,MichalStrehovsky/roslyn,VSadov/roslyn,MichalStrehovsky/roslyn,sharwell/roslyn,TyOverby/roslyn,tannergooding/roslyn,heejaechang/roslyn,tvand7093/roslyn,bartdesmet/roslyn,physhi/roslyn,orthoxerox/roslyn,nguerrera/roslyn,AlekseyT... | src/Tools/Github/GithubMergeTool/run.csx | src/Tools/Github/GithubMergeTool/run.csx | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
#r "GithubMergeTool.dll"
#load "auth.csx"
using System;
using System.Net;
using System.Threading.Tasks;
private static string DotnetBotGithubAuthToken = n... | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
#r "GithubMergeTool.dll"
#load "auth.csx"
using System;
using System.Net;
using System.Threading.Tasks;
private static string DotnetBotGithubAuthToken = n... | apache-2.0 | C# |
61688c069a12f2171bda4860c5554a684a27022e | Change driver version. | kangkot/ArangoDB-NET,yojimbo87/ArangoDB-NET | src/Arango/Arango.Client/ArangoClient.cs | src/Arango/Arango.Client/ArangoClient.cs | using System.Collections.Generic;
using System.Linq;
using Arango.Client.Protocol;
namespace Arango.Client
{
public static class ArangoClient
{
private static List<Connection> _connections = new List<Connection>();
public static string DriverName
{
get { return ... | using System.Collections.Generic;
using System.Linq;
using Arango.Client.Protocol;
namespace Arango.Client
{
public static class ArangoClient
{
private static List<Connection> _connections = new List<Connection>();
public static string DriverName
{
get { return ... | mit | C# |
da9539132c93bbdc21f5d59c1dcc3119eb8265fa | add perfomance measuring to repl | corvusalba/my-little-lispy,corvusalba/my-little-lispy | src/CorvusAlba.MyLittleLispy.CLI/Repl.cs | src/CorvusAlba.MyLittleLispy.CLI/Repl.cs | using System;
using System.Diagnostics;
using System.Linq;
using CorvusAlba.MyLittleLispy.Hosting;
using CorvusAlba.MyLittleLispy.Runtime;
namespace CorvusAlba.MyLittleLispy.CLI
{
internal class Repl
{
private readonly ScriptEngine _engine;
public Repl(ScriptEngine engine)
{
_engine = engine;
}
pub... | using System;
using System.Linq;
using CorvusAlba.MyLittleLispy.Hosting;
using CorvusAlba.MyLittleLispy.Runtime;
namespace CorvusAlba.MyLittleLispy.CLI
{
internal class Repl
{
private readonly ScriptEngine _engine;
public Repl(ScriptEngine engine)
{
_engine = engine;
}
public int Loop()
{
whi... | mit | C# |
90aa55ba58a237da07f1992d0150dd7e1df646d4 | add gravatar hash | planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell | src/Firehose.Web/Authors/ThomasRayner.cs | src/Firehose.Web/Authors/ThomasRayner.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class ThomasRayner : IWorkAtMicrosoft
{
public string FirstName => "Thomas";
public string LastN... | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class ThomasRayner : IWorkAtMicrosoft
{
public string FirstName => "Thomas";
public string LastN... | mit | C# |
a34d5b051256db1cbb14801b84f5871ad6d9cf3f | Update GroupShapesDragAndDropListBox.cs | Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D | Core2D.Wpf/Controls/Custom/Lists/GroupShapesDragAndDropListBox.cs | Core2D.Wpf/Controls/Custom/Lists/GroupShapesDragAndDropListBox.cs | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Collections.Immutable;
using System.Windows.Controls;
namespace Core2D.Wpf.Controls.Custom.Lists
{
/// <summary>
/// The <see cref="ListBox"/... | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Collections.Immutable;
using System.Windows.Controls;
namespace Core2D.Wpf.Controls.Custom.Lists
{
/// <summary>
/// The <see cref="ListBox"/... | mit | C# |
49affd7e9e4c5029abbd61a05a3813fa5e1d8659 | Fix UMake | bitcake/bitstrap | Assets/BitStrap/Plugins/Editor/UMake/UMake.cs | Assets/BitStrap/Plugins/Editor/UMake/UMake.cs | using UnityEditor;
using UnityEngine;
namespace BitStrap
{
public sealed class UMake : ScriptableObject
{
public const string buildPathPrefKey = "UMake_BuildPath_";
public string version = "0.0";
[UMakeTargetActions]
public UMakeTarget[] targets;
private static Option<UMake> instance = Functional.None;
... | using UnityEditor;
using UnityEngine;
namespace BitStrap
{
public sealed class UMake : ScriptableObject
{
public const string buildPathPrefKey = "UMake_BuildPath_";
public string version = "0.0";
[UMakeTargetActions]
public UMakeTarget[] targets;
private static Option<UMake> instance = Functional.None;
... | mit | C# |
98daaf634ae4851fec97326efe1e9a0eea65137f | Simplify changes | johnneijzen/osu,smoogipoo/osu,peppy/osu-new,smoogipoo/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipooo/osu,ZLima12/osu,EVAST9919/osu,ppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu,UselessToucan/osu,EVAST9919/osu,johnneijzen/osu,2yangk23/osu,2yangk23/osu,peppy/osu,NeoAdonis/osu,ZLima12/osu,smoogipoo/osu,Useless... | osu.Game/Rulesets/Mods/ModBlockFail.cs | osu.Game/Rulesets/Mods/ModBlockFail.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Game.Configuration;
using osu.Game.Screens.Play;
using osu.Game.Screens.Play.HUD;
namespace osu.Ga... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Game.Configuration;
using osu.Game.Screens.Play;
using osu.Game.Screens.Play.HUD;
namespace osu.Ga... | mit | C# |
8d22a8e606efe1ae147368fc6ea10e7705596e33 | Revert change to Inspect | ashmind/SharpLab,ashmind/SharpLab,ashmind/SharpLab,ashmind/SharpLab,ashmind/SharpLab,ashmind/SharpLab | source/Runtime/SharpLabObjectExtensions.cs | source/Runtime/SharpLabObjectExtensions.cs | using System.ComponentModel;
using System.Text;
using SharpLab.Runtime.Internal;
public static class SharpLabObjectExtensions {
// LinqPad/etc compatibility only
[EditorBrowsable(EditorBrowsableState.Never)]
public static T Dump<T>(this T value)
=> value.Inspect(title: "Dump");
publ... | using System.ComponentModel;
using System.Text;
using SharpLab.Runtime.Internal;
public static class SharpLabObjectExtensions {
// LinqPad/etc compatibility only
[EditorBrowsable(EditorBrowsableState.Never)]
public static T Dump<T>(this T value)
=> value.Inspect(title: "Dump");
publ... | bsd-2-clause | C# |
72230232a4f2c55a5cb788574f31d6ea5c12ce4f | Modify ConnectFour tests to use Move | TalkTakesTime/csharpgamesuite | GameSuite.GamesTests/ConnectFour/GameTests.cs | GameSuite.GamesTests/ConnectFour/GameTests.cs | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
namespace GameSuite.Games.ConnectFour.Tests
{
[TestClass()]
public class GameTests
{
[TestMethod()]
public void GameTest()
{
var b = new Game();
Assert.IsTrue(b.Height == 6);
Asser... | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
namespace GameSuite.Games.ConnectFour.Tests
{
[TestClass()]
public class GameTests
{
[TestMethod()]
public void GameTest()
{
var b = new Game();
Assert.IsTrue(b.Height == 6);
Asser... | mit | C# |
4a81043b1ec46529884ff96219ff4aa406b1492b | Add BuildDirectory property. | nuke-build/nuke,nuke-build/nuke,nuke-build/nuke,nuke-build/nuke | source/Nuke.Core/EnvironmentInfo.Build.cs | source/Nuke.Core/EnvironmentInfo.Build.cs | // Copyright Matthias Koch 2017.
// Distributed under the MIT License.
// https://github.com/nuke-build/nuke/blob/master/LICENSE
using System;
using System.IO;
using System.Linq;
using System.Reflection;
using JetBrains.Annotations;
using Nuke.Core.Utilities.Collections;
using static Nuke.Core.IO.PathConstruction;
na... | // Copyright Matthias Koch 2017.
// Distributed under the MIT License.
// https://github.com/nuke-build/nuke/blob/master/LICENSE
using System;
using System.Linq;
using System.Reflection;
namespace Nuke.Core
{
public static partial class EnvironmentInfo
{
/// <summary>
/// The build entry assem... | mit | C# |
fb6105688976e9c1de3932d78e8d25c924a4a09d | Remove ToString method | mstrother/BmpListener | src/BmpListener/Bgp/PathAttributeOrigin.cs | src/BmpListener/Bgp/PathAttributeOrigin.cs | using System;
using System.Linq;
namespace BmpListener.Bgp
{
public class PathAttributeOrigin : PathAttribute
{
public enum Type
{
IGP,
EGP,
Incomplete
}
public Type Origin { get; private set; }
public override void Decode(byte[] da... | using System;
using System.Linq;
namespace BmpListener.Bgp
{
public class PathAttributeOrigin : PathAttribute
{
public enum Type
{
IGP,
EGP,
Incomplete
}
public Type Origin { get; private set; }
public override void Decode(byte[] da... | mit | C# |
6a3ecae97053868a73b5009737c73e34759298ad | Add tests for matching when target line has changed | github/VisualStudio,github/VisualStudio,github/VisualStudio | test/UnitTests/GitHub.App/Services/NavigationServiceTests.cs | test/UnitTests/GitHub.App/Services/NavigationServiceTests.cs | using System;
using System.Collections.Generic;
using GitHub.Services;
using NUnit.Framework;
using NSubstitute;
public class NavigationServiceTests
{
public class TheFindNearestMatchingLineMethod
{
[TestCase(new[] { "line" }, new[] { "line" }, 0, 0, 1, Description = "Match same line")]
[TestC... | using System;
using System.Collections.Generic;
using GitHub.Services;
using NUnit.Framework;
using NSubstitute;
public class NavigationServiceTests
{
public class TheFindNearestMatchingLineMethod
{
[TestCase(new[] { "line" }, new[] { "line" }, 0, 0, 1, Description = "Match same line")]
[TestC... | mit | C# |
4a62542627e1b81dbe2a2d295d80b7a0fac747c7 | Set dlr version | simplicbe/Simplic.Dlr,simplicbe/Simplic.Dlr | src/Simplic.Dlr/Properties/AssemblyInfo.cs | src/Simplic.Dlr/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | mit | C# |
3fa0de6f355a3a7f7face022f738287454733a81 | Update ISerializerRestFactory.cs | tiksn/TIKSN-Framework | TIKSN.Core/Web/Rest/ISerializerRestFactory.cs | TIKSN.Core/Web/Rest/ISerializerRestFactory.cs | using TIKSN.Serialization;
namespace TIKSN.Web.Rest
{
public interface ISerializerRestFactory
{
ISerializer<string> Create(string mediaType);
}
}
| using TIKSN.Serialization;
namespace TIKSN.Web.Rest
{
public interface ISerializerRestFactory
{
ISerializer<string> Create(string mediaType);
}
} | mit | C# |
454b5d703f612d8cafd32431ec69f77d96ff272d | Update HtmlSanitizerOptions.cs | mganss/HtmlSanitizer | src/HtmlSanitizer/HtmlSanitizerOptions.cs | src/HtmlSanitizer/HtmlSanitizerOptions.cs | using AngleSharp.Css.Dom;
using System;
using System.Collections.Generic;
namespace Ganss.XSS
{
/// <summary>
/// Provides options to be used with <see cref="HtmlSanitizer"/>.
/// </summary>
public class HtmlSanitizerOptions
{
/// <summary>
/// Gets or sets the allowed tag names suc... | using AngleSharp.Css.Dom;
using System;
using System.Collections.Generic;
namespace Ganss.XSS
{
/// <summary>
/// Provides options to be used with <see cref="HtmlSanitizer"/>.
/// </summary>
public class HtmlSanitizerOptions
{
/// <summary>
/// Gets or sets the allowed tag names suc... | mit | C# |
185186f5cafca419631436579af4a2779011b462 | Increment version to v1.0.0.8 | MatthewSteeples/XeroAPI.Net,TDaphneB/XeroAPI.Net,XeroAPI/XeroAPI.Net,jcvandan/XeroAPI.Net | source/XeroApi/Properties/AssemblyInfo.cs | source/XeroApi/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("XeroApi")]
[assembly: AssemblyDescription... | 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("XeroApi")]
[assembly: AssemblyDescription... | mit | C# |
ac8f865d2383a08fca47d9e701b9979d3606f493 | Remove specialize private set on Coupon | stripe/stripe-dotnet | src/Stripe.net/Entities/Coupons/Coupon.cs | src/Stripe.net/Entities/Coupons/Coupon.cs | namespace Stripe
{
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Stripe.Infrastructure;
public class Coupon : StripeEntity<Coupon>, IHasId, IHasMetadata, IHasObject
{
[JsonProperty("id")]
public string Id { get; set; }
[JsonProperty("objec... | namespace Stripe
{
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Stripe.Infrastructure;
public class Coupon : StripeEntity<Coupon>, IHasId, IHasMetadata, IHasObject
{
[JsonProperty("id")]
public string Id { get; set; }
[JsonProperty("objec... | apache-2.0 | C# |
1319e8a998eabee85285c44d62858c41512f412c | Fix type mapping for IPubFileProvider | ethanmoffat/EndlessClient | EOLib.IO/Repositories/PubFileRepository.cs | EOLib.IO/Repositories/PubFileRepository.cs | // Original Work Copyright (c) Ethan Moffat 2014-2016
// This file is subject to the GPL v2 License
// For additional details, see the LICENSE file
using AutomaticTypeMapper;
using EOLib.IO.Pub;
namespace EOLib.IO.Repositories
{
[MappedType(BaseType = typeof(IPubFileRepository), IsSingleton = true)]
[MappedT... | // Original Work Copyright (c) Ethan Moffat 2014-2016
// This file is subject to the GPL v2 License
// For additional details, see the LICENSE file
using AutomaticTypeMapper;
using EOLib.IO.Pub;
namespace EOLib.IO.Repositories
{
[MappedType(BaseType = typeof(IPubFileRepository), IsSingleton = true)]
[MappedT... | mit | C# |
5252ce5376d256d6bd8a703e67a53ed59c3dfd41 | Return unset value instead of throwing in OpaqueColorConverter | laurentkempe/GitDiffMargin | GitDiffMargin/View/OpaqueColorConverter.cs | GitDiffMargin/View/OpaqueColorConverter.cs | using System;
using System.Globalization;
using System.Windows;
using System.Windows.Data;
using System.Windows.Media;
namespace GitDiffMargin.View
{
[ValueConversion(typeof(Brush), typeof(Brush))]
class OpaqueColorConverter : IValueConverter
{
public object Convert(object value, Type targetType, ... | using System;
using System.Globalization;
using System.Windows.Data;
using System.Windows.Media;
namespace GitDiffMargin.View
{
[ValueConversion(typeof(Brush), typeof(Brush))]
class OpaqueColorConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, Cult... | mit | C# |
ca18fd2e1012f0fa9953ae3022918fc7b68e1b97 | Update Index.cshtml | asanchezr/hets,asanchezr/hets,swcurran/hets,swcurran/hets,bcgov/hets,bcgov/hets,swcurran/hets,bcgov/hets,asanchezr/hets,bcgov/hets,asanchezr/hets,swcurran/hets,swcurran/hets | PDF/src/PDF.Server/Views/Home/Index.cshtml | PDF/src/PDF.Server/Views/Home/Index.cshtml | @{
ViewBag.Title = "PDFAPI - Api Home";
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"]</title>
<style>
body {
background-color: #fff;
padding: 10px;
font-family: Verdana, Geneva, sans-seri... | @{ViewBag.Title = "PDFAPI - Api Home";}<!DOCTYPE html><html><head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>@ViewData["Title"]</title> <style> body { background-color: #fff; padding: 10px; font-f... | apache-2.0 | C# |
1c015e31f1f919e7b8221fab45a7e39e961a7c6f | Add IReloadable interface and method | Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox | Plugins/Wox.Plugin.BrowserBookmark/Main.cs | Plugins/Wox.Plugin.BrowserBookmark/Main.cs | using System.Collections.Generic;
using System.Linq;
using Wox.Plugin.BrowserBookmark.Commands;
using Wox.Plugin.SharedCommands;
namespace Wox.Plugin.BrowserBookmark
{
public class Main : IPlugin, IReloadable
{
private PluginInitContext context;
private List<Bookmark> cachedBookmarks ... | using System.Collections.Generic;
using System.Linq;
using Wox.Plugin.BrowserBookmark.Commands;
using Wox.Plugin.SharedCommands;
namespace Wox.Plugin.BrowserBookmark
{
public class Main : IPlugin
{
private PluginInitContext context;
private List<Bookmark> cachedBookmarks = new List<Bo... | mit | C# |
b8c866c6ab1a9ac9ad7fc3eda97848fbbcc3c3be | Add GetDefaultSchema to the conventions | lcharlebois/fluentmigrator,lcharlebois/fluentmigrator | src/FluentMigrator/IMigrationConventions.cs | src/FluentMigrator/IMigrationConventions.cs | #region License
//
// Copyright (c) 2007-2009, Sean Chambers <schambers80@gmail.com>
//
// 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
/... | #region License
//
// Copyright (c) 2007-2009, Sean Chambers <schambers80@gmail.com>
//
// 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# |
06f93d1cada60b7151d47294f805888e21e3b9d7 | Increment version to 1.0.4.0 for future development | axomic/openasset-rest-cs | OpenAsset.RestClient.Library/Properties/AssemblyInfo.cs | OpenAsset.RestClient.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("Op... | 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("Op... | mit | C# |
e1fa3e868a769ab6064ab707c3d9fb3af9fadc27 | Change version number to v0.5.1.0 | Seist/Skylight | Properties/AssemblyInfo.cs | Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Skylight")]
[assembly: AssemblyDescription("An API by TakoMan02 for Everybody Edits")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("TakoMan02")]
[assembly: AssemblyProdu... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Skylight")]
[assembly: AssemblyDescription("An API by TakoMan02 for Everybody Edits")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("TakoMan02")]
[assembly: AssemblyProdu... | mit | C# |
f15d0ae6e68cc48595ce6ff702a142c1890606a0 | fix for new restsharp | sportingsolutions/SS.Integration.UnifiedDataAPIClient.DotNet,sportingsolutions/SS.Integration.UnifiedDataAPIClient.DotNet | SportingSolutions.Udapi.Sdk/Clients/ConnectConverter.cs | SportingSolutions.Udapi.Sdk/Clients/ConnectConverter.cs | //Copyright 2012 Spin Services Limited
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//Unless required by applicable law or agreed to in w... | //Copyright 2012 Spin Services Limited
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//Unless required by applicable law or agreed to in w... | apache-2.0 | C# |
4533449ba6131a36c4263bc9529c5e0c21471ba9 | Rename fields name pattern to match rest of code | TiendaNube/SQLite.Net-PCL,igrali/SQLite.Net-PCL,caseydedore/SQLite.Net-PCL,mattleibow/SQLite.Net-PCL,fernandovm/SQLite.Net-PCL,igrali/SQLite.Net-PCL,kreuzhofer/SQLite.Net-PCL,molinch/SQLite.Net-PCL,oysteinkrog/SQLite.Net-PCL | src/SQLite.Net/BlobSerializerDelegate.cs | src/SQLite.Net/BlobSerializerDelegate.cs | using System;
namespace SQLite.Net
{
public class BlobSerializerDelegate : IBlobSerializer
{
public delegate byte[] SerializeDelegate(object obj);
public delegate bool CanSerializeDelegate(Type type);
public delegate object DeserializeDelegate(byte[] data, Type type);
privat... | using System;
namespace SQLite.Net
{
public class BlobSerializerDelegate : IBlobSerializer
{
public delegate byte[] SerializeDelegate(object obj);
public delegate bool CanSerializeDelegate(Type type);
public delegate object DeserializeDelegate(byte[] data, Type type);
private ... | mit | C# |
b91850262dca5ad4710eaa0ed52d429484ce5c07 | Fix MessageBox behaviour | Wox-launcher/Wox,qianlifeng/Wox,qianlifeng/Wox,lances101/Wox,lances101/Wox,qianlifeng/Wox,Wox-launcher/Wox | Wox.Plugin.SystemPlugins/Program/ProgramSetting.xaml.cs | Wox.Plugin.SystemPlugins/Program/ProgramSetting.xaml.cs | using System.Windows;
using System.Windows.Controls;
using Wox.Infrastructure.Storage.UserSettings;
namespace Wox.Plugin.SystemPlugins.Program
{
/// <summary>
/// Interaction logic for ProgramSetting.xaml
/// </summary>
public partial class ProgramSetting : UserControl
{
public ProgramSett... | using System.Windows;
using System.Windows.Controls;
using Wox.Infrastructure.Storage.UserSettings;
namespace Wox.Plugin.SystemPlugins.Program
{
/// <summary>
/// Interaction logic for ProgramSetting.xaml
/// </summary>
public partial class ProgramSetting : UserControl
{
public ProgramSett... | mit | C# |
b6470891ed9600dfa2744ba43caea85a37e5091d | Add CreateSvgDocument overload, that takes a stream and returns document | sharpdx/SharpDX,sharpdx/SharpDX,sharpdx/SharpDX | Source/SharpDX.Direct2D1/DeviceContext5.cs | Source/SharpDX.Direct2D1/DeviceContext5.cs | // Copyright (c) 2010-2014 SharpDX - Alexandre Mutel
//
// 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... | // Copyright (c) 2010-2014 SharpDX - Alexandre Mutel
//
// 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# |
1e402cf936b8ed84e24b5adb9d530db0b5f9fb12 | Update SerializerBase.cs | tiksn/TIKSN-Framework | TIKSN.Core/Serialization/SerializerBase.cs | TIKSN.Core/Serialization/SerializerBase.cs | using System;
namespace TIKSN.Serialization
{
public abstract class SerializerBase<TSerial> : ISerializer<TSerial> where TSerial : class
{
public TSerial Serialize<T>(T obj)
{
try
{
return SerializeInternal(obj);
}
catch (Exceptio... | using System;
namespace TIKSN.Serialization
{
public abstract class SerializerBase<TSerial> : ISerializer<TSerial> where TSerial : class
{
public TSerial Serialize(object obj)
{
try
{
return SerializeInternal(obj);
}
catch (Except... | mit | C# |
bb056a01ddd0dc8b03491faa467707b4445b4fa4 | Update dll to v1.12.1 | Nicholas-Westby/Archetype,kipusoep/Archetype,imulus/Archetype,imulus/Archetype,imulus/Archetype,kgiszewski/Archetype,Nicholas-Westby/Archetype,kgiszewski/Archetype,kgiszewski/Archetype,kjac/Archetype,kjac/Archetype,kipusoep/Archetype,Nicholas-Westby/Archetype,kipusoep/Archetype,kjac/Archetype | app/Umbraco/Umbraco.Archetype/Properties/VersionInfo.cs | app/Umbraco/Umbraco.Archetype/Properties/VersionInfo.cs | using System.Reflection;
[assembly: AssemblyVersion("1.12.1")]
[assembly: AssemblyFileVersion("1.12.1")]
| using System.Reflection;
[assembly: AssemblyVersion("1.12.0")]
[assembly: AssemblyFileVersion("1.12.0")]
| mit | C# |
545d368da6837469709b63eaa88d2ceae0ae0983 | Resolve test issues. | CamSoper/azure-powershell,TaraMeyer/azure-powershell,krkhan/azure-powershell,shuagarw/azure-powershell,yoavrubin/azure-powershell,hovsepm/azure-powershell,shuagarw/azure-powershell,pankajsn/azure-powershell,yantang-msft/azure-powershell,pankajsn/azure-powershell,TaraMeyer/azure-powershell,hungmai-msft/azure-powershell,... | src/ServiceManagement/StorSimple/Commands.StorSimple.Test/ScenarioTests/BackupPolicyTests.cs | src/ServiceManagement/StorSimple/Commands.StorSimple.Test/ScenarioTests/BackupPolicyTests.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# |
60a61fa3ed8679930cdd27b48a6fe23f141297ea | Update test | calebjenkins/Talks.CodeToDiFor,calebjenkins/Talks.CodeToDiFor,calebjenkins/Talks.CodeToDiFor | Talks.CodeToDiFor.Solution/Talks.C2DF.Tests/BetterAppTests/SuperApplicationConsoleAppTests.cs | Talks.CodeToDiFor.Solution/Talks.C2DF.Tests/BetterAppTests/SuperApplicationConsoleAppTests.cs | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
using Talks.C2DF.BetterApp;
using Talks.C2DF.BetterApp.Lib.Console;
using Talks.C2DF.Interfaces;
using Talks.C2DF.Interfaces.Models;
namespace Talks.C2DF.Tests.BetterAppTests
{
[TestClass]
public class SuperApplicationConsoleAppTests
{
... | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
using Talks.C2DF.BetterApp;
using Talks.C2DF.BetterApp.Lib.Console;
using Talks.C2DF.Interfaces;
using Talks.C2DF.Interfaces.Models;
namespace Talks.C2DF.Tests.BetterAppTests
{
[TestClass]
public class SuperApplicationConsoleAppTests
{
... | mit | C# |
e0a3df8344a1e51d18afc6a6844491d561d3198b | Handle update based on a path object as well as the directory/file | 15below/Ensconce,BlythMeister/Ensconce,BlythMeister/Ensconce,15below/Ensconce | src/Ensconce.Cake/EnsconceFileUpdateExtensions.cs | src/Ensconce.Cake/EnsconceFileUpdateExtensions.cs | using Cake.Core.IO;
using Ensconce.Update;
using System.IO;
namespace Ensconce.Cake
{
public static class EnsconceFileUpdateExtensions
{
public static void TextSubstitute(this IFile file, FilePath fixedStructureFile)
{
file.Path.TextSubstitute(fixedStructureFile);
}
... | using Cake.Core.IO;
using Ensconce.Update;
using System.IO;
namespace Ensconce.Cake
{
public static class EnsconceFileUpdateExtensions
{
public static void TextSubstitute(this IFile file, FilePath fixedStructureFile)
{
var tagDictionary = fixedStructureFile == null ? TagDictionaryB... | mit | C# |
58ce5a2acb2e6b6ca467ca57feef93a5ed2abb8f | Refactor array initialization | setchi/n_back_tracer,setchi/n_back_tracer | Assets/Scripts/BackgroundPatternTracer.cs | Assets/Scripts/BackgroundPatternTracer.cs | using UnityEngine;
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using UniRx;
public class BackgroundPatternTracer : MonoBehaviour {
public GameObject Tile;
public int col;
public int row;
void Awake () {
transform.localPosition = new Vector3(-col * 1.7f / 2, -row... | using UnityEngine;
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using UniRx;
public class BackgroundPatternTracer : MonoBehaviour {
public GameObject Tile;
public int col;
public int row;
void Awake () {
transform.localPosition = new Vector3(-col * 1.7f / 2, -row... | mit | C# |
8a19ba6fd0aad26717bd5d2138985cd5844b9d64 | Remove dead OneShot mechanic of SampleChannel | paparony03/osu-framework,default0/osu-framework,ppy/osu-framework,Tom94/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,Nabile-Rahmani/osu-framework,DrabWeb/osu-framework,ZLima12/osu-framework,peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,smoogipoo... | osu.Framework/Audio/Sample/SampleChannel.cs | osu.Framework/Audio/Sample/SampleChannel.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.Diagnostics;
namespace osu.Framework.Audio.Sample
{
public abstract class SampleChannel : AdjustableAudioComponent, IHasCompletedState... | // 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.Diagnostics;
namespace osu.Framework.Audio.Sample
{
public abstract class SampleChannel : AdjustableAudioComponent, IHasCompletedState... | mit | C# |
0ca87c03d6b9c621e2044ac3878a8453af904549 | Revert "fixed mandatory field error message" | vtfuture/BForms,vtfuture/BForms,vtfuture/BForms | BForms.Docs/Global.asax.cs | BForms.Docs/Global.asax.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using BForms.Models;
using BForms.Mvc;
namespace BForms.Docs
{
public class MvcApplication : System.Web.HttpApplication
{
protected void ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using BForms.Models;
using BForms.Mvc;
namespace BForms.Docs
{
public class MvcApplication : System.Web.HttpApplication
{
protected void ... | mit | C# |
40c85d338f4b37dd1d399cc78abf7b497ea25f64 | Add DataReaderChunk.SetData() | 0xd4d/dnlib | src/DotNet/Writer/DataReaderChunk.cs | src/DotNet/Writer/DataReaderChunk.cs | // dnlib: See LICENSE.txt for more info
using System;
using System.IO;
using dnlib.IO;
using dnlib.PE;
namespace dnlib.DotNet.Writer {
/// <summary>
/// A <see cref="DataReader"/> chunk
/// </summary>
public class DataReaderChunk : IChunk {
FileOffset offset;
RVA rva;
DataReader data;
readonly uint virtu... | // dnlib: See LICENSE.txt for more info
using System.IO;
using dnlib.IO;
using dnlib.PE;
namespace dnlib.DotNet.Writer {
/// <summary>
/// A <see cref="DataReader"/> chunk
/// </summary>
public class DataReaderChunk : IChunk {
FileOffset offset;
RVA rva;
DataReader data;
readonly uint virtualSize;
///... | mit | C# |
45e59afcbb29fc012d98daf199481573cf5e921c | Change exception dump path | danielchalmers/DesktopWidgets | DesktopWidgets/Helpers/ExceptionHelper.cs | DesktopWidgets/Helpers/ExceptionHelper.cs | using System;
using System.IO;
using DesktopWidgets.Properties;
using Newtonsoft.Json;
namespace DesktopWidgets.Helpers
{
public static class ExceptionHelper
{
private static readonly string ExceptionDumpPath =
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), ... | using System;
using System.IO;
using DesktopWidgets.Properties;
using Newtonsoft.Json;
namespace DesktopWidgets.Helpers
{
public static class ExceptionHelper
{
private static readonly string ExceptionDumpPath =
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), ... | apache-2.0 | C# |
25f1d580ad39f53169bd9d36108f289d4dae2164 | Change RawUrl to AbsoluteUri | TwilioDevEd/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snippets | guides/request-validation-csharp/example-1/example-1.cs | guides/request-validation-csharp/example-1/example-1.cs | using System;
using System.Configuration;
using System.Web;
using System.Net;
using System.Web.Mvc;
using Twilio.Security;
namespace ValidateRequestExample.Filters
{
[AttributeUsage(AttributeTargets.Method)]
public class ValidateTwilioRequestAttribute : ActionFilterAttribute
{
private readonly Requ... | using System;
using System.Configuration;
using System.Web;
using System.Net;
using System.Web.Mvc;
using Twilio.Security;
namespace ValidateRequestExample.Filters
{
[AttributeUsage(AttributeTargets.Method)]
public class ValidateTwilioRequestAttribute : ActionFilterAttribute
{
private readonly Requ... | mit | C# |
fa68ac768eb7359c6d572c1f2c047f2b9e7f6df7 | Write process stdout to console | ermshiperete/il-repack,SiliconStudio/il-repack,devitalio/il-repack,timotei/il-repack,RomainHautefeuille/il-repack,mzboray/il-repack,lovewitty/il-repack,xen2/il-repack,MainMa/il-repack,AColmant/il-repack,huoxudong125/il-repack,emanuelvarga/il-repack,gluck/il-repack | ILRepack.IntegrationTests/WPFScenarios.cs | ILRepack.IntegrationTests/WPFScenarios.cs | using NUnit.Framework;
using System;
using System.Diagnostics;
using System.IO;
namespace ILRepack.IntegrationTests
{
[TestFixture]
public class WPFScenarios
{
private const int ScenarioProcessWaitTimeInMs = 10000;
[Test]
public void GivenXAMLThatUsesLibraryClass_MergedWPFApplicat... | using NUnit.Framework;
using System.Diagnostics;
using System.IO;
namespace ILRepack.IntegrationTests
{
[TestFixture]
public class WPFScenarios
{
private const int ScenarioProcessWaitTimeInMs = 2000;
[Test]
public void GivenXAMLThatUsesLibraryClass_MergedWPFApplicationRunsSuccessf... | apache-2.0 | C# |
935d2ed12f00a91b3427883d47a2929fdca20c6c | Update GeraldVersluis.cs (#598) | planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin | src/Firehose.Web/Authors/GeraldVersluis.cs | src/Firehose.Web/Authors/GeraldVersluis.cs | using System;
using System.Collections.Generic;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class GeraldVersluis : IWorkAtXamarinOrMicrosoft
{
public string FirstName => "Gerald";
public string LastName => "Versluis";
public string StateOrRegion => "The N... | using System;
using System.Collections.Generic;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class GeraldVersluis : IAmAMicrosoftMVP
{
public string FirstName => "Gerald";
public string LastName => "Versluis";
public string StateOrRegion => "The Netherland... | mit | C# |
c78ffc146eb28a16e2537ff42d56576fefb6acc5 | Update Mathieu Buisson info | planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell | src/Firehose.Web/Authors/MathieuBuisson.cs | src/Firehose.Web/Authors/MathieuBuisson.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class MathieuBuisson : IAmACommunityMember, IFilterMyBlogPosts
{
public string FirstName => "Mathieu";
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class MathieuBuisson : IAmACommunityMember, IFilterMyBlogPosts
{
public string FirstName => "Mathieu";
... | mit | C# |
66e4559f7891ac243e4bf9e97cc4831b23169d42 | clean up route information | dnauck/License.Manager,dnauck/License.Manager | src/License.Manager.Core/Model/Customer.cs | src/License.Manager.Core/Model/Customer.cs | using ServiceStack.ServiceHost;
namespace License.Manager.Core.Model
{
[Route("/customers", "POST, OPTIONS")]
[Route("/customers/{Id}", "GET, PUT, DELETE, OPTIONS")]
public class Customer : EntityBase, IReturn<Customer>
{
public string Name { get; set; }
public string Company { get; se... | using ServiceStack.ServiceHost;
namespace License.Manager.Core.Model
{
[Route("/customers", "POST")]
[Route("/customers/{Id}", "PUT, DELETE")]
[Route("/customers/{Id}", "GET, OPTIONS")]
public class Customer : EntityBase, IReturn<Customer>
{
public string Name { get; set; }
public ... | mit | C# |
b13fd9b50e07f3371e87944085012d76280eb170 | correct waiting for completion in PubSub example | VictorScherbakov/SharpChannels | Examples/PubSub/Program.cs | Examples/PubSub/Program.cs | using System;
using System.Net;
using System.Threading;
using SharpChannels.Core;
using SharpChannels.Core.Channels;
using SharpChannels.Core.Channels.Tcp;
using SharpChannels.Core.Communication;
using SharpChannels.Core.Messages;
using SharpChannels.Core.Serialization;
namespace Examples.PubSub
{
class Program
... | using System;
using System.Net;
using SharpChannels.Core;
using SharpChannels.Core.Channels;
using SharpChannels.Core.Channels.Tcp;
using SharpChannels.Core.Communication;
using SharpChannels.Core.Messages;
using SharpChannels.Core.Serialization;
namespace Examples.PubSub
{
class Program
{
private sta... | mit | C# |
9c3e74131f01a804661539b3f00f4010a4946390 | Add a const string field for the If-None-Match HTTP header | ZocDoc/ServiceStack,NServiceKit/NServiceKit,MindTouch/NServiceKit,NServiceKit/NServiceKit,nataren/NServiceKit,ZocDoc/ServiceStack,NServiceKit/NServiceKit,NServiceKit/NServiceKit,ZocDoc/ServiceStack,timba/NServiceKit,timba/NServiceKit,MindTouch/NServiceKit,nataren/NServiceKit,timba/NServiceKit,nataren/NServiceKit,ZocDoc... | src/ServiceStack.Common/Web/HttpHeaders.cs | src/ServiceStack.Common/Web/HttpHeaders.cs | namespace ServiceStack.Common.Web
{
public static class HttpHeaders
{
public const string XParamOverridePrefix = "X-Param-Override-";
public const string XHttpMethodOverride = "X-Http-Method-Override";
public const string XUserAuthId = "X-UAId";
public const string XForwardedF... | namespace ServiceStack.Common.Web
{
public static class HttpHeaders
{
public const string XParamOverridePrefix = "X-Param-Override-";
public const string XHttpMethodOverride = "X-Http-Method-Override";
public const string XUserAuthId = "X-UAId";
public const string X... | bsd-3-clause | C# |
2878aac6892eed07086ec9ea3f35aa72b2f21969 | check if controller is JsonApiController | json-api-dotnet/JsonApiDotNetCore,Research-Institute/json-api-dotnet-core,Research-Institute/json-api-dotnet-core | src/JsonApiDotNetCore/Internal/DasherizedRoutingConvention.cs | src/JsonApiDotNetCore/Internal/DasherizedRoutingConvention.cs | // REF: https://github.com/aspnet/Entropy/blob/dev/samples/Mvc.CustomRoutingConvention/NameSpaceRoutingConvention.cs
// REF: https://github.com/aspnet/Mvc/issues/5691
using JsonApiDotNetCore.Controllers;
using JsonApiDotNetCore.Extensions;
using Microsoft.AspNetCore.Mvc.ApplicationModels;
namespace JsonApiDotNetCore.I... | // REF: https://github.com/aspnet/Entropy/blob/dev/samples/Mvc.CustomRoutingConvention/NameSpaceRoutingConvention.cs
// REF: https://github.com/aspnet/Mvc/issues/5691
using JsonApiDotNetCore.Extensions;
using Microsoft.AspNetCore.Mvc.ApplicationModels;
namespace JsonApiDotNetCore.Internal
{
public class Dasherized... | mit | C# |
af7da7963e9b8cb8671bcbfa37a06a22a7578973 | Update List.cshtml | yersans/Orchard,Codinlab/Orchard,jimasp/Orchard,Fogolan/OrchardForWork,vairam-svs/Orchard,Codinlab/Orchard,aaronamm/Orchard,tobydodds/folklife,jersiovic/Orchard,aaronamm/Orchard,bedegaming-aleksej/Orchard,OrchardCMS/Orchard,johnnyqian/Orchard,li0803/Orchard,Serlead/Orchard,jchenga/Orchard,bedegaming-aleksej/Orchard,han... | src/Orchard.Web/Modules/Orchard.Lists/Views/Admin/List.cshtml | src/Orchard.Web/Modules/Orchard.Lists/Views/Admin/List.cshtml | @using Orchard.ContentManagement.MetaData.Models
@using Orchard.Core.Containers.Models
@using Orchard.ContentManagement;
@{
Style.Require("jQueryColorBox");
Style.Include("nprogress.css");
Style.Include("common-admin.css", "common-admin.min.css");
Style.Include("list-admin.css", "list-admin.min.css");
... | @using Orchard.ContentManagement.MetaData.Models
@using Orchard.Core.Containers.Models
@using Orchard.ContentManagement;
@{
Style.Require("jQueryColorBox");
Style.Include("nprogress.css", "nprogress.min.css");
Style.Include("common-admin.css", "common-admin.min.css");
Style.Include("list-admin.css", "l... | bsd-3-clause | C# |
86e6e4e6dcf19b4bea249e669cf5c4f097bb6a5f | Bump assembly version to 3.0 | serilog/serilog-sinks-periodicbatching | src/Serilog.Sinks.PeriodicBatching/Properties/AssemblyInfo.cs | src/Serilog.Sinks.PeriodicBatching/Properties/AssemblyInfo.cs | using System;
using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: CLSCompliant(true)]
[assembly: InternalsVisibleTo("Serilog.Sinks.PeriodicBatching.Tests, PublicKey=" +
"002400000480000094000000060200000024000052534131000400... | using System;
using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: CLSCompliant(true)]
[assembly: InternalsVisibleTo("Serilog.Sinks.PeriodicBatching.Tests, PublicKey=" +
"002400000480000094000000060200000024000052534131000400... | apache-2.0 | C# |
80b1f8dc1de08c3d03b78ebf5aaa5082eec79d14 | Update version number. | Damnae/storybrew | editor/Properties/AssemblyInfo.cs | editor/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("storybrew editor")]
[assembly: AssemblyDe... | 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("storybrew editor")]
[assembly: AssemblyDe... | mit | C# |
8412452aa6e56b532324b75fc782201d568886fe | Remove two second delay on tray icon | zr40/kyru-dotnet,zr40/kyru-dotnet | Kyru/SystemTray.cs | Kyru/SystemTray.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
using Kyru.Core;
using Kyru.Utilities;
namespace Kyru
{
internal class SystemTray : ITimerListener
{
private readonly KyruApplication app;
private readonly NotifyIcon trayIc... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
using Kyru.Core;
using Kyru.Utilities;
namespace Kyru
{
internal class SystemTray : ITimerListener
{
private KyruApplication app;
private NotifyIcon trayIcon;
private Cont... | bsd-3-clause | C# |
de7cbf2012754f99717f53192d9dd1a006a71233 | remove init and add loading screen | secondsun/PointingHenry10,secondsun/PointingHenry10 | PointingHenry10/ViewModels/ListViewModel.cs | PointingHenry10/ViewModels/ListViewModel.cs | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using Windows.UI.Popups;
using FHSDK;
using FHSDK.Config;
using Newtonsoft.Json;
using PointingHenry10.Models;
using PointingHenry10.Views;
using Quobject.SocketIoClientDotNet.Client;
using Template10.Mv... | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using Windows.UI.Popups;
using FHSDK;
using FHSDK.Config;
using Newtonsoft.Json;
using PointingHenry10.Models;
using PointingHenry10.Views;
using Quobject.SocketIoClientDotNet.Client;
using Template10.Mv... | apache-2.0 | C# |
c66c36b53727bbafedfe9fe6472c5a8db88dd6b4 | Make sure to clean my dic. | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/Extensions/MemoryExtensions.cs | WalletWasabi/Extensions/MemoryExtensions.cs | using Nito.AsyncEx;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Microsoft.Extensions.Caching.Memory
{
public static class MemoryExtensions
{
private static Dictionary<object, AsyncLock> AsyncLocks { get; } = new Dictionary<object, As... | using Nito.AsyncEx;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace Microsoft.Extensions.Caching.Memory
{
public static class MemoryExtensions
{
private static Dictionary<object, AsyncLock> AsyncLocks { get; } = new Dictionary<object, AsyncLock>();
priva... | mit | C# |
f60ed83c7e0e70051fa4bcae65b557e4a1b6f923 | Bump version. | kyourek/Pagination,kyourek/Pagination,kyourek/Pagination | sln/AssemblyVersion.cs | sln/AssemblyVersion.cs | using System.Reflection;
[assembly: AssemblyVersion("2.1.3")]
| using System.Reflection;
[assembly: AssemblyVersion("2.1.2.1")]
| mit | C# |
523c84b190c2df2d2d9c98b181d14803bc512a9b | Add method MilkcocoaEvent.GetValues() | m2wasabi/milkcocoa-client-unity | Assets/Milkcocoa/Scripts/MilkcocoaEvent.cs | Assets/Milkcocoa/Scripts/MilkcocoaEvent.cs | namespace Milkcocoa
{
public class MilkcocoaEvent
{
public string name { get; set; }
public JSONObject data { get; set; }
public MilkcocoaEvent(string name) : this(name,null) { }
public MilkcocoaEvent(string name, JSONObject data)
{
this.name = name;
... | namespace Milkcocoa
{
public class MilkcocoaEvent
{
public string name { get; set; }
public JSONObject data { get; set; }
public MilkcocoaEvent(string name) : this(name,null) { }
public MilkcocoaEvent(string name, JSONObject data)
{
this.name = name;
... | mit | C# |
5a53a2c21811f5460fbf16ab4c79f113bb98cb1f | make sure user services are registered | bitwarden/core,bitwarden/core,bitwarden/core,bitwarden/core | src/Billing/Startup.cs | src/Billing/Startup.cs | using System;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Bit.Core;
using Stripe;
using Bit.Core.Utilities;
using Serilog.Events;
using Microsoft.AspNetCore.Ht... | using System;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Bit.Core;
using Stripe;
using Bit.Core.Utilities;
using Serilog.Events;
using Microsoft.AspNetCore.Ht... | agpl-3.0 | C# |
b486b0853b3a6d32fa610a0906a1f8c0444706eb | Fix ParseUpdate name | mbdavid/LiteDB | LiteDB/Client/SqlParser/Commands/Update.cs | LiteDB/Client/SqlParser/Commands/Update.cs | using System;
using System.Collections.Generic;
using System.Linq;
using LiteDB.Engine;
using static LiteDB.Constants;
namespace LiteDB
{
internal partial class SqlParser
{
/// <summary>
/// UPDATE - update documents - if used with {key} = {exprValue} will merge current document with this fiel... | using System;
using System.Collections.Generic;
using System.Linq;
using LiteDB.Engine;
using static LiteDB.Constants;
namespace LiteDB
{
internal partial class SqlParser
{
/// <summary>
/// UPDATE - update documents - if used with {key} = {exprValue} will merge current document with this fiel... | mit | C# |
1bed96e8b43516c60ce4fdd6671f67ae3db845b6 | Update Index.cshtml - minor updates. | NinjaVault/NinjaHive,NinjaVault/NinjaHive | NinjaHive.WebApp/Views/Stats/Index.cshtml | NinjaHive.WebApp/Views/Stats/Index.cshtml | @using NinjaHive.Contract.DTOs
@using NinjaHive.WebApp.Controllers
@using NinjaHive.WebApp.Services
@model StatInfo[]
<div class="row">
<div class="col-md-12">
<br />
<p>
@Html.ActionLink("Create Stat Info", "Create", null, new { @class = "btn btn-default" })
</p>
<hr /... | @using NinjaHive.Contract.DTOs
@using NinjaHive.WebApp.Controllers
@using NinjaHive.WebApp.Services
@model StatInfo[]
<div class="row">
<div class="col-md-12">
<br />
<p>
@Html.ActionLink("Create Stat Info", "Create", null, new { @class = "btn btn-default" })
</p>
<hr /... | apache-2.0 | C# |
a81974389f481d6cae94a9494b2db01ef2b663b1 | Add some dumy conf | michael-reichenauer/GitMind | GitMind/GitModel/Branch.cs | GitMind/GitModel/Branch.cs | using System.Collections.Generic;
using System.Linq;
namespace GitMind.GitModel
{
// Some extra Branch and otther dum
internal class Branch
{
private readonly Repository repository;
private readonly string tipCommitId;
private readonly string firstCommitId;
private readonly string parentCommitId;
private... | using System.Collections.Generic;
using System.Linq;
namespace GitMind.GitModel
{
// Some extra Branch
internal class Branch
{
private readonly Repository repository;
private readonly string tipCommitId;
private readonly string firstCommitId;
private readonly string parentCommitId;
private readonly IRead... | mit | C# |
92da02db8731b2b9eeb699481503c1a3c652903a | Add extension to filename | NeoAdonis/osu,DrabWeb/osu,naoey/osu,DrabWeb/osu,UselessToucan/osu,NeoAdonis/osu,johnneijzen/osu,naoey/osu,Nabile-Rahmani/osu,peppy/osu,Frontear/osuKyzer,2yangk23/osu,NeoAdonis/osu,smoogipoo/osu,2yangk23/osu,smoogipooo/osu,johnneijzen/osu,naoey/osu,EVAST9919/osu,peppy/osu,ppy/osu,EVAST9919/osu,ppy/osu,peppy/osu,ZLima12/... | osu.Game/Rulesets/Configuration/RulesetConfigManager.cs | osu.Game/Rulesets/Configuration/RulesetConfigManager.cs | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Configuration;
using osu.Framework.Platform;
namespace osu.Game.Rulesets.Configuration
{
public abstract class RulesetConfigManager<T> ... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Configuration;
using osu.Framework.Platform;
namespace osu.Game.Rulesets.Configuration
{
public abstract class RulesetConfigManager<T> ... | mit | C# |
2cd557e0bf0a442877c77ba4c531a2156b92e768 | bump version | RepairShopr/CommitCRM-Exporter | RepairShoprApps/Properties/AssemblyInfo.cs | RepairShoprApps/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# |
ccc0424b0048557301ce949fa0659128cce90c28 | Bump version: 1.0.1.0 | bdb-opensource/closure-externs-dotnet | ClosureExterns/Properties/AssemblyInfo.cs | ClosureExterns/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | mit | C# |
4e4538dd1de1e5454b8684b69719a06c69628df5 | Revise CleanUpExtractedFiles() | MattCordell/Content-For-Promotion-Extractor | Content-For-Promotion-Extractor/Unpack.cs | Content-For-Promotion-Extractor/Unpack.cs | using System.IO.Compression;
using System.IO;
using System;
using System.Collections.Generic;
namespace Content_For_Promotion_Extractor
{
public enum RF2File { sct2_Concept_Snapshot, sct2_Description_Snapshot, sct2_Relationship_Snapshot, sct2_StatedRelationship_Snapshot };
// Unpacker Extracts the desired f... | using System.IO.Compression;
using System.IO;
using System;
using System.Collections.Generic;
namespace Content_For_Promotion_Extractor
{
public enum RF2File { sct2_Concept_Snapshot, sct2_Description_Snapshot, sct2_Relationship_Snapshot, sct2_StatedRelationship_Snapshot };
// Unpacker Extracts the desired f... | mit | C# |
8dc7b59868f59bedd74c44db7f1e3fb01530211a | Update SlimyYoyo.cs | Minesap/TheMinepack | Items/Weapons/SlimyYoyo.cs | Items/Weapons/SlimyYoyo.cs | using System;
using System.Collections.Generic;
using Microsoft.Xna.Framework;
using Terraria;
using Terraria.DataStructures;
using Terraria.ID;
using Terraria.ModLoader;
using Minepack.Items;
namespace Minepack.Items.Weapons {
public class SlimyYoyo : ModItem
{
public override bool Autoload(ref string... | using System;
using System.Collections.Generic;
using Microsoft.Xna.Framework;
using Terraria;
using Terraria.DataStructures;
using Terraria.ID;
using Terraria.ModLoader;
using Minepack.Items;
namespace Minepack.Items.Weapons {
public class SlimyYoyo : ModItem
{
public override void SetDefaults()
... | mit | C# |
c1237695b34a049a2c98ee5af98b11b990978a61 | add successful ComponentManifest test. | pburls/dewey | Dewey/Dewey.Test/ComponentManifestTest.cs | Dewey/Dewey.Test/ComponentManifestTest.cs | using Dewey.Manfiest;
using Dewey.Manifest.Component;
using Dewey.Manifest.Repositories;
using Dewey.Manifest.Repository;
using Ploeh.AutoFixture;
using System.Collections.Generic;
using System.Xml.Linq;
using Xunit;
namespace Dewey.Test
{
public class ComponentManifestTest
{
static IEnumerable<object... | using Dewey.Manfiest;
using Dewey.Manifest.Component;
using Dewey.Manifest.Repositories;
using Dewey.Manifest.Repository;
using Ploeh.AutoFixture;
using System.Collections.Generic;
using System.Xml.Linq;
using Xunit;
namespace Dewey.Test
{
public class ComponentManifestTest
{
static IEnumerable<object... | mit | C# |
a720de7722b14a0101597dc504963e4e18bfc70d | Add explicit height to match resulting button | DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity | Assets/MRTK/Core/Inspectors/Utilities/MixedRealityStylesUtility.cs | Assets/MRTK/Core/Inspectors/Utilities/MixedRealityStylesUtility.cs | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using UnityEditor;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Utilities.Editor
{
public static class MixedRealityStylesUtility
{
/... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using UnityEditor;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Utilities.Editor
{
public static class MixedRealityStylesUtility
{
/... | mit | C# |
60574b634782c2f95400916630bc96d767640bbb | undo changes to IScheduledCommandT | commonsensesoftware/Its.Cqrs,commonsensesoftware/Its.Cqrs,commonsensesoftware/Its.Cqrs | Domain/Scheduling/IScheduledCommand{T}.cs | Domain/Scheduling/IScheduledCommand{T}.cs | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
namespace Microsoft.Its.Domain
{
/// <summary>
/// Represents that a command has been scheduled for future execution against a specific ... | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
namespace Microsoft.Its.Domain
{
/// <summary>
/// Represents that a command has been scheduled for future execution against a specific aggregat... | mit | C# |
828dd0d3bf71f0fc8e8c91e1029d2773c966d829 | Update new-blog.cshtml | daveaglick/daveaglick,mishrsud/sudhanshutheone.com,daveaglick/daveaglick,mishrsud/sudhanshutheone.com,mishrsud/sudhanshutheone.com | Somedave/Views/Blog/Posts/new-blog.cshtml | Somedave/Views/Blog/Posts/new-blog.cshtml | @{
Title = "New Blog";
Lead = "Look, Ma, no database!"
//Published = new DateTime(2014, 9, 4);
Tags = new[] { "blog", "meta" };
}
<p>It's been a little while coming, but I'm finally launching my new blog. It's built from scratch in ASP.NET MVC. Why go to all the trouble to build a blog engine from scra... | @{
Title = "New Blog";
Published = new DateTime(2014, 9, 2);
Tags = new[] { "blog", "meta" };
}
<p>Test</p>
| mit | C# |
ef34e59970b60dae55638056e3847bb069c1c05a | Bump version to release Comparable and String extension methods | Smartrak/Smartrak.Library | System.Contrib/Properties/AssemblyInfo.cs | System.Contrib/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("System.Contrib")]
[assembly: AssemblyDesc... | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("System.Contrib")]
[assembly: AssemblyDesc... | mit | C# |
65843814b368a7d28151e48530a55a6e24b26e93 | remove unused variable | MetaG8/Metrics.NET,Liwoj/Metrics.NET,Recognos/Metrics.NET,cvent/Metrics.NET,Recognos/Metrics.NET,DeonHeyns/Metrics.NET,ntent-ad/Metrics.NET,ntent-ad/Metrics.NET,alhardy/Metrics.NET,cvent/Metrics.NET,etishor/Metrics.NET,DeonHeyns/Metrics.NET,Liwoj/Metrics.NET,MetaG8/Metrics.NET,etishor/Metrics.NET,mnadel/Metrics.NET,huo... | Src/Metrics/Reporters/ScheduledReporter.cs | Src/Metrics/Reporters/ScheduledReporter.cs | using System;
namespace Metrics.Reporters
{
public class ScheduledReporter
{
private readonly Timer reportTime;
private readonly Func<Reporter> reporter;
private readonly TimeSpan interval;
private readonly MetricsRegistry registry;
private System.Threading.Timer timer... | using System;
namespace Metrics.Reporters
{
public class ScheduledReporter
{
private readonly Timer reportTime;
private readonly Func<Reporter> reporter;
private readonly TimeSpan interval;
private readonly MetricsRegistry registry;
private string name;
private... | apache-2.0 | C# |
3ee1dd1745080790735e990ef907f048b77fd844 | set version to 0.6 | SimonJonas/SqlServerValidationToolkit | SqlServerValidationToolkit.Configurator/Properties/AssemblyInfo.cs | SqlServerValidationToolkit.Configurator/Properties/AssemblyInfo.cs | using log4net.Config;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the info... | using log4net.Config;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the info... | mit | C# |
ac8983ee949501dec4a241e3494a57fa7cc61de3 | Revert "Fixed server not being listed on master server" | Facepunch/Facepunch.Steamworks,Facepunch/Facepunch.Steamworks,Facepunch/Facepunch.Steamworks | Facepunch.Steamworks/Structs/ServerInit.cs | Facepunch.Steamworks/Structs/ServerInit.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Runtime.InteropServices;
using System.Text;
namespace Steamworks
{
/// <summary>
/// Used to set up the server.
/// The variables in here are all required to be set, and can't be changed once the server is c... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Runtime.InteropServices;
using System.Text;
namespace Steamworks
{
/// <summary>
/// Used to set up the server.
/// The variables in here are all required to be set, and can't be changed once the server is c... | mit | C# |
a92af23b1cc67a0624e0469454e92059f6d908ec | Bump assembly version | NuGet/NuGet.Server | src/CommonAssemblyInfo.cs | src/CommonAssemblyInfo.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.Reflection;
using System.Resources;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany(".NET Foundation")]
[assembly: Assem... | // 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.Reflection;
using System.Resources;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany(".NET Foundation")]
[assembly: Assem... | apache-2.0 | C# |
166805856131b799dfbe6e687cee7b9aadce6eb7 | Add cheers! | jamesmontemagno/Hanselman.Forms,jamesmontemagno/Hanselman.Forms,jamesmontemagno/Hanselman.Forms | src/Hanselman/App.xaml.cs | src/Hanselman/App.xaml.cs | using Xamarin.Forms;
using Hanselman.Views;
using Xamarin.Forms.Xaml;
using Xamarin.Essentials;
using MonkeyCache.FileStore;
using Shiny.Jobs;
using MediaManager;
using MediaManager.Playback;
using Hanselman.Helpers;
// ElectricHavoc cheered 10 March 29, 2019
// KymPhillpotts cheered 50 March 29, 2019
// ElecticHavoc... | using Xamarin.Forms;
using Hanselman.Views;
using Xamarin.Forms.Xaml;
using Xamarin.Essentials;
using MonkeyCache.FileStore;
using Shiny.Jobs;
using MediaManager;
using MediaManager.Playback;
using Hanselman.Helpers;
// ElectricHavoc cheered 10 March 29, 2019
// KymPhillpotts cheered 50 March 29, 2019
// ElecticHavoc... | mit | C# |
9b66b63c07ec714eccc391dedd9c7ef5fd4fbd18 | Improve code documentation in the ILedgerIndexes interface | openchain/openchain | src/Openchain.Ledger/ILedgerIndexes.cs | src/Openchain.Ledger/ILedgerIndexes.cs | // Copyright 2015 Coinprism, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agree... | // Copyright 2015 Coinprism, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agree... | apache-2.0 | C# |
a52c39e20d871c19ecef6420b3cb743af95b234e | Add xml comments | OpenStreamDeck/StreamDeckSharp | src/StreamDeckSharp/IStreamDeckRefHandle.cs | src/StreamDeckSharp/IStreamDeckRefHandle.cs | using OpenMacroBoard.SDK;
namespace StreamDeckSharp
{
/// <inheritdoc />
public interface IStreamDeckRefHandle : IDeviceReferenceHandle
{
/// <inheritdoc />
new IStreamDeckBoard Open();
/// <summary>
/// The device path of the HID
/// </summary>
string Devi... | using OpenMacroBoard.SDK;
namespace StreamDeckSharp
{
/// <inheritdoc />
public interface IStreamDeckRefHandle : IDeviceReferenceHandle
{
/// <inheritdoc />
new IStreamDeckBoard Open();
string DevicePath { get; }
string DeviceName { get; }
bool UseWriteCache { get; ... | mit | C# |
8b016f05e6cb18e110de0d1bba636ae5dd360304 | Remove unessesary nl | 2yangk23/osu,UselessToucan/osu,naoey/osu,peppy/osu,smoogipoo/osu,peppy/osu-new,johnneijzen/osu,NeoAdonis/osu,DrabWeb/osu,smoogipoo/osu,peppy/osu,johnneijzen/osu,ppy/osu,naoey/osu,ZLima12/osu,naoey/osu,NeoAdonis/osu,2yangk23/osu,DrabWeb/osu,EVAST9919/osu,NeoAdonis/osu,EVAST9919/osu,smoogipooo/osu,ppy/osu,UselessToucan/o... | osu.Game.Rulesets.Osu/Mods/OsuModTransform.cs | osu.Game.Rulesets.Osu/Mods/OsuModTransform.cs | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Linq;
using System.Collections.Generic;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics;
using osu.Game.Gr... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Linq;
using System.Collections.Generic;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics;
using osu.Game.Gr... | mit | C# |
e814cab744f86526551679d71362f696e198c796 | update RequestResolverTest for interface | haruair/csharp-command | test/Haruair.Command.Tests/RequestResolverTest.cs | test/Haruair.Command.Tests/RequestResolverTest.cs | using NUnit.Framework;
using System;
using Haruair.Command.Interface;
namespace Haruair.Command.Tests
{
[TestFixture ()]
public class RequestResolverTest
{
IRequestResolver resolver;
[SetUp ()]
public void Init()
{
resolver = new BasicRequestResolver ();
}
[TearDown ()]
public void Dispose()
{... | using NUnit.Framework;
using System;
namespace Haruair.Command.Tests
{
[TestFixture ()]
public class RequestResolverTest
{
RequestResolver resolver;
[SetUp ()]
public void Init()
{
resolver = new RequestResolver ();
}
[TearDown ()]
public void Dispose()
{
resolver = null;
}
[Test ()]
... | mit | C# |
b4862ff7f985756e10fed9cd137a3ce7e5b3cde4 | fix build 4 .NET 1.0 | likesea/spring-net,zi1jing/spring-net,yonglehou/spring-net,spring-projects/spring-net,djechelon/spring-net,likesea/spring-net,yonglehou/spring-net,likesea/spring-net,kvr000/spring-net,zi1jing/spring-net,dreamofei/spring-net,kvr000/spring-net,yonglehou/spring-net,kvr000/spring-net,dreamofei/spring-net,spring-projects/sp... | test/Spring/Spring.Data.Tests/Dao/Attributes/PersistenceExceptionTranslationInterceptorTests.cs | test/Spring/Spring.Data.Tests/Dao/Attributes/PersistenceExceptionTranslationInterceptorTests.cs | #region License
/*
* Copyright 2002-2007 the original author or authors.
*
* 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
... | #region License
/*
* Copyright 2002-2007 the original author or authors.
*
* 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# |
e1b608d001f6f6aaab2adc51a8c0fe4ee87e84c9 | Remove forgotten debug output | rfgamaral/SlackUI | SlackUI/Handlers/BrowserResourceHandler.cs | SlackUI/Handlers/BrowserResourceHandler.cs | #region Copyright © 2014 Ricardo Amaral
/*
* Use of this source code is governed by an MIT-style license that can be found in the LICENSE file.
*/
#endregion
using System.Net;
using System.Text.RegularExpressions;
using CefSharp;
namespace SlackUI {
internal class BrowserResourceHandler : IResourceHandler {... | #region Copyright © 2014 Ricardo Amaral
/*
* Use of this source code is governed by an MIT-style license that can be found in the LICENSE file.
*/
#endregion
using System.Net;
using System.Text.RegularExpressions;
using CefSharp;
namespace SlackUI {
internal class BrowserResourceHandler : IResourceHandler {... | mit | C# |
f6da160b16db5d05a0269215d32d875c075316d7 | Update IntersectionofRanges.cs | aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,aspose-cells/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,asposecells/Aspose_Cells_NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/As... | Examples/CSharp/Data/AddOn/NamedRanges/IntersectionofRanges.cs | Examples/CSharp/Data/AddOn/NamedRanges/IntersectionofRanges.cs | using System.IO;
using Aspose.Cells;
using System.Drawing;
namespace Aspose.Cells.Examples.Data.AddOn.NamedRanges
{
public class IntersectionofRanges
{
public static void Main(string[] args)
{
//ExStart:1
// The path to the documents directory.
string dataDi... | using System.IO;
using Aspose.Cells;
using System.Drawing;
namespace Aspose.Cells.Examples.Data.AddOn.NamedRanges
{
public class IntersectionofRanges
{
public static void Main(string[] args)
{
// The path to the documents directory.
string dataDir = Aspose.Cells.Example... | mit | C# |
4ddddfcb6eaf000c5790913d888016de5e010598 | Build script now writes the package name and version into the AssemblyDescription attibute. This allows the package information to be seen in Visual Studio avoiding confusion with the assembly version that remains at the major. | autofac/Autofac.Web | Properties/AssemblyInfo.cs | Properties/AssemblyInfo.cs | using System.Reflection;
[assembly: AssemblyTitle("Autofac.Tests.Integration.Web")]
| using System.Reflection;
[assembly: AssemblyTitle("Autofac.Tests.Integration.Web")]
[assembly: AssemblyDescription("")]
| mit | C# |
34463ee14fb2d6fd87e0c077246a914b4a1ac7a9 | update assembly info | Jetski5822/NGM.Forum | Properties/AssemblyInfo.cs | Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
using System.Security;
// 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("NGM.Forum")... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | bsd-3-clause | C# |
68badb8242b79ea315fab642552047a5cf8fb120 | Add anomaly difficulty flag | Kerbas-ad-astra/Orbital-Science,DMagic1/Orbital-Science | Source/DMAnomalyStorage.cs | Source/DMAnomalyStorage.cs | using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace DMagic
{
public class DMAnomalyStorage
{
private CelestialBody body;
private bool scanned;
private int level;
private Dictionary<string, DMAnomalyObject> anomalies = new Dictionary<string, DMAnomalyObject>();
... | using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace DMagic
{
public class DMAnomalyStorage
{
private CelestialBody body;
private bool scanned;
//private bool updated;
private Dictionary<string, DMAnomalyObject> anomalies = new Dictionary<string, DMAnomalyObject>()... | bsd-3-clause | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.