Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Allow specifying two sprites for legacy hit explosions | // 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;
namespace osu.Game.Rulesets.Taiko.Skinning
{
public class LegacyHitExplosion : CompositeDrawab... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Rulesets.Taiko.Skinning
{
public class Lega... |
Use ImmutableArray for IList interface | // 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 Newtonsoft.Json.Serialization;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
us... | // 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 Newtonsoft.Json.Serialization;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Text;
usin... |
Add default values for lyric and pitch | namespace MusicXml.Domain
{
public class Note
{
internal Note()
{
Type = string.Empty;
Duration = -1;
Voice = -1;
Staff = -1;
IsChordTone = false;
}
public string Type { get; internal set; }
public int Voice { get; internal set; }
public int Duration { get; internal set; }
public Ly... | namespace MusicXml.Domain
{
public class Note
{
internal Note()
{
Type = string.Empty;
Duration = -1;
Voice = -1;
Staff = -1;
IsChordTone = false;
Lyric = new Lyric();
Pitch = new Pitch();
}
public string Type { get; internal set; }
public int Voice { get; internal set; }
public ... |
Fix rust.BroadcastChat using wrong Broadcast method | using Oxide.Core.Libraries;
namespace Oxide.Game.Rust.Libraries
{
public class Server : Library
{
#region Chat and Commands
/// <summary>
/// Broadcasts a chat message to all players
/// </summary>
/// <param name="message"></param>
/// <param name="userId"></p... | using Oxide.Core.Libraries;
namespace Oxide.Game.Rust.Libraries
{
public class Server : Library
{
#region Chat and Commands
/// <summary>
/// Broadcasts a chat message to all players
/// </summary>
/// <param name="message"></param>
/// <param name="userId"></p... |
Remove class constraint on AsNonNull() | // 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.Diagnostics.CodeAnalysis;
namespace osu.Framework.Extensions.ObjectExtensions
{
/// <summary>
/// Extensions that apply to all objects.
/// </su... | // 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.Diagnostics.CodeAnalysis;
namespace osu.Framework.Extensions.ObjectExtensions
{
/// <summary>
/// Extensions that apply to all objects.
/// </su... |
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. | using System;
using System.Reflection;
[assembly: AssemblyTitle("Autofac.Extras.CommonServiceLocator")]
[assembly: AssemblyDescription("Autofac Adapter for the Microsoft CommonServiceLocator")]
| using System.Reflection;
[assembly: AssemblyTitle("Autofac.Extras.CommonServiceLocator")]
|
Write to log when retrying | using System;
using System.Collections.Generic;
namespace GitVersion.Helpers
{
internal class OperationWithExponentialBackoff<T> where T : Exception
{
private IThreadSleep ThreadSleep;
private Action Operation;
private int MaxRetries;
public OperationWithExponentialBackoff(ITh... | using System;
using System.Collections.Generic;
namespace GitVersion.Helpers
{
internal class OperationWithExponentialBackoff<T> where T : Exception
{
private IThreadSleep ThreadSleep;
private Action Operation;
private int MaxRetries;
public OperationWithExponentialBackoff(ITh... |
Improve JS Snippet unit test | namespace Microsoft.Framework.DependencyInjection.Test
{
using Microsoft.ApplicationInsights.AspNetCore;
using Microsoft.ApplicationInsights.Extensibility;
using Xunit;
public static class ApplicationInsightsJavaScriptTest
{
[Fact]
public static void SnippetWillBeEmptyWhenInstrumen... | namespace Microsoft.Framework.DependencyInjection.Test
{
using Microsoft.ApplicationInsights.AspNetCore;
using Microsoft.ApplicationInsights.Extensibility;
using Xunit;
public static class ApplicationInsightsJavaScriptTest
{
[Fact]
public static void SnippetWillBeEmptyWhenInstrumen... |
Fix migration by truncating rooms table | namespace Vaskelista.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class RoomHouseholdRelation : DbMigration
{
public override void Up()
{
AddColumn("dbo.Rooms", "HouseHold_HouseholdId", c => c.Int(nullable: false));
... | namespace Vaskelista.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class RoomHouseholdRelation : DbMigration
{
public override void Up()
{
Sql("TRUNCATE TABLE dbo.Rooms");
AddColumn("dbo.Rooms", "HouseHold_HouseholdId", c => c... |
Remove unnecessary cycle check from SynchroniseWithSystemClock | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace elbgb_core
{
public abstract class ClockedComponent
{
protected GameBoy _gb;
protected ulong _lastUpdate;
public ClockedComponent(GameBoy gameBoy)
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace elbgb_core
{
public abstract class ClockedComponent
{
protected GameBoy _gb;
private SystemClock _clock;
protected ulong _lastUpdate;
public ClockedCom... |
Fix version number in 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("Ed... | 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("Edu... |
Fix Matt in name space | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
public class MattBobke : IAmACommunityMember, IFilterMyBlogPosts
{
public string FirstName => "Matt";
public string LastName => "Bobke";
public stri... | 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 MattBobke : IAmACommunityMember, IFilterMyBlogPosts
{
public string FirstName => "Matt";
public string Las... |
Add model to change email view | @{
ViewBag.PageID = "page-change-email-address";
ViewBag.Title = "Change your email address";
}
@if (!Model.Valid)
{
<div class="error-summary" role="group" tabindex="-1">
<h1 class="heading-medium error-summary-heading" id="error-summary-heading"> Errors to fix </h1>
<p>Check the... |
@model SFA.DAS.EmployerUsers.Web.Models.ChangeEmailViewModel
@{
ViewBag.PageID = "page-change-email-address";
ViewBag.Title = "Change your email address";
}
@if (!Model.Valid)
{
<div class="error-summary" role="group" tabindex="-1">
<h1 class="heading-medium error-summary-heading" id=... |
Fix some flaky OData JSON tests using string comparison | // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System.Linq;
using Microsoft.TestCommon;
namespace System.Web.Http.OData.Formatter
{
internal static class JsonAssert
{
public static void Equal(string expected, ... | // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using Microsoft.TestCommon;
using Newtonsoft.Json.Linq;
namespace System.Web.Http.OData.Formatter
{
internal static class JsonAssert
{
public static void Equal(string e... |
Fix asmdef analysers working on external files | using JetBrains.ReSharper.Feature.Services.Daemon;
using JetBrains.ReSharper.Plugins.Unity.JsonNew.Psi;
using JetBrains.ReSharper.Plugins.Unity.ProjectModel;
using JetBrains.ReSharper.Psi;
using JetBrains.ReSharper.Psi.Tree;
namespace JetBrains.ReSharper.Plugins.Unity.AsmDef.Feature.Services.Daemon
{
public abstr... | using JetBrains.ReSharper.Feature.Services.Daemon;
using JetBrains.ReSharper.Plugins.Unity.JsonNew.Psi;
using JetBrains.ReSharper.Plugins.Unity.ProjectModel;
using JetBrains.ReSharper.Psi;
using JetBrains.ReSharper.Psi.Tree;
namespace JetBrains.ReSharper.Plugins.Unity.AsmDef.Feature.Services.Daemon
{
public abstr... |
Format code and remove wrong doc comment | using JetBrains.DocumentModel;
using JetBrains.ReSharper.Feature.Services.Daemon;
using JetBrains.ReSharper.Psi.CSharp;
using JetBrains.ReSharper.Psi.Tree;
using ReSharperExtensionsShared.Highlighting;
using Roflcopter.Plugin.MismatchedFileNames;
[assembly: RegisterConfigurableSeverity(
MismatchedFileNameHighligh... | using JetBrains.DocumentModel;
using JetBrains.ReSharper.Feature.Services.Daemon;
using JetBrains.ReSharper.Psi.CSharp;
using JetBrains.ReSharper.Psi.Tree;
using ReSharperExtensionsShared.Highlighting;
using Roflcopter.Plugin.MismatchedFileNames;
[assembly: RegisterConfigurableSeverity(
MismatchedFileNameHighligh... |
Fix issue that HRESULT returned by DWMAPI isn't converted. | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
namespace MetroRadiance.Interop.Win32
{
public static class Dwmapi
{
[DllImport("Dwmapi.dll", ExactSpelling = true)]
public static extern void DwmGetColorizationColor([Out] out uint pcrColorization... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
namespace MetroRadiance.Interop.Win32
{
public static class Dwmapi
{
[DllImport("Dwmapi.dll", ExactSpelling = true, PreserveSig = false)]
public static extern void DwmGetColorizationColor([Out] out... |
Disable with compiler constant instead. | using System;
using System.Collections;
using UnityEngine;
//using DG.Tweening;
public class EditorCoroutineTween
{
/*
public static EditorCoroutine Run(Tween t)
{
EditorCoroutineTween ct = new EditorCoroutineTween();
return EditorCoroutine.Start(ct.UpdateTween(t));
}
IEnumerator UpdateTween(Tween t)
{
... | #if !NO_DOTWEEN
using System;
using System.Collections;
using UnityEngine;
using DG.Tweening;
public class EditorCoroutineTween
{
public static EditorCoroutine Run(Tween t)
{
EditorCoroutineTween ct = new EditorCoroutineTween();
return EditorCoroutine.Start(ct.UpdateTween(t));
}
IEnumerator UpdateTween(Twe... |
Add test for concurrent session factories. | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
namespace NHibernate.Caches.Redis.Tests
{
public class PerformanceTests : IntegrationTestBase
{
[Fact]
async Task concurrent_reads_and_writes()
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
namespace NHibernate.Caches.Redis.Tests
{
public class PerformanceTests : IntegrationTestBase
{
[Fact]
async Task concurrent_sessions_with_reads_and_writes()
... |
Use Name and title interchangeably. | using Newtonsoft.Json;
namespace TMDbLib.Objects.General
{
public class TranslationData
{
[JsonProperty("title")]
public string Title { get; set; }
[JsonProperty("overview")]
public string Overview { get; set; }
[JsonProperty("homepage")]
public string HomePag... | using Newtonsoft.Json;
namespace TMDbLib.Objects.General
{
public class TranslationData
{
[JsonProperty("name")]
public string Name { get; set; }
// Private hack to ensure two properties (name, title) are deserialized into Name.
// Tv Shows and Movies will use different names ... |
Revert "Remove uneeded player collection methods" | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Booma.Proxy
{
/// <summary>
/// The collection of network players that are known about.
/// </summary>
public interface INetworkPlayerCollection : IEnumerable<INetworkPlayer>
{
/// <sum... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Booma.Proxy
{
/// <summary>
/// The collection of network players that are known about.
/// </summary>
public interface INetworkPlayerCollection : IEnumerable<INetworkPlayer>
{
/// <sum... |
Store selected implementation in cookie | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using DataAccessExamples.Core.Services;
using DataAccessExamples.Core.ViewModels;
using Nancy.TinyIoc;
namespace DataAccessExamples.Web
{
using Nancy;
public class Bootstrapper : DefaultNancyBootstrapper
{
... | using System;
using System.Linq;
using DataAccessExamples.Core.Services;
using Nancy.Bootstrapper;
using Nancy.Responses;
using Nancy.TinyIoc;
namespace DataAccessExamples.Web
{
using Nancy;
public class Bootstrapper : DefaultNancyBootstrapper
{
protected override void ConfigureReque... |
Hide cursor and quit with escape. | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameManager : MonoBehaviour
{
void Start ()
{
}
void Update ()
{
}
}
| using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameManager : MonoBehaviour
{
void Start ()
{
Cursor.visible = false;
Cursor.lockState = CursorLockMode.Locked;
}
void Update ()
{
if (Input.GetKey(KeyCode.Escape))
{
... |
Implement interface in concrete class | namespace Our.Umbraco.Nexu.Core.Services
{
/// <summary>
/// Represents nexu entity relation service.
/// </summary>
public class NexuEntityRelationService
{
}
}
| namespace Our.Umbraco.Nexu.Core.Services
{
using Our.Umbraco.Nexu.Common.Interfaces.Services;
/// <summary>
/// Represents nexu entity relation service.
/// </summary>
public class NexuEntityRelationService : IEntityRelationService
{
}
}
|
Remove disused data collection partition registers. | using Lbookshelf.Models;
using Lbookshelf.Utils;
using Lbookshelf.ViewModels;
using Ldata;
using Ldata.Json;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace Lbookshelf
{
/// <summary>
... | using Lbookshelf.Models;
using Lbookshelf.Utils;
using Lbookshelf.ViewModels;
using Ldata;
using Ldata.Json;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace Lbookshelf
{
/// <summary>
... |
Tweak format of evaluation email per BC request | @model BatteryCommander.Web.Models.Evaluation
<h1>@Model.Ratee</h1>
<table border="1">
<tbody>
<tr>
<td>Soldier</td>
<td>@Model.Ratee</td>
</tr>
<tr>
<td>Rater</td>
<td>@Model.Rater</td>
</tr>
<tr>
<td>SR Rater</td... | @model BatteryCommander.Web.Models.Evaluation
<h1>@Model.Ratee</h1>
<table border="1">
<tbody>
<tr>
<td>Soldier</td>
<td>@Model.Ratee</td>
</tr>
<tr>
<td>Rater</td>
<td>@Model.Rater</td>
</tr>
<tr>
<td>SR Rater</td... |
Implement embedify function on frontend. | using BibleBot.Lib;
using DSharpPlus.Entities;
namespace BibleBot.Frontend
{
public class Utils
{
public DiscordEmbed Embed2Embed(InternalEmbed embed)
{
var builder = new DiscordEmbedBuilder();
var footerText =
builder.WithTitle(embed.Title);
b... | using BibleBot.Lib;
using DSharpPlus.Entities;
namespace BibleBot.Frontend
{
public class Utils
{
public enum Colours
{
NORMAL_COLOR = 6709986,
ERROR_COLOR = 16723502
}
public DiscordEmbed Embed2Embed(InternalEmbed embed)
{
var builde... |
Use Amount as coin identifier. | using WalletWasabi.Gui.ViewModels;
namespace WalletWasabi.Gui.Controls.WalletExplorer
{
public class CoinInfoTabViewModel : WasabiDocumentTabViewModel
{
public CoinInfoTabViewModel(CoinViewModel coin) : base(string.Empty)
{
Coin = coin;
Title = $"Details of {coin.OutputIndex}:{coin.TransactionId[0..7]}";
... | using WalletWasabi.Gui.ViewModels;
namespace WalletWasabi.Gui.Controls.WalletExplorer
{
public class CoinInfoTabViewModel : WasabiDocumentTabViewModel
{
public CoinInfoTabViewModel(CoinViewModel coin) : base(string.Empty)
{
Coin = coin;
Title = $"Coin ({coin.Amount.ToString(false, true)}) Details";
}
... |
Fix autogeneration of Framework version Version has to be Major.Minor.* instead of Major.Minor.*.* | 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... |
Allow testing of all chat-related classes dynamically | // 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.ComponentModel;
using osu.Framework.Graphics.Containers;
using osu.Game.Overlays;
namespace osu.Game.Tests.Visual
{
[Description("Testing chat api and... | // 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.Collections.Generic;
using System.ComponentModel;
using osu.Framework.Graphics.Containers;
using osu.Game.Overlays;
using osu.Game.Overlays.C... |
Update pinned score container header to use localised title | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Overlays.Profile.Sections.Ranks;
using osu.Game.Online.API.Requests;
using osu.Framework.Localisation;
using osu.Game.Resources.Localisation.Web;
namespa... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Overlays.Profile.Sections.Ranks;
using osu.Game.Online.API.Requests;
using osu.Framework.Localisation;
using osu.Game.Resources.Localisation.Web;
namespa... |
Replace GetHover implementation with generated classes. | using System.Threading.Tasks;
namespace DanTup.DartAnalysis
{
class AnalysisGetHoverRequest : Request<AnalysisGetHoverParams, Response<AnalysisGetHoverResponse>>
{
public string method = "analysis.getHover";
public AnalysisGetHoverRequest(string file, int offset)
{
this.@params = new AnalysisGetHoverParam... | using System.Threading.Tasks;
using DanTup.DartAnalysis.Json;
namespace DanTup.DartAnalysis
{
public static class AnalysisGetHoverImplementation
{
public static async Task<HoverInformation[]> GetHover(this DartAnalysisService service, string file, int offset)
{
var request = new AnalysisGetHoverRequest
{
... |
Add System Programming Lab2 Automaton Builder - Added Start and Finish | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Lab2.Automaton
{
public class AutomatonBuilder : IIOAutomatonBuilder
{
private FiniteStateAutomaton automaton = new FiniteStateAutomaton();
public void AddSta... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Lab2.Automaton
{
public class AutomatonBuilder : IIOAutomatonBuilder
{
private FiniteStateAutomaton automaton = new FiniteStateAutomaton();
public void AddSta... |
Remove redundant code from Admin controller | using System;
using AlphaDev.Core;
using AlphaDev.Web.Controllers;
using AlphaDev.Web.Models;
using FluentAssertions;
using Microsoft.AspNetCore.Mvc;
using NSubstitute;
using Optional;
using Xunit;
namespace AlphaDev.Web.Tests.Unit.Controllers
{
public class AdminControllerTests
{
private AdminControl... | using System;
using AlphaDev.Core;
using AlphaDev.Web.Controllers;
using AlphaDev.Web.Models;
using FluentAssertions;
using Microsoft.AspNetCore.Mvc;
using NSubstitute;
using Optional;
using Xunit;
namespace AlphaDev.Web.Tests.Unit.Controllers
{
public class AdminControllerTests
{
private AdminControl... |
Make the assembly's internals visible to the reference assembly |
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("Watsonia.Data.Tests")]
|
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("Watsonia.Data.Tests")]
[assembly: InternalsVisibleTo("Watsonia.Data.Reference")]
|
Add input binder to allow for comma-separated list inputs for API routes | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc.ModelBinding;
namespace api
{
public class CommaDelimitedArrayModelBinder : IModelBinder
{
pub... | using System;
using System.ComponentModel;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc.ModelBinding;
namespace api
{
public class CommaDelimitedArrayModelBinder : IModelBinder
{
public Task BindModelAsync(ModelBindingContext bindingContext)
... |
Add toString override to error class | namespace ExifLibrary
{
/// <summary>
/// Represents error severity.
/// </summary>
public enum Severity
{
Info,
Warning,
Error,
}
/// <summary>
/// Represents errors or warnings generated while reading/writing image files.
/// </summary>
public class Im... | namespace ExifLibrary
{
/// <summary>
/// Represents error severity.
/// </summary>
public enum Severity
{
Info,
Warning,
Error,
}
/// <summary>
/// Represents errors or warnings generated while reading/writing image files.
/// </summary>
public class Im... |
Increase nuget package version to 2.0.0-beta03 | using System.Reflection;
// 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("CakeMail.RestClient")]
[assembly: AssemblyDescription("CakeMail.RestClient is a... | using System.Reflection;
// 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("CakeMail.RestClient")]
[assembly: AssemblyDescription("CakeMail.RestClient is a... |
Fix exception when box info is empty | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
using UnityEngine.UI;
public class BoxInfo : MonoBehaviour
{
public Text LeftText;
public Text RightText;
readonly StringBuilder names = new StringBuilder();
readonly StringBuilder values = new StringBuilder(... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
using UnityEngine.UI;
public class BoxInfo : MonoBehaviour
{
public Text LeftText;
public Text RightText;
readonly StringBuilder names = new StringBuilder();
readonly StringBuilder values = new StringBuilder(... |
Remove Windows long path workaround. | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Diagnostics;
using System.Text.RegularExpressions;
namespace osu.Framework.Platform.Windows
{
public class WindowsStorage : DesktopStorag... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Diagnostics;
namespace osu.Framework.Platform.Windows
{
public class WindowsStorage : DesktopStorage
{
public WindowsStorage(... |
Rephrase null-safe Dispose helper to use pattern matching syntax. | namespace Fixie
{
using System;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Reflection;
using static Internal.Maybe;
public static class ReflectionExtensions
{
public static bool IsVoid(this MethodInfo method)
{
return method.ReturnTyp... | namespace Fixie
{
using System;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Reflection;
using static Internal.Maybe;
public static class ReflectionExtensions
{
public static bool IsVoid(this MethodInfo method)
{
return method.ReturnTyp... |
Tidy up some formatting of code file | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MvcMiniProfiler;
using Raven.Client.Connection;
using Raven.Client.Connection.Profiling;
using Raven.Client.Document;
namespace MvcMiniProfiler.RavenDb
{
public class Profiler
{
private static Dictionary<string, IDisposabl... | using System;
using System.Collections.Generic;
using Raven.Client.Connection;
using Raven.Client.Connection.Profiling;
using Raven.Client.Document;
namespace MvcMiniProfiler.RavenDb
{
public class Profiler
{
private static Dictionary<string, IDisposable> _Requests = new Dictionary<string, IDisposable>();
publ... |
Test code for SQL queries | using System;
namespace NHibernate.DomainModel
{
/// <summary>
/// Summary description for SubComponent.
/// </summary>
public class SubComponent
{
private string _subName;
private string _subName1;
public SubComponent()
{
}
public string SubName
{
get { return _subName; }
set { _subName = v... | |
Make this enum a byte for small serialization | namespace ZocMonLib
{
public enum MonitorReductionType
{
Custom = 0,
DefaultAverage = 1,
DefaultAccumulate = 2
}
}
| namespace ZocMonLib
{
public enum MonitorReductionType : byte
{
Custom = 0,
DefaultAverage = 1,
DefaultAccumulate = 2
}
}
|
Add a reusable hash-code class. | using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace DasMulli.Win32.ServiceUtils
{
/// <summary>
/// Simplifies the work of hashing.
/// Taken from <see cref="https://rehansaeed.com/gethashcode-made-easy/"/>, and modified with Reshaper
/// </summary>
public stru... | |
Split string per given pattern | // http://careercup.com/question?id=5702976138117120
// Split string per pattern
//
using System;
using System.Collections.Generic;
using System.Linq;
static class Program
{
static IEnumerable<String> Split(this String s, IEnumerable<int> pattern)
{
int prev = 0;
foreach (int index in pattern)... | |
Add "no normalization performed" test for Storage client. | // Copyright 2017 Google Inc. 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
//
// Unless required by applic... | |
Update server side API for single multiple answer question | using Microsoft.AspNetCore.Mvc;
using Promact.Trappist.DomainModel.Models.Question;
using Promact.Trappist.Repository.Questions;
using System;
namespace Promact.Trappist.Core.Controllers
{
[Route("api/question")]
public class QuestionsController : Controller
{
private readonly IQuestionRepository ... | |
Add first draft of AppBuilderExtension tests. | using System;
using Microsoft.AspNetCore.Builder;
using Moq;
using Xunit;
namespace Marvin.Cache.Headers.Test.Extensions
{
public class AppBuilderExtensionsFacts
{
[Fact(Skip = "The Verify throws an exception because UseMiddleware is an extension function as well and can't be mocked, need to find ")]
... | |
Add path element class for selection access | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
namespace Pather.CSharp.PathElements
{
public class SelectionAccess : IPathElement
{
public SelectionAccess()
{
}
public object A... | |
Add baseline test coverage for blocking exit flow | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Threading;
using System.Threading.Tasks;
using NUnit.Framework;
using osu.Framework.Extensions;
using osu.Framework.Platform;
using osu.Framework.Testing;
n... | |
Add failing tests for GH-854 | using System.Linq;
using Xunit;
using Marten.Testing.Linq;
namespace Marten.Testing.Bugs
{
public class Bug_854_multiple_or_expressions_softdelete_tenancy_filters_appended_incorrectly: IntegratedFixture
{
[Fact]
public void query_where_with_multiple_or_expressions_against_single_tenant()
... | |
Remove unused project tree factory. | using System;
using System.ComponentModel.Composition;
using Microsoft.VisualStudio.ProjectSystem.Designers;
using Microsoft.VisualStudio.ProjectSystem.Utilities;
using Microsoft.VisualStudio.ProjectSystem.Utilities.Designers;
namespace NuProj.ProjectSystem
{
[Export(typeof(IProjectTreeModifier))]
[PartMetad... | using System;
using System.ComponentModel.Composition;
using Microsoft.VisualStudio.ProjectSystem.Designers;
using Microsoft.VisualStudio.ProjectSystem.Utilities;
using Microsoft.VisualStudio.ProjectSystem.Utilities.Designers;
namespace NuProj.ProjectSystem
{
[Export(typeof(IProjectTreeModifier))]
[PartMetad... |
Copy list with random pointer | // https://leetcode.com/problems/copy-list-with-random-pointer/
//
// A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.
//
// Return a deep copy of the list.
// Finally nailed it.
// https://leetcode.com/submissions/detail/535889... | |
Disable test parallelization in PowerShellEditorServices.Test project | //
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
using Xunit;
// Disable test parallelization to avoid port reuse issues
[assembly: CollectionBehavior(DisableTestParallelization = true)]
| |
Add extension method check for success HTTP Status code | namespace System
{
internal static class SystemExtensions
{
internal static bool IsSuccessStatusCode(this int @this)
{
return @this >= 200 && @this <= 299;
}
}
} | |
Add delegates and VTables for ITaskBarList2. | using System;
using System.Runtime.InteropServices;
using static Avalonia.Win32.Interop.UnmanagedMethods;
namespace Avalonia.Win32
{
delegate void MarkFullscreenWindow(IntPtr This, IntPtr hwnd, [MarshalAs(UnmanagedType.Bool)] bool fullscreen);
delegate HRESULT HrInit(IntPtr This);
struct ITaskBarList2VTa... | |
Add extension overload of Render that takes care of the BitmapWrapper. | using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
namespace Pinta.ImageManipulation
{
public static class BitmapExtensions
{
public static void Render (this BaseEffect effect, Bitmap source)
{
var wrapper = new BitmapWrapper (source);
effect.Rende... | |
Add Groping class for Employee | using System.Collections.Generic;
using System.Xml.Serialization;
namespace parallel_extension_demo
{
[XmlRoot("groop")]
public class Groups
{
[XmlArray("employees"), XmlArrayItem("employee")]
public List<Employee> Colection { get; set; }
[XmlAttribute("employeeCount")]
pub... | |
Add fund test account method | using System;
using System.IO;
using System.Net;
namespace stellar_dotnet_sdk
{
public static class AccountUtil
{
public static void FundTestAccount(string Public_Key)
{
UriBuilder baseUri = new UriBuilder("https://horizon-testnet.stellar.org/friendbot");
string queryToAppend = "addr=" + Public_Key;
b... | |
Add unit test for OptionExtensions | using Sprache;
using Xunit;
namespace Sprache.Tests
{
public class OptionTests
{
private Parser<IOption<char>> ParserOptionalSelect = Parse.Char('a').Optional().Select(o => o.Select(c => char.ToUpperInvariant(c)));
private Parser<IOption<string>> ParserOptionalSelectMany =
from... | |
Add AppendSpace extension method for StringBuilder | using System.Text;
namespace Atata
{
/// <summary>
/// Provides a set of extension methods for <see cref="StringBuilder"/>.
/// </summary>
public static class StringBuilderExtensions
{
/// <summary>
/// Appends the space character.
/// </summary>
/// <param name="bu... | |
Add test scene for Triangles | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Graphics.Backgrounds;
using osu.Framework.Graphics;
using osuTK.Graphics;
using osu.Framework.Graphics.Shapes;
namespace osu.Game.Tests.Visual.Background... | |
Add test coverage for distance/rectangular grid exclusivity | // 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.Linq;
using NUnit.Framework;
using osu.Framework.Testing;
using osu.Game.Rulesets.Osu.Edit;
using osu.Game.Screens.Edit.Compose.Components;
using osu.Game.Te... | |
Add a worktree repository test | using GitTools.Testing;
using LibGit2Sharp;
using NUnit.Framework;
using System.IO;
using GitVersionCore.Tests.Helpers;
namespace GitVersionCore.Tests.IntegrationTests
{
[TestFixture]
public class WorktreeScenarios : TestBase
{
[Test]
[Category("NoMono")]
[Description("LibGit2Shar... | |
Fix autosave and refresh on shared projects | using JetBrains.Annotations;
using JetBrains.Application.changes;
using JetBrains.Application.FileSystemTracker;
using JetBrains.Application.Threading;
using JetBrains.DocumentManagers;
using JetBrains.DocumentModel;
using JetBrains.Lifetimes;
using JetBrains.ProjectModel;
using JetBrains.ReSharper.Host.Features.Docume... | |
Add beatmap parsing as sample benchmark. | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.IO;
using BenchmarkDotNet.Attributes;
using osu.Framework.IO.Stores;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.Formats;
using osu.Game.IO;
using osu.... | |
Set list to readonly after fetch. | using System;
using System.Data;
using System.Data.SqlClient;
using Csla;
using Csla.Data;
namespace ProjectTracker.Library
{
[Serializable()]
public class ResourceList :
ReadOnlyListBase<ResourceList, ResourceInfo>
{
#region Factory Methods
public static ResourceList GetResourceList()
{
... | using System;
using System.Data;
using System.Data.SqlClient;
using Csla;
using Csla.Data;
namespace ProjectTracker.Library
{
[Serializable()]
public class ResourceList :
ReadOnlyListBase<ResourceList, ResourceInfo>
{
#region Factory Methods
public static ResourceList GetResourceList()
{
... |
Add default provider for RequestRuntime | using System;
using System.Collections.Generic;
using System.Linq;
namespace Glimpse.Web
{
public class DefaultRequestRuntimeProvider : IRequestRuntimeProvider
{
private readonly ITypeService _typeService;
public DefaultRequestRuntimeProvider(ITypeService typeService)
{
_t... | |
Test Fixture for Template class. | using System;
using NHibernate.Dialect;
using NHibernate.SqlCommand;
using NUnit.Framework;
namespace NHibernate.Test.SqlCommandTest
{
[TestFixture]
public class TemplateFixture
{
public TemplateFixture()
{
}
/// <summary>
/// Tests that a column enclosed by <c>`</c> is enclosed by the Dialect.Ope... | |
Add test scene for NewsHeader | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using NUnit.Framework;
using osu.Game.Overlays.News;
using osu.Framework.Graphics;
using osu.Game.Overlays;
using osu.Framework.Allocation;
namespace osu.Game.Tests.Vis... | |
Add Server Web Options Setup | using System;
using Microsoft.Framework.OptionsModel;
namespace Glimpse.Server
{
public class GlimpseServerWebOptionsSetup : ConfigureOptions<GlimpseServerWebOptions>
{
public GlimpseServerWebOptionsSetup() : base(ConfigureGlimpseServerWebOptions)
{
Order = -1000;
}
... | |
Add first API stub endpoint | using BatteryCommander.Web.Models;
using BatteryCommander.Web.Services;
using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace Bat... | |
Add unit tests for the SqliteAnchorStateBuilder class | // 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... | |
Test to verify inline projections with lots of events. Closes GH-1723 | using System;
using System.Threading.Tasks;
using Marten.Testing.Events.Aggregation;
using Marten.Testing.Harness;
using Shouldly;
using Xunit;
using Xunit.Abstractions;
namespace Marten.Testing.Events.Bugs
{
public class Bug_1723_inline_projections_get_cut_off : AggregationContext
{
private readonly I... | |
Add headless test ensuring correct cancelling download behaviour | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Testing;
using osu.Game.Beatmaps;
using osu.Game.Overlays.Notifications;
using osu.Game.Tests.V... | |
Add CilLocalVariableCollection index consistency tests. | using AsmResolver.DotNet.Code.Cil;
using Xunit;
namespace AsmResolver.DotNet.Tests.Code.Cil
{
public class CilLocalVariableCollectionTest
{
private readonly CilLocalVariableCollection _collection = new CilLocalVariableCollection();
private readonly ModuleDefinition _module = new ModuleDefinitio... | |
Add thread safe event trigger | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Recipe.ThreadAndConcurrent
{
public static class EventRaiseExtentions
{
public static void Raise<TEventArgs>(this TEventArgs e, object sender,
... | |
Add factory for the PathElement class for array like access | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace Pather.CSharp.PathElements
{
public class EnumerableAccessFactory : IPathElementFactory
{
public IPathElement Create(string pathElement)
{
... | |
Add test scene for "Freeze Frame" mod | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using NUnit.Framework;
using osu.Game.Rulesets.Osu.Mods;
namespace osu.Game.Rulesets.Osu.Tests.Mods
{
public class TestSceneOsuModFreezeFrame : OsuModTestScene
{... | |
Add fixed implementation for RequestProfilers provider | using System.Collections.Generic;
using System.Linq;
namespace Glimpse.Agent.Web
{
public class FixedRequestProfilerProvider : IRequestProfilerProvider
{
public FixedRequestProfilerProvider()
: this(Enumerable.Empty<IRequestProfiler>())
{
}
public FixedRequestProfi... | |
Add settings for backward compatibility | // Copyright 2019 Google LLC
//
// 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | |
Add tests for Id struct serialization and deserialization | using System;
using Newtonsoft.Json;
using Xunit;
namespace ReactiveDomain.Messaging.Tests
{
public sealed class when_serializing_ids
{
private readonly CorrelationId _corrId;
private readonly SourceId _sourceId;
private readonly SourceId _nullSourceId;
public when_serializing... | |
Add sample code to the unit test project for now. | using LonoNet.Client;
using LonoNet.Models;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System.Threading;
namespace LonoNetTest
{
/// <summary>
/// Early stage. At this point, this is more of sample code to get you started. Will work on actual unit tests soon.
/// </summary>
[TestClass... | |
Add view for "Initiative Create Closed" error page. | @{
ViewData["Title"] = "Access Denied";
}
<br>
<br>
<br>
<div class="container">
<h2 class="text-danger">Creating Initiative projects is unavailable.</h2>
<p>
You do not have appropriate permissions to create Initiative projects. Please create a Draft project.
</p>
</div> | |
Create data source for local storage | using Microsoft.Live;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.ApplicationModel;
using Windows.Storage;
namespace ClumsyWor... | |
Add failing test covering RomanisableString usage in SpriteText | // 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.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Co... | |
Add delete auto index creation | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
namespace LiteDB
{
public partial class LiteCollection<T>
{
/// <summary>
/// Remove all document based on a Query object. Returns removed document counts
... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
namespace LiteDB
{
public partial class LiteCollection<T>
{
/// <summary>
/// Remove all document based on a Query object. Returns removed document counts
... |
Remove reference to settings icon | using System;
public partial class Settings : System.Web.UI.Page
{
//---------------------------------------------------------------------------
protected void Page_Load( object sender, EventArgs e )
{
// Don't allow people to skip the login page.
if( Session[ SettingsLogin.SES_SETTINGS_LOGGED_IN ] == ... | |
Add failing test coverage of gameplay sample pausing (during seek) | // 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.Linq;
using NUnit.Framework;
using osu.Framework.Graphics.Audio;
using osu.Framework.Testing;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Osu;
using osu... | |
Add assembly info to OneSignal.Core | using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("Com.OneSignal.Core")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
... | |
Add stub endpoint for getting vehicle info | using BatteryCommander.Web.Models;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BatteryCommander.Web.Controllers.API
{
[Route("api/[controller]"), Authoriz... | |
Add ${aspnet-request-contenttype} (ASP.NET Core only) | #if NETSTANDARD_1plus
using NLog.LayoutRenderers;
using System.Text;
using Microsoft.AspNetCore.Routing;
using NLog.Web.Internal;
namespace NLog.Web.LayoutRenderers
{
/// <summary>
/// ASP.NET content type.
/// </summary>
/// <example>
/// <code lang="NLog Layout Renderer">
/// ${aspnet-reque... | |
Add realtime multiplayer test scene abstract class | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Gam... | |
Use value formatters to describe asserted call | namespace FakeItEasy.Expressions.ArgumentConstraints
{
using System;
using System.Diagnostics.CodeAnalysis;
using FakeItEasy.Core;
internal class EqualityArgumentConstraint
: IArgumentConstraint
{
public EqualityArgumentConstraint(object expectedValue)
{
... | namespace FakeItEasy.Expressions.ArgumentConstraints
{
using System;
using System.Diagnostics.CodeAnalysis;
using FakeItEasy.Core;
internal class EqualityArgumentConstraint
: IArgumentConstraint
{
public EqualityArgumentConstraint(object expectedValue)
{
... |
Add test scene for mania composer | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containe... | |
Add test scene for labelled dropdowns | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using NUnit.Framework;
using osu.Game.Beatmaps;
using osu.Game.Graphics.UserInterfaceV2;
namespace osu.Game.Tests.Visual.UserInterface
{
public class TestSceneLabell... | |
Test for headers in GAPIC client libraries | // Copyright 2019 Google LLC
//
// 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | |
Add renderscript for the Preset playerextension. | using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using Mpdn.RenderScript.Config;
using Mpdn.PlayerExtensions.GitHub;
using YAXLib;
namespace Mpdn.RenderScript
{
namespace Mpdn.ScriptChain
{
public abstract class PresetRenderScript : IRenderScriptUi
... | |
Test replicating the asp webapi failure scenario | using System.IO;
using System.Threading.Tasks;
using NuGet.Versioning;
using NuKeeper.Configuration;
using NuKeeper.Inspection.RepositoryInspection;
using NuKeeper.NuGet.Process;
using NUnit.Framework;
namespace NuKeeper.Integration.Tests.NuGet.Process
{
[TestFixture]
public class DotNetUpdatePackageCommandTes... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.