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 |
|---|---|---|---|---|---|---|---|---|
e23edf42fba406564f40a67916ed16ae2b448ef7 | fix build error | Ky7m/DemoCode,Ky7m/DemoCode,Ky7m/DemoCode,Ky7m/DemoCode | WorkWithTelemetryInDotNET/BillingService/OrderPlacedHandler.cs | WorkWithTelemetryInDotNET/BillingService/OrderPlacedHandler.cs | using JetBrains.Annotations;
using NServiceBus;
// using NServiceBus.Extensions.Diagnostics;
using Shared;
namespace BillingService;
[UsedImplicitly]
public partial class OrderPlacedHandler : IHandleMessages<OrderPlaced>
{
private readonly ILogger<OrderPlacedHandler> _logger;
public OrderPlacedHandler(ILogge... | using JetBrains.Annotations;
using NServiceBus;
using NServiceBus.Extensions.Diagnostics;
using Shared;
namespace BillingService;
[UsedImplicitly]
public partial class OrderPlacedHandler : IHandleMessages<OrderPlaced>
{
private readonly ILogger<OrderPlacedHandler> _logger;
public OrderPlacedHandler(ILogger<O... | mit | C# |
a66ef86ffb6b488662d6a87990d2cfeb61b1a856 | Fix page count | Krusen/ErgastApi.Net | src/ErgastiApi/Responses/ErgastResponse.cs | src/ErgastiApi/Responses/ErgastResponse.cs | using System;
using Newtonsoft.Json;
namespace ErgastApi.Responses
{
// TODO: Use internal/private constructors for all response types?
public abstract class ErgastResponse
{
public string Url { get; set; }
public int Limit { get; set; }
public int Offset { get; set; }
[... | using System;
namespace ErgastApi.Responses
{
// TODO: Use internal/private constructors for all response types?
public abstract class ErgastResponse
{
public string Url { get; set; }
public int Limit { get; set; }
public int Offset { get; set; }
public int Total { get; ... | unlicense | C# |
eb03b0ee3a59f31f364ef904ed5c35ee67565ae1 | Fix whitespace in IMemberService. | GiveCampUK/GiveCRM,GiveCampUK/GiveCRM | src/GiveCRM.Web/Services/IMemberService.cs | src/GiveCRM.Web/Services/IMemberService.cs | using System.Collections.Generic;
using GiveCRM.Models;
namespace GiveCRM.Web.Services
{
public interface IMemberService
{
IEnumerable<Member> All();
Member Get(int id);
void Update(Member member);
void Insert(Member member);
void Delete(Member member);
... | using System.Collections.Generic;
using GiveCRM.Models;
namespace GiveCRM.Web.Services
{
public interface IMemberService
{
IEnumerable<Member> All();
Member Get(int id);
void Update(Member member);
void Insert(Member member);
void Delete(Member member);
void Sav... | mit | C# |
1eae934ac5f295180e392f144e662ff3cd194fc0 | update TotpHelperTest.cs | WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common,WeihanLi/WeihanLi.Common | test/WeihanLi.Common.Test/HelpersTest/TotpHelperTest.cs | test/WeihanLi.Common.Test/HelpersTest/TotpHelperTest.cs | using System.Threading;
using WeihanLi.Common.Helpers;
using Xunit;
namespace WeihanLi.Common.Test.HelpersTest
{
public class TotpHelperTest
{
private readonly object _lock = new object();
private readonly string bizToken = "test_xxx";
[Fact]
public void Test()
{
... | using System.Threading;
using WeihanLi.Common.Helpers;
using Xunit;
namespace WeihanLi.Common.Test.HelpersTest
{
public class TotpHelperTest
{
private readonly object _lock = new object();
private readonly string bizToken = "test_xxx";
[Fact]
public void Test()
{
... | mit | C# |
ad6db7d37240d7433852137ed181e82c0de935eb | Replace test with test stub | SmartStepGroup/AgileCamp2015_Master,SmartStepGroup/AgileCamp2015_Master,SmartStepGroup/AgileCamp2015_Master | UnitTests/UnitTest1.cs | UnitTests/UnitTest1.cs | #region Usings
using NUnit.Framework;
using WebApplication.Controllers;
#endregion
namespace UnitTests
{
[TestFixture]
public class UnitTest1
{
[Test]
public void TestMethod1()
{
var controller = new HabitController();
Assert.True(true);
}
}
} | #region Usings
using NUnit.Framework;
#endregion
namespace UnitTests
{
[TestFixture]
public class UnitTest1
{
[Test]
public void TestMethod1()
{
Assert.True(true);
}
}
} | mit | C# |
5758cb569fbca1f9eabea1d49ec56df3dba3535e | Add tests of string handling. | mysql-net/MySqlConnector,mysql-net/MySqlConnector | tests/MySqlConnector.Tests/StatementPreparerTests.cs | tests/MySqlConnector.Tests/StatementPreparerTests.cs | using System.Text;
using MySql.Data.MySqlClient;
using MySqlConnector.Core;
using MySqlConnector.Utilities;
using Xunit;
namespace MySqlConnector.Tests
{
public class StatementPreparerTests
{
[Theory]
[InlineData("SELECT Id\nFROM mytable\nWHERE column1 = 2\nAND column2 = @param")]
[InlineData("SELECT Id\nFROM ... | using System.Text;
using MySql.Data.MySqlClient;
using MySqlConnector.Core;
using MySqlConnector.Utilities;
using Xunit;
namespace MySqlConnector.Tests
{
public class StatementPreparerTests
{
[Theory]
[InlineData("SELECT Id\nFROM mytable\nWHERE column1 = 2\nAND column2 = @param")]
[InlineData("SELECT Id\nFROM ... | mit | C# |
0873924a6b4bd4318e67e0bb6d2a0dc88466b575 | Make a few methods public for testability Switch to more generic IMongoQuery | phoenixwebgroup/DotNetMongoMigrations,phoenixwebgroup/DotNetMongoMigrations | src/MongoMigrations/CollectionMigration.cs | src/MongoMigrations/CollectionMigration.cs | namespace MongoMigrations
{
using System;
using System.Collections.Generic;
using MongoDB.Bson;
using MongoDB.Driver;
public abstract class CollectionMigration : Migration
{
protected string CollectionName;
public CollectionMigration(MigrationVersion version, string collectionName) : base(version... | namespace MongoMigrations
{
using System;
using System.Collections.Generic;
using MongoDB.Bson;
using MongoDB.Driver;
public abstract class CollectionMigration : Migration
{
protected string CollectionName;
public CollectionMigration(MigrationVersion version, string collectionName) : base(version... | mit | C# |
eb3c4d09c8897f5fe79696cfa1a002017f8f6f7b | Improve BulletController | emazzotta/unity-tower-defense | Assets/Scripts/BulletController.cs | Assets/Scripts/BulletController.cs | using UnityEngine;
using System.Collections;
public class BulletController : MonoBehaviour {
public float speed = 2f;
public Transform target;
public int damage = 1;
public float radius = 0;
void Update() {
Vector3 direction = target.position - this.transform.position;
float distanceCurrentF... | using UnityEngine;
using System.Collections;
public class BulletController : MonoBehaviour {
public float speed = 5f;
public Transform target;
public float damage = 1f;
public float radius = 0;
void Start() {
}
void Update() {
if(target == null) {
Destroy(this);
... | mit | C# |
8f3a3fb56ef8778627d267fe2c021110efd03a87 | Add mouse support | ChillyFlashER/OpenInput | src/OpenInput.Veldrid.SDL2/VeldridMouse.cs | src/OpenInput.Veldrid.SDL2/VeldridMouse.cs | namespace OpenInput
{
using OpenInput.Trackers;
using System.Collections.Generic;
using System.Linq;
using Veldrid;
public class VeldridMouse : VeldridDevice, IMouse
{
private readonly HashSet<MouseButton> pressedButtons = new HashSet<MouseButton>();
private MouseState currentS... | namespace OpenInput
{
using OpenInput.Trackers;
using Veldrid;
public class VeldridMouse : VeldridDevice, IMouse
{
/// <inheritdoc />
public string Name => "Veldrid Mouse";
/// <inheritdoc />
public IMouseTracker CreateTracker() => new BasicMouseTracker(this);
... | mit | C# |
c69bde2ec1406c037457fe6966d4711be9d49b2d | Update AppModule.cs | wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,Core2D/Core2D,wieslawsoltes/Core2D | src/Core2D/UI/Avalonia/Modules/AppModule.cs | src/Core2D/UI/Avalonia/Modules/AppModule.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 Autofac;
using Core2D.Editor;
using Core2D.Interfaces;
using Core2D.UI.Avalonia.Editor;
using Core2D.UI.Avalonia.Importers;
namespace Core2D.UI.Avalonia.Mod... | // 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 Autofac;
using Core2D.UI.Avalonia.Editor;
using Core2D.UI.Avalonia.Importers;
using Core2D.Editor;
using Core2D.Interfaces;
namespace Core2D.UI.Avalonia.Mod... | mit | C# |
ab3c31c0ab18ac13ce1e73ec1f3e4333aa469b87 | Allow to create ecommon configuration twice. | tangxuehua/ecommon,Aaron-Liu/ecommon | src/ECommon/Configurations/Configuration.cs | src/ECommon/Configurations/Configuration.cs | using System;
using ECommon.Components;
using ECommon.IO;
using ECommon.Logging;
using ECommon.Scheduling;
using ECommon.Serializing;
using ECommon.Socketing.Framing;
namespace ECommon.Configurations
{
public class Configuration
{
/// <summary>Provides the singleton access instance.
/// </summ... | using System;
using ECommon.Components;
using ECommon.IO;
using ECommon.Logging;
using ECommon.Scheduling;
using ECommon.Serializing;
using ECommon.Socketing.Framing;
namespace ECommon.Configurations
{
public class Configuration
{
/// <summary>Provides the singleton access instance.
/// </summ... | mit | C# |
97135dabb826d850cc8053b8060fdce0f13c36fc | Add "References" as parent | michael-reichenauer/Dependinator | Dependinator/ModelParsing/Private/MonoCecilReflection/Private/ModuleParser.cs | Dependinator/ModelParsing/Private/MonoCecilReflection/Private/ModuleParser.cs | using System;
using System.Linq;
using Mono.Cecil;
namespace Dependinator.ModelParsing.Private.MonoCecilReflection.Private
{
internal class ModuleParser
{
private readonly string rootGroup;
private readonly LinkHandler linkHandler;
private readonly Sender sender;
private AssemblyDefinition assembly;
publ... | using System;
using System.Linq;
using Mono.Cecil;
namespace Dependinator.ModelParsing.Private.MonoCecilReflection.Private
{
internal class ModuleParser
{
private readonly string rootGroup;
private readonly LinkHandler linkHandler;
private readonly Sender sender;
private AssemblyDefinition assembly;
publ... | mit | C# |
8e6cd9fa69690ca9506d97007e3005ee15655629 | handle legacy logouts | YAFNET/YAFNET,YAFNET/YAFNET,YAFNET/YAFNET,YAFNET/YAFNET | yafsrc/YetAnotherForum.NET/Pages/Account/Logout.ascx.cs | yafsrc/YetAnotherForum.NET/Pages/Account/Logout.ascx.cs | /* Yet Another Forum.NET
* Copyright (C) 2003-2005 Bjørnar Henden
* Copyright (C) 2006-2013 Jaben Cargman
* Copyright (C) 2014-2020 Ingo Herbote
* https://www.yetanotherforum.net/
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* dis... | /* Yet Another Forum.NET
* Copyright (C) 2003-2005 Bjørnar Henden
* Copyright (C) 2006-2013 Jaben Cargman
* Copyright (C) 2014-2020 Ingo Herbote
* https://www.yetanotherforum.net/
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* dis... | apache-2.0 | C# |
f92e364108b73b9e505407794e83050af7c0afb5 | Update Version : 1.7.171.0 URL Changes + Fix User Manager Delete | Appleseed/portal,Appleseed/portal,Appleseed/portal,Appleseed/portal,Appleseed/portal,Appleseed/portal,Appleseed/portal | Master/Appleseed/Projects/Appleseed.Framework.Core/Properties/AssemblyInfo.cs | Master/Appleseed/Projects/Appleseed.Framework.Core/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security;
using System.Resources;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated ... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security;
using System.Resources;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated ... | apache-2.0 | C# |
da1a836a0455b0baef625252200f07663d8930ee | Support ErrorMessage and Variables in ExternalTaskBpmnError | jlucansky/Camunda.Api.Client | Camunda.Api.Client/ExternalTask/ExternalTaskBpmnError.cs | Camunda.Api.Client/ExternalTask/ExternalTaskBpmnError.cs |
using System.Collections.Generic;
namespace Camunda.Api.Client.ExternalTask
{
public class ExternalTaskBpmnError
{
/// <summary>
/// The id of the worker that reports the failure. Must match the id of the worker who has most recently locked the task.
/// </summary>
public strin... |
namespace Camunda.Api.Client.ExternalTask
{
public class ExternalTaskBpmnError
{
/// <summary>
/// The id of the worker that reports the failure. Must match the id of the worker who has most recently locked the task.
/// </summary>
public string WorkerId;
/// <summary>
... | mit | C# |
9f2053e446d7883eb813486cb91d59f401e61984 | Update LocalDbTests.cs | mantzas/linear | src/Linear/Linear.SqlServer.Tests.Integration/LocalDbTests.cs | src/Linear/Linear.SqlServer.Tests.Integration/LocalDbTests.cs | using FluentAssertions;
using Xunit;
namespace Linear.SqlServer.Tests.Integration
{
public class LocalDbTests
{
[Fact]
public void LocalDb()
{
using (var localDb = new LocalDb("test"))
{
localDb.ConnectionStringName.Should().NotBeNullOrWhiteSpace... | using FluentAssertions;
using Xunit;
namespace Linear.SqlServer.Tests.Integration
{
public class LocalDbTests
{
[Fact]
public void LocalDb()
{
using (var localDb = new LocalDb("test"))
{
localDb.ConnectionStringName.Should().NotBeNullOrWhiteSpace... | apache-2.0 | C# |
54188aa5b9b6c0dd0a40edbd1627bffce4f2465d | Make sure there is only one MobileServiceClient | Azure-Samples/MyDriving,Azure-Samples/MyDriving,Azure-Samples/MyDriving | src/MobileApps/MyDriving/MyDriving.AzureClient/AzureClient.cs | src/MobileApps/MyDriving/MyDriving.AzureClient/AzureClient.cs | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
using Microsoft.WindowsAzure.MobileServices;
namespace MyDriving.AzureClient
{
public class AzureClient : IAzureClient
{
const string DefaultMobileServiceU... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
using Microsoft.WindowsAzure.MobileServices;
namespace MyDriving.AzureClient
{
public class AzureClient : IAzureClient
{
const string DefaultMobileServiceU... | mit | C# |
0b850c65db8b8e690404377f046cf6c9e496c2f2 | refactor store operations | rmterra/NesZord | src/NesZord.Tests/Describe_microprocessor_store_operations.cs | src/NesZord.Tests/Describe_microprocessor_store_operations.cs | using NesZord.Core;
using NSpec;
using Ploeh.AutoFixture;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NesZord.Tests
{
public class Describe_microprocessor_store_operations : nspec
{
private static readonly Fixture fixture = new Fixt... | using NesZord.Core;
using NSpec;
using Ploeh.AutoFixture;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NesZord.Tests
{
public class Describe_microprocessor_store_operations : nspec
{
private static readonly Fixture fixture = new Fixt... | apache-2.0 | C# |
5f89e4ff2fa111d9e90dace0c6439fa5c00c0944 | Correct feature attribute to indicate dependency. | Lombiq/Helpful-Extensions,Lombiq/Helpful-Extensions | Lombiq.HelpfulExtensions/Extensions/SiteTexts/Startup.cs | Lombiq.HelpfulExtensions/Extensions/SiteTexts/Startup.cs | using Lombiq.HelpfulExtensions.Extensions.SiteTexts.Services;
using Microsoft.Extensions.DependencyInjection;
using OrchardCore.Data.Migration;
using OrchardCore.Modules;
namespace Lombiq.HelpfulExtensions.Extensions.SiteTexts;
[Feature(FeatureIds.SiteTexts)]
public class Startup : StartupBase
{
public override v... | using Lombiq.HelpfulExtensions.Extensions.SiteTexts.Services;
using Microsoft.Extensions.DependencyInjection;
using OrchardCore.Data.Migration;
using OrchardCore.Modules;
namespace Lombiq.HelpfulExtensions.Extensions.SiteTexts;
[Feature(FeatureIds.SiteTexts)]
public class Startup : StartupBase
{
public override v... | bsd-3-clause | C# |
49a40e9020cefaf2702a3afe79ef7a35fa4f6440 | Fix unit test | damiensawyer/cassette,honestegg/cassette,honestegg/cassette,andrewdavey/cassette,andrewdavey/cassette,damiensawyer/cassette,andrewdavey/cassette,honestegg/cassette,damiensawyer/cassette | src/Cassette.Spriting.UnitTests/ImageFileLoader.cs | src/Cassette.Spriting.UnitTests/ImageFileLoader.cs | using System.IO;
using Should;
using Xunit;
namespace Cassette.Spriting
{
public class ImageFileLoader_GetImageBytesTests
{
[Fact]
public void ReadsBytesFromFile()
{
var directory = new FakeFileSystem
{
{ "~/test.png", new byte[] { 1... | using System.IO;
using Should;
using Xunit;
namespace Cassette.Spriting
{
public class ImageFileLoader_GetImageBytesTests
{
[Fact]
public void ReadsBytesFromFile()
{
var directory = new FakeFileSystem
{
{ "~/test.png", new byte[] { 1... | mit | C# |
854beaab5f590f3a3e6fc0bd6f788c8fc2ed792e | Remove only remaining .NET desktop code | peppy/osu,NeoAdonis/osu,UselessToucan/osu,EVAST9919/osu,smoogipoo/osu,peppy/osu,DrabWeb/osu,2yangk23/osu,peppy/osu,naoey/osu,naoey/osu,ZLima12/osu,EVAST9919/osu,naoey/osu,ZLima12/osu,smoogipoo/osu,johnneijzen/osu,UselessToucan/osu,DrabWeb/osu,DrabWeb/osu,UselessToucan/osu,smoogipooo/osu,ppy/osu,NeoAdonis/osu,johnneijze... | osu.Desktop/Program.cs | osu.Desktop/Program.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.IO;
using System.Linq;
using osu.Framework;
using osu.Framework.Platform;
using osu.Game.IPC;
namespace osu.Desktop
{
public static clas... | // 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.IO;
using System.Linq;
using osu.Framework;
using osu.Framework.Platform;
using osu.Game.IPC;
#if NET_FRAMEWORK
using System.Runtime;
#endif... | mit | C# |
eb00e93b583bb30f695ef520eb2f4eda34654c86 | enable RestLogLogic for cleanup | MehdyKarimpour/extensions,AlejandroCano/extensions,signumsoftware/extensions,AlejandroCano/extensions,signumsoftware/extensions,signumsoftware/framework,MehdyKarimpour/extensions,signumsoftware/framework | Signum.Engine.Extensions/RestLog/RestLogLogic.cs | Signum.Engine.Extensions/RestLog/RestLogLogic.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Signum.Engine.Basics;
using Signum.Engine.DynamicQuery;
using Signum.Engine.Maps;
using Signum.Entities.Basics;
using Signum.Entities.RestLog;
namespace Signum... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Signum.Engine.DynamicQuery;
using Signum.Engine.Maps;
using Signum.Entities.Basics;
using Signum.Entities.RestLog;
namespace Signum.Engine.RestLog
{
publi... | mit | C# |
7ad556108ddaa39142f248f25408a6ed0f73a69c | add links for users and configs | confused/Portfolio,confused/Portfolio,confused/Portfolio | Source/Portfolio.Web/Views/Shared/_Layout.cshtml | Source/Portfolio.Web/Views/Shared/_Layout.cshtml | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-i... | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-i... | apache-2.0 | C# |
f6d34ed80bd0d01e9aaf350c4e1e9d621d981a93 | Correct migrations | CollActionteam/CollAction,CollActionteam/CollAction,CollActionteam/CollAction,CollActionteam/CollAction,CollActionteam/CollAction | CollAction/Migrations/20180311221855_UpdateEndDates.cs | CollAction/Migrations/20180311221855_UpdateEndDates.cs | using Microsoft.EntityFrameworkCore.Migrations;
using System;
using System.Collections.Generic;
namespace CollAction.Migrations
{
public partial class UpdateEndDates : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.Sql("UPDATE public.\"... | using Microsoft.EntityFrameworkCore.Migrations;
using System;
using System.Collections.Generic;
namespace CollAction.Migrations
{
public partial class UpdateEndDates : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.Sql("UPDATE public.\"... | agpl-3.0 | C# |
1e6709deb91336c8b71ec4721d7b57d72a63c22c | Fix failing test | arkivverket/arkade5,arkivverket/arkade5,arkivverket/arkade5 | src/Arkivverket.Arkade.Test/Core/AddmlDatasetTestEngineTest.cs | src/Arkivverket.Arkade.Test/Core/AddmlDatasetTestEngineTest.cs | using System.IO;
using Arkivverket.Arkade.Core;
using Arkivverket.Arkade.Core.Addml;
using FluentAssertions;
using Xunit;
namespace Arkivverket.Arkade.Test.Core
{
public class AddmlDatasetTestEngineTest
{
[Fact]
public void ShouldReturnTestSuiteFromTests()
{
var addmlDefinit... | using Arkivverket.Arkade.Core;
using Arkivverket.Arkade.Core.Addml;
using FluentAssertions;
using Xunit;
namespace Arkivverket.Arkade.Test.Core
{
public class AddmlDatasetTestEngineTest
{
[Fact]
public void ShouldReturnTestSuiteFromTests()
{
var addmlDefinition = new AddmlDe... | agpl-3.0 | C# |
af8b7a243b8f67742789ff344cbd7f88afc6d7b4 | Fix path, because NUnit does nto run from the current assembly dir | zhdusurfin/HttpMock,hibri/HttpMock | src/HttpMock.Integration.Tests/EndpointsReturningFilesTests.cs | src/HttpMock.Integration.Tests/EndpointsReturningFilesTests.cs | using System;
using System.IO;
using System.Net;
using NUnit.Framework;
namespace HttpMock.Integration.Tests
{
[TestFixture]
public class EndpointsReturningFilesTests
{
private const string FILE_NAME = "transcode-input.mp3";
private const string RES_TRANSCODE_INPUT_MP3 = "res\\"+FILE_NAME;
[Tes... | using System;
using System.IO;
using System.Net;
using NUnit.Framework;
namespace HttpMock.Integration.Tests
{
[TestFixture]
public class EndpointsReturningFilesTests
{
private const string FILE_NAME = "transcode-input.mp3";
private const string RES_TRANSCODE_INPUT_MP3 = "./res/"+FILE_NAME;
[Te... | mit | C# |
8ce0e1343f08d42e196429744ba3a391eebdc534 | Fix authentication crash on edit | yanpearson/BeerCellier,yanpearson/BeerCellier | BeerCellier/Global.asax.cs | BeerCellier/Global.asax.cs | using System.Security.Claims;
using System.Web.Helpers;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace BeerCellier
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistratio... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace BeerCellier
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
... | mit | C# |
28b48dda26cc27ae282a6e210afc03582800781c | Revert "Migrate Buddy to the new backend" | punker76/Espera,flagbug/Espera | Espera/Espera.Core/Analytics/BuddyAnalyticsEndpoint.cs | Espera/Espera.Core/Analytics/BuddyAnalyticsEndpoint.cs | using System;
using System.Globalization;
using System.IO;
using System.Reflection;
using System.Threading.Tasks;
using Buddy;
namespace Espera.Core.Analytics
{
public class BuddyAnalyticsEndpoint : IAnalyticsEndpoint
{
private readonly BuddyClient client;
private AuthenticatedUser storedUser;... | using System;
using System.Globalization;
using System.IO;
using System.Reflection;
using System.Threading.Tasks;
using Buddy;
namespace Espera.Core.Analytics
{
public class BuddyAnalyticsEndpoint : IAnalyticsEndpoint
{
private readonly BuddyClient client;
private AuthenticatedUser storedUser;... | mit | C# |
b014dcbe5228d8874e24c7f34244b4c9989a2ec0 | repare link to the showpage in poster name | ismaelbelghiti/Tigwi,ismaelbelghiti/Tigwi | Core/Tigwi.UI/Views/Shared/_ViewPost.cshtml | Core/Tigwi.UI/Views/Shared/_ViewPost.cshtml | @model Tigwi.UI.Models.IPostModel
<article class="message shown poster-@Model.Poster.Id">
<div class="row-fluid">
<img alt="Avatar of @Model.Poster.Name"
class="span2"
src="@Url.Content("~/Content/images/default_profile_1_bigger.png")"
style="border-radius: 20px;" />... | @model Tigwi.UI.Models.IPostModel
<article class="message shown poster-@Model.Poster.Id">
<div class="row-fluid">
<img alt="Avatar of @Model.Poster.Name"
class="span2"
src="@Url.Content("~/Content/images/default_profile_1_bigger.png")"
style="border-radius: 20px;" />... | bsd-3-clause | C# |
005673c441308b48f3d44ee2fcb25a5efb32db8a | Update PostHandleSymbols.cs | dimmpixeye/Unity3dTools | Editor/SceneProcessors/PostHandleSymbols.cs | Editor/SceneProcessors/PostHandleSymbols.cs | // Project : ecs
// Contacts : Pix - ask@pixeye.games
using System.Collections.Generic;
using System.Linq;
using UnityEditor;
using UnityEngine;
namespace Pixeye.Framework
{
/// <summary>
/// Adds the given define symbols to PlayerSettings define symbols.
/// Just add your own define symbols to the Symbols proper... | // Project : ecs
// Contacts : Pix - ask@pixeye.games
using System.Collections.Generic;
using System.Linq;
using UnityEditor;
using UnityEngine;
namespace Pixeye.Framework
{
/// <summary>
/// Adds the given define symbols to PlayerSettings define symbols.
/// Just add your own define symbols to the Symbols proper... | mit | C# |
9d17a321655af57cdb187a11dd3002646996a893 | テスト リファクタリング | kawakawa/TDDBC20170701 | VendingMachine/VendingMachineTests/Step1Tests.cs | VendingMachine/VendingMachineTests/Step1Tests.cs | using System;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Money;
using VendingMachine;
using Money = Money.Money;
namespace VendingMachineTests
{
[TestClass]
public class Step1Tests
{
[TestMethod]
public void _10円玉を投入して投入金額合計が10円になる()
{
... | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Money;
using VendingMachine;
using Money = Money.Money;
namespace VendingMachineTests
{
[TestClass]
public class Step1Tests
{
[TestMethod]
public void _10円玉を投入して投入金額合計が10円になる()
{
投入金額.投入金額Clear();
... | mit | C# |
16c283f03e99835d287f390b6d61d9c2146e5820 | Add RelayCommand with generic parameter | Vanlalhriata/Vulcan.Wpf | Vulcan.Wpf/Vulcan.Wpf.Core/Utils/RelayCommand.cs | Vulcan.Wpf/Vulcan.Wpf.Core/Utils/RelayCommand.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace Vulcan.Wpf.Core
{
public class RelayCommand : ICommand
{
private Action<object> executeMethod;
private Func<object, bool> canExecuteMethod;
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace Vulcan.Wpf.Core
{
public class RelayCommand : ICommand
{
private Action<object> executeMethod;
private Func<object, bool> canExecuteMethod;
... | mit | C# |
99e869309a5e140cb30d3e3b4e9b3047d168da2a | Enable skipped ManagementPartner tests | ClogenyTechnologies/azure-powershell,ClogenyTechnologies/azure-powershell,AzureAutomationTeam/azure-powershell,AzureAutomationTeam/azure-powershell,ClogenyTechnologies/azure-powershell,AzureAutomationTeam/azure-powershell,AzureAutomationTeam/azure-powershell,ClogenyTechnologies/azure-powershell,AzureAutomationTeam/azur... | src/ResourceManager/ManagementPartner/Commands.Partner.Test/ScenarioTests/ManagementPartnerTests.cs | src/ResourceManager/ManagementPartner/Commands.Partner.Test/ScenarioTests/ManagementPartnerTests.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# |
19d3c3692b58bb29ef585b21fbba3b631f608bfe | Update WallGenerator.cs | Domiii/UnityLoopyLoops | Assets/Scripts/WallGenerator.cs | Assets/Scripts/WallGenerator.cs | using UnityEngine;
using System.Collections;
public class WallGenerator : MonoBehaviour {
public int nx = 10;
public int ny = 10;
public float Gap = 0.1f;
public MeshRenderer brickPrefab;
public void Generate() {
if (brickPrefab == null) {
Debug.LogError ("Missing Brick Prefab. Make sure to prepare and ass... | using UnityEngine;
using System.Collections;
public class WallGenerator : MonoBehaviour {
public int nx = 10;
public int ny = 10;
public float Gap = 0.1f;
public MeshRenderer brickPrefab;
// Use this for initialization
void Start () {
if (transform.childCount == 0) {
// create when starting, if no bricks ... | mit | C# |
03f9bcec0aaa40272226c03491755b0eb40b4566 | Update undocumented org.freedesktop.DBus members | tmds/Tmds.DBus | DBus.cs | DBus.cs | // Copyright 2006 Alp Toker <alp@atoker.com>
// This software is made available under the MIT License
// See COPYING for details
using System;
using NDesk.DBus;
//namespace org.freedesktop.DBus
namespace org.freedesktop.DBus
{
/*
//what's this for?
public class DBusException : ApplicationException
{
}
*/
#if U... | // Copyright 2006 Alp Toker <alp@atoker.com>
// This software is made available under the MIT License
// See COPYING for details
using System;
using NDesk.DBus;
//namespace org.freedesktop.DBus
namespace org.freedesktop.DBus
{
/*
//what's this for?
public class DBusException : ApplicationException
{
}
*/
#if U... | mit | C# |
6101f8f084fc5ccb1e0e50652efd6b8ad0f58f11 | Add License | chraft/c-raft | Chraft/World/NBT/TagNodeType.cs | Chraft/World/NBT/TagNodeType.cs | /* Minecraft NBT reader
*
* Copyright 2010-2011 Michael Ong, all rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at yo... | using System;
namespace Chraft.World.NBT
{
/// <summary>
/// Provides the basic TAG_TYPE for a node.
/// </summary>
public enum TagNodeType : int
{
/// <summary>
/// Empty tag
/// </summary>
TAG_END,
/// <summary>
/// Byte tag
/// </summary>
... | agpl-3.0 | C# |
2572fdd2a1ccd9c31b0b46a666680b24907a38c1 | Improve test coverage slightly | EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ZLima12/osu-framework | osu.Framework.Tests/Visual/Audio/TestSceneLoopingSample.cs | osu.Framework.Tests/Visual/Audio/TestSceneLoopingSample.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Audio.Sample;
using osu.Framework.Audio.Track;
namespace osu.Framework.Tests.Visual.Audio
{
... | // 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.Audio.Sample;
using osu.Framework.Audio.Track;
namespace osu.Framework.Tests.Visual.Audio
{
... | mit | C# |
5f671bdf47252422a4103df97ad228ee6b1dc13a | add message | toannvqo/dnn_publish | Components/ProductController.cs | Components/ProductController.cs | using DotNetNuke.Data;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Christoc.Modules.DNNModule1.Components
{
public class ProductController
{
public Product GetProduct(int productId)
{
Product p;
using (IDataContext ctx ... | using DotNetNuke.Data;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Christoc.Modules.DNNModule1.Components
{
public class ProductController
{
public Product GetProduct(int productId)
{
Product p;
using (IDataContext ctx ... | mit | C# |
d728b324fc6d76058cb4aab2e4dc9ef3240131f0 | bump version | MetacoSA/NBitcoin.Indexer,NicolasDorier/NBitcoin.Indexer | NBitcoin.Indexer/Properties/AssemblyInfo.cs | NBitcoin.Indexer/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("NB... | 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("NB... | mit | C# |
ddb57049eac6fe0a485b2f9a4d1d1ad55aa13e4c | Revert "不要な変数削除" | templa00/ScrollViewSample | Assets/Script/ScrollViewCtrl.cs | Assets/Script/ScrollViewCtrl.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// スクロールビューコントロール
/// </summary>
public class ScrollViewCtrl : MonoBehaviour
{
/// <summary>
/// コンテンツの短径の情報
/// </summary>
[SerializeField]
private RectTransform contentRect = null;
/// <summary>
... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// スクロールビューコントロール
/// </summary>
public class ScrollViewCtrl : MonoBehaviour
{
/// <summary>
/// ステージリスト
/// </summary>
[SerializeField]
private GameObject stageListObj = null;
/// <summary>
/// ... | mit | C# |
dc4853125724ea276fcc96b46d1b183a8acc83e8 | make parameter name consistent | ArsenShnurkov/BitSharp | BitSharp.Common/WorkerMethod.cs | BitSharp.Common/WorkerMethod.cs | using BitSharp.Common.ExtensionMethods;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace BitSharp.Common
{
public class WorkerMethod : Worker
{
private readonly A... | using BitSharp.Common.ExtensionMethods;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace BitSharp.Common
{
public class WorkerMethod : Worker
{
private readonly A... | unlicense | C# |
5337bdf7841cfe80e88436ec7657d3251e695512 | Remove unused references from example client | inter8ection/Obvs | Examples/Client/Program.cs | Examples/Client/Program.cs | using System;
using Obvs.Types;
using Obvs.ActiveMQ.Configuration;
using Obvs.Configuration;
using Obvs.Example.Messages;
using Obvs.Serialization.Json.Configuration;
namespace Obvs.Example.Client
{
internal static class Program
{
private static void Main(string[] args)
{
var broke... | using System;
using System.Reactive.Concurrency;
using System.Reactive.Linq;
using Obvs.Types;
using Obvs.ActiveMQ.Configuration;
using Obvs.Configuration;
using Obvs.Example.Messages;
using Obvs.Serialization.Json.Configuration;
namespace Obvs.Example.Client
{
internal static class Program
{
private ... | mit | C# |
4882463b7e969af8475eb378a3b6af86144b7b31 | Increase version number | Teleopti/Rhino.ServiceBus.SqlQueues | Rhino.ServiceBus.SqlQueues/Properties/AssemblyInfo.cs | Rhino.ServiceBus.SqlQueues/Properties/AssemblyInfo.cs | using System;
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: Ass... | using System;
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: Ass... | mit | C# |
1d096a7fc519f96251bc005e9c2fc64202c524e6 | Fix spelling | AntiTcb/Discord.Net,Confruggy/Discord.Net,RogueException/Discord.Net | src/Discord.Net.Core/Entities/Emotes/Emoji.cs | src/Discord.Net.Core/Entities/Emotes/Emoji.cs | namespace Discord
{
/// <summary>
/// A unicode emoji
/// </summary>
public class Emoji : IEmote
{
// TODO: need to constrain this to unicode-only emojis somehow
/// <summary>
/// Creates a unicode emoji.
/// </summary>
/// <param name="unicode">The pure UTF-... | namespace Discord
{
/// <summary>
/// A unicode emoji
/// </summary>
public class Emoji : IEmote
{
// TODO: need to constrain this to unicode-only emojis somehow
/// <summary>
/// Creates a unciode emoji.
/// </summary>
/// <param name="unicode">The pure UTF-... | mit | C# |
827219643b95de087c18a276e8e941a69de973fc | correct how services are registered in di | AerisG222/mikeandwan.us,AerisG222/mikeandwan.us,AerisG222/mikeandwan.us,AerisG222/mikeandwan.us,AerisG222/mikeandwan.us | src/Maw.Cache/IServiceCollectionExtensions.cs | src/Maw.Cache/IServiceCollectionExtensions.cs | using Microsoft.Extensions.DependencyInjection;
using StackExchange.Redis;
using Maw.Cache.Abstractions;
using Maw.Cache.Blogs;
using Maw.Cache.Photos;
using Maw.Cache.Videos;
namespace Maw.Cache;
public static class IServiceCollectionExtensions
{
public static IServiceCollection AddMawCacheServices(this IService... | using Microsoft.Extensions.DependencyInjection;
using StackExchange.Redis;
using Maw.Cache.Abstractions;
using Maw.Cache.Blogs;
using Maw.Cache.Photos;
using Maw.Cache.Videos;
namespace Maw.Cache;
public static class IServiceCollectionExtensions
{
public static IServiceCollection AddMawCacheServices(this IService... | mit | C# |
31c425806825273ae715cbbd843566b0177eefe0 | Use ViewWillTransitionToSize to disable rotation animations | ZLima12/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,DrabWeb/osu-framework,Tom94/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,smoogipooo/osu-framework,Tom94/osu-framework,EVAST9919/osu-framew... | osu.Framework.iOS/GameAppDelegate.cs | osu.Framework.iOS/GameAppDelegate.cs | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using UIKit;
using Foundation;
using System.Drawing;
using SixLabors.ImageSharp.PixelFormats;
using CoreGraphics;
namespace osu.Framework.iOS
{
public ab... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using UIKit;
using Foundation;
using System.Drawing;
using SixLabors.ImageSharp.PixelFormats;
namespace osu.Framework.iOS
{
public abstract class GameApp... | mit | C# |
46e08c4fd57cbbdc24384c6953271546025d0830 | use NRT | sharwell/roslyn,shyamnamboodiripad/roslyn,sharwell/roslyn,weltkante/roslyn,physhi/roslyn,CyrusNajmabadi/roslyn,KevinRansom/roslyn,mavasani/roslyn,physhi/roslyn,jasonmalinowski/roslyn,eriawan/roslyn,AmadeusW/roslyn,sharwell/roslyn,CyrusNajmabadi/roslyn,wvdd007/roslyn,bartdesmet/roslyn,dotnet/roslyn,mavasani/roslyn,diryb... | src/Features/Core/Portable/ConvertTupleToStruct/IRemoteConvertTupleToStructCodeRefactoringService.cs | src/Features/Core/Portable/ConvertTupleToStruct/IRemoteConvertTupleToStructCodeRefactoringService.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Immutable;
using System.Runtime.Serialization;
using System.Threading;
using System.Thread... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#nullable disable
using System.Collections.Immutable;
using System.Runtime.Serialization;
using System.Threading;
... | mit | C# |
4dc961f44c6c7ea0d483b8711bdde4f3c87f669b | Update web page. | SpilledMilkCOM/DenDevDayEFCore,SpilledMilkCOM/DenDevDayEFCore | src/SM.DataModels.StuffDataModel.Web/Startup.cs | src/SM.DataModels.StuffDataModel.Web/Startup.cs | using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
namespace SM.DataModels.StuffDataModel.Web
{
public class Startup
{
// This method gets called by the runtime. Use t... | using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
namespace SM.DataModels.StuffDataModel.Web
{
public class Startup
{
// This method gets called by the runtime. Use t... | mit | C# |
7ca9f4776eaed9f7373a20a29881477e9e623718 | Update IsFalseStateTrigger.cs | onovotny/WindowsStateTriggers,ButchersBoy/WindowsStateTriggers,AlexBream/WindowsStateTriggers,karl-barkmann/WindowsStateTriggers,dinhchitrung/WindowsStateTriggers,ScottIsAFool/WindowsStateTriggers,dotMorten/WindowsStateTriggers,Viachaslau-Zinkevich/WindowsStateTriggers,robertos/WindowsStateTriggers | src/WindowsStateTriggers/IsFalseStateTrigger.cs | src/WindowsStateTriggers/IsFalseStateTrigger.cs | // Copyright (c) Morten Nielsen. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Windows.Foundation.Metadata;
using Windows.UI.Xaml;
namespace WindowsStateTriggers
{
/// <summary>
/// Enables a state if the value is false
///... | using Windows.Foundation.Metadata;
using Windows.UI.Xaml;
namespace WindowsStateTriggers
{
/// <summary>
/// Enables a state if the value is false
/// </summary>
public class IsFalseStateTrigger : StateTriggerBase
{
public bool Value
{
get { return (bool)GetValue(ValueProperty); }
set { Set... | mit | C# |
bfa5d41d89a64ec1a559cc4d5cc5975563d95335 | Fix one more case | ppy/osu,ppy/osu,ppy/osu,peppy/osu,peppy/osu,peppy/osu | osu.Game.Rulesets.Taiko/Skinning/Default/DefaultHitExplosion.cs | osu.Game.Rulesets.Taiko/Skinning/Default/DefaultHitExplosion.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using... | #nullable enable
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Gam... | mit | C# |
5cfb2c2ffe3e3bb111b11d344955710a1b13cb66 | Make VolumeControlReceptor handle global input | smoogipoo/osu,naoey/osu,2yangk23/osu,peppy/osu,naoey/osu,smoogipooo/osu,DrabWeb/osu,UselessToucan/osu,Frontear/osuKyzer,smoogipoo/osu,johnneijzen/osu,ppy/osu,ppy/osu,DrabWeb/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu-new,UselessToucan/osu,2yangk23/osu,Nabile-Rahmani/osu,UselessToucan/osu,smoogipoo/osu,EVAST9919/osu,ZLim... | osu.Game/Graphics/UserInterface/Volume/VolumeControlReceptor.cs | osu.Game/Graphics/UserInterface/Volume/VolumeControlReceptor.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 osu.Framework.Graphics.Containers;
using osu.Framework.Input;
using osu.Framework.Input.Bindings;
using osu.Game.Input.Bindings;
namespace... | // 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 osu.Framework.Graphics.Containers;
using osu.Framework.Input.Bindings;
using osu.Game.Input.Bindings;
namespace osu.Game.Graphics.UserInter... | mit | C# |
234c1f44059d6e548da99d5302ee6296dd03e930 | 添加NET451判断 | Kation/ComBoost,Kation/ComBoost,Kation/ComBoost,Kation/ComBoost | src/Wodsoft.ComBoost/DomainServiceAccessor.cs | src/Wodsoft.ComBoost/DomainServiceAccessor.cs | using System;
using System.Collections.Generic;
using System.Linq;
#if NET451
using System.Runtime.Remoting;
using System.Runtime.Remoting.Messaging;
#endif
using System.Threading.Tasks;
namespace Wodsoft.ComBoost
{
public class DomainServiceAccessor : IDomainServiceAccessor
{
#if NET451
private stati... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Messaging;
using System.Threading.Tasks;
namespace Wodsoft.ComBoost
{
public class DomainServiceAccessor : IDomainServiceAccessor
{
#if NET451
private static readonly... | mit | C# |
45c45af3e3941dd693f8cc0f5138333b937373a2 | Remove RuleTraitor unused imports (#2664) | space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14 | Content.Server/GameTicking/GameRules/RuleTraitor.cs | Content.Server/GameTicking/GameRules/RuleTraitor.cs | using Content.Server.Interfaces.Chat;
using Content.Server.Mobs.Roles.Traitor;
using Content.Server.Players;
using Robust.Server.GameObjects.EntitySystems;
using Robust.Server.Interfaces.Player;
using Robust.Shared.Audio;
using Robust.Shared.GameObjects.Systems;
using Robust.Shared.IoC;
using Robust.Shared.Localizatio... | using System;
using System.Threading;
using Content.Server.Interfaces.Chat;
using Content.Server.Interfaces.GameTicking;
using Content.Server.Mobs.Roles.Traitor;
using Content.Server.Players;
using Content.Shared;
using Content.Shared.GameObjects.Components.Damage;
using Robust.Server.GameObjects.EntitySystems;
using ... | mit | C# |
0fee76c95c3bf1d7078d865b8bd22412f8ef21f1 | Fix merge error | johnneijzen/osu,ppy/osu,peppy/osu,naoey/osu,smoogipooo/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,DrabWeb/osu,smoogipoo/osu,ppy/osu,ZLima12/osu,naoey/osu,DrabWeb/osu,johnneijzen/osu,UselessToucan/osu,naoey/osu,2yangk23/osu,peppy/osu-new,peppy/osu,EVAST9919/osu,DrabWeb/osu,NeoAdonis/osu,2yangk23/osu... | osu.Game.Rulesets.Osu/Difficulty/Skills/Speed.cs | osu.Game.Rulesets.Osu/Difficulty/Skills/Speed.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 osu.Game.Rulesets.Osu.Difficulty.Preprocessing;
using osuTK;
namespace osu.Game.Rulesets.Osu.Difficulty.Skills
{
/// <summary>
/// Represen... | // 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 osu.Game.Rulesets.Osu.Difficulty.Preprocessing;
using osuTK;
namespace osu.Game.Rulesets.Osu.Difficulty.Skills
{
/// <summary>
/// Represen... | mit | C# |
171cb6438920f1bb9d41cee5c615241f3ab3a611 | Fix obfuscation attributes when merging assemblies | sharpdx/Toolkit,tomba/Toolkit,sharpdx/Toolkit | Source/SharedAssemblyInfo.cs | Source/SharedAssemblyInfo.cs | // Copyright (c) 2010-2013 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,... | // Copyright (c) 2010-2013 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,... | mit | C# |
bd174481a7ce4112b65f87b0d5f1c875f6582f66 | Set NUnit tests to run scripts under the current domain for access to the same console. | michaltakac/IronAHK,michaltakac/IronAHK,yatsek/IronAHK,yatsek/IronAHK,michaltakac/IronAHK,polyethene/IronAHK,michaltakac/IronAHK,polyethene/IronAHK,polyethene/IronAHK,yatsek/IronAHK,yatsek/IronAHK,michaltakac/IronAHK,polyethene/IronAHK,yatsek/IronAHK | Tests/Scripting/Scripting.cs | Tests/Scripting/Scripting.cs | using System;
using System.CodeDom.Compiler;
using System.IO;
using System.Text;
using IronAHK.Scripting;
using NUnit.Framework;
namespace Tests
{
[TestFixture]
public partial class Scripting
{
[Test]
public void RunScripts()
{
string path = string.Format("..{0}..{0}Scr... | using System;
using System.CodeDom.Compiler;
using System.IO;
using System.Text;
using IronAHK.Scripting;
using NUnit.Framework;
namespace Tests
{
[TestFixture]
public partial class Scripting
{
[Test]
public void RunScripts()
{
string path = string.Format("..{0}..{0}Scr... | bsd-2-clause | C# |
d76482edeb7cceac550b4e0bb042c3a3635d5301 | Use library (needed after VS update?) | arkivverket/arkade5,arkivverket/arkade5,arkivverket/arkade5 | src/Arkivverket.Arkade.CLI.Tests/ProgramTests.cs | src/Arkivverket.Arkade.CLI.Tests/ProgramTests.cs | using System.IO;
using System.Linq;
using System.Reflection;
using Arkivverket.Arkade.Core.Base;
using Xunit;
using FluentAssertions;
using Microsoft.VisualStudio.TestPlatform.TestHost;
namespace Arkivverket.Arkade.CLI.Tests
{
public class ProgramTests
{
[Fact]
[Trait("Category", "Integration")... | using System.IO;
using System.Linq;
using System.Reflection;
using Arkivverket.Arkade.Core.Base;
using Xunit;
using FluentAssertions;
namespace Arkivverket.Arkade.CLI.Tests
{
public class ProgramTests
{
[Fact]
[Trait("Category", "Integration")]
public void TestReportAndPackageIsCreatedR... | agpl-3.0 | C# |
fcdc3ef6be44430fc2b52ef871b5196c38ff4184 | Make TaskCanceledException inherited from OperationCanceledException | OrangeCube/MinimumAsyncBridge,ppcuni/MinimumAsyncBridge,LeonAkasaka/MinimumAsyncBridge,munegon/MinimumAsyncBridge,ataihei/MinimumAsyncBridge,ufcpp/MinimumAsyncBridge | src/MinimumAsyncBridge/Threading/Tasks/TaskCanceledException.cs | src/MinimumAsyncBridge/Threading/Tasks/TaskCanceledException.cs | namespace System.Threading.Tasks
{
/// <summary>
/// Represents an exception used to communicate task cancellation.
/// </summary>
public class TaskCanceledException : OperationCanceledException
{
/// <summary>
/// Initializes a new instance of the TaskCanceledException clas... | namespace System.Threading.Tasks
{
/// <summary>
/// Represents an exception used to communicate task cancellation.
/// </summary>
public class TaskCanceledException : Exception
{
/// <summary>
/// Initializes a new instance of the TaskCanceledException class with a system-s... | mit | C# |
18ed0ad38982e7ea937105a599104bd3812ed174 | Fix typo | fuyuno/Norma | Norma.Gamma/Models/Slot.cs | Norma.Gamma/Models/Slot.cs | using System;
using Newtonsoft.Json;
using Norma.Gamma.Converters;
namespace Norma.Gamma.Models
{
public class Slot
{
[JsonProperty("id")]
public string Id { get; set; }
[JsonProperty("title")]
public string Title { get; set; }
[JsonProperty("startAt")]
[Jso... | using System;
using Newtonsoft.Json;
using Norma.Gamma.Converters;
namespace Norma.Gamma.Models
{
public class Slot
{
[JsonProperty("id")]
public string Id { get; set; }
[JsonProperty("title")]
public string Title { get; set; }
[JsonProperty("startAt")]
[Jso... | mit | C# |
1ce7ef1bd292df31114a382ee7794880946b877a | fix shutdown luaenviroment | cyberegoorg/cetech,cyberegoorg/cetech,cyberegoorg/cetech,cyberegoorg/cetech | sources/CETech/Lua/LuaEnviroment.cs | sources/CETech/Lua/LuaEnviroment.cs | namespace CETech.Lua
{
/// <summary>
/// Main lua enviroment.
/// </summary>
public static partial class LuaEnviroment
{
/// <summary>
/// Init lua enviroment
/// </summary>
public static void Init()
{
InitImpl();
}
/// <s... | namespace CETech.Lua
{
/// <summary>
/// Main lua enviroment.
/// </summary>
public static partial class LuaEnviroment
{
/// <summary>
/// Init lua enviroment
/// </summary>
public static void Init()
{
InitImpl();
}
/// <s... | cc0-1.0 | C# |
0668e4541356a612f4d03faca985cd4e37156174 | Clean up server configuration. | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/MusicStore/Program.cs | src/MusicStore/Program.cs | using Microsoft.AspNetCore.Hosting;
using Microsoft.Net.Http.Server;
namespace MusicStore
{
public static class Program
{
public static void Main(string[] args)
{
var builder = new WebHostBuilder()
.UseDefaultHostingConfiguration(args)
.UseIISIntegrat... | using Microsoft.AspNetCore.Hosting;
using Microsoft.Net.Http.Server;
namespace MusicStore
{
public static class Program
{
public static void Main(string[] args)
{
var builder = new WebHostBuilder()
// We set the server by name before default args so that command line... | apache-2.0 | C# |
583f7fcd534896bcd79dee08552d88bd1a070b41 | Switch to HTTPS. | loicteixeira/gj-unity-api | Assets/Plugins/GameJolt/Scripts/API/Constants.cs | Assets/Plugins/GameJolt/Scripts/API/Constants.cs | using UnityEngine;
using System.Collections;
namespace GameJolt.API
{
public static class Constants
{
public const string VERSION = "2.1.3";
public const string SETTINGS_ASSET_NAME = "GJAPISettings";
public const string SETTINGS_ASSET_FULL_NAME = SETTINGS_ASSET_NAME + ".asset";
public const string SETTINGS... | using UnityEngine;
using System.Collections;
namespace GameJolt.API
{
public static class Constants
{
public const string VERSION = "2.1.3";
public const string SETTINGS_ASSET_NAME = "GJAPISettings";
public const string SETTINGS_ASSET_FULL_NAME = SETTINGS_ASSET_NAME + ".asset";
public const string SETTINGS... | mit | C# |
b0229a2d86a4c4b35802d4281f98167883f40c69 | adjust version to 0.11.0 | McSherry/Zener | Properties/AssemblyInfo.cs | Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[ass... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[ass... | bsd-3-clause | C# |
c71d1f2d74d2c791e46783e283daa104d52eea02 | Change SunshineFileSystem to save MOTMaster data directly to Box | ColdMatter/EDMSuite,ColdMatter/EDMSuite,ColdMatter/EDMSuite,ColdMatter/EDMSuite | DAQ/SunshineFileSystem.cs | DAQ/SunshineFileSystem.cs | using System;
namespace DAQ.Environment
{
public class SunshineFileSystem : DAQ.Environment.FileSystem
{
public SunshineFileSystem()
{
Paths.Add("settingsPath", "c:\\Control Programs\\Settings\\");
Paths.Add("scanMasterDataPath", "c:\\Data\\LCMCaF\\");
Paths... | using System;
namespace DAQ.Environment
{
public class SunshineFileSystem : DAQ.Environment.FileSystem
{
public SunshineFileSystem()
{
Paths.Add("settingsPath", "c:\\Control Programs\\Settings\\");
Paths.Add("scanMasterDataPath", "c:\\Data\\LCMCaF\\");
Paths... | mit | C# |
7d2a017ac45dcafba574e292330580ccf363ed66 | Make sure the RealTimeMessagingService test actually runs. | CuriousCurmudgeon/taut | Taut.Test/RealTime/RealTimeMessagingServiceTests.cs | Taut.Test/RealTime/RealTimeMessagingServiceTests.cs | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Reactive.Threading.Tasks;
using System.Text;
using System.Threading.Tasks;
using Taut.RealTime;
namespace Taut.Test.RealTime
{
[TestClass]
public class Rea... | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Reactive.Threading.Tasks;
using System.Text;
using System.Threading.Tasks;
using Taut.RealTime;
namespace Taut.Test.RealTime
{
public class RealTimeMessagingSe... | mit | C# |
53e6a41eff53587dec6a3e3fe57de62b93a6c72e | Fix version number for the fake release | malcolmr/nodatime,malcolmr/nodatime,nodatime/nodatime,malcolmr/nodatime,jskeet/nodatime,BenJenkinson/nodatime,malcolmr/nodatime,jskeet/nodatime,nodatime/nodatime,BenJenkinson/nodatime | src/NodaTime.Web/Models/FakeReleaseRepository.cs | src/NodaTime.Web/Models/FakeReleaseRepository.cs | // Copyright 2017 The Noda Time Authors. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
using System.Collections.Generic;
namespace NodaTime.Web.Models
{
/// <summary>
/// Fake implementation of IReleaseRepository used in cases of em... | // Copyright 2017 The Noda Time Authors. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
using System.Collections.Generic;
namespace NodaTime.Web.Models
{
/// <summary>
/// Fake implementation of IReleaseRepository used in cases of em... | apache-2.0 | C# |
b495c77a6435519a1298adc35617f7165090b871 | Set the driver property in TranslationUnitPass when adding new passes. | inordertotest/CppSharp,ktopouzi/CppSharp,KonajuGames/CppSharp,ktopouzi/CppSharp,ddobrev/CppSharp,mono/CppSharp,mono/CppSharp,mydogisbox/CppSharp,u255436/CppSharp,u255436/CppSharp,mydogisbox/CppSharp,imazen/CppSharp,mydogisbox/CppSharp,xistoso/CppSharp,Samana/CppSharp,nalkaro/CppSharp,zillemarco/CppSharp,Samana/CppSharp... | src/Generator/Passes/PassBuilder.cs | src/Generator/Passes/PassBuilder.cs | using System;
using System.Collections.Generic;
using System.Linq;
using CppSharp.Passes;
namespace CppSharp
{
/// <summary>
/// This class is used to build passes that will be run against the AST
/// that comes from C++.
/// </summary>
public class PassBuilder<T>
{
public List<T> Pass... | using System;
using System.Collections.Generic;
using System.Linq;
using CppSharp.Passes;
namespace CppSharp
{
/// <summary>
/// This class is used to build passes that will be run against the AST
/// that comes from C++.
/// </summary>
public class PassBuilder<T>
{
public List<T> Pass... | mit | C# |
b93fff590487d4931b6869625c38550ed97e9b01 | Change exception type. | wasabii/Cogito,wasabii/Cogito | Cogito.Fabric.Activities/ActivityActorInternalExtensions.cs | Cogito.Fabric.Activities/ActivityActorInternalExtensions.cs | using System;
using System.Diagnostics.Contracts;
using System.Threading.Tasks;
using Microsoft.ServiceFabric.Actors;
using Microsoft.ServiceFabric.Actors.Runtime;
namespace Cogito.Fabric.Activities
{
/// <summary>
/// Internal extensions against <see cref="IActivityActorInternal"/> interfaces.
/// </su... | using System;
using System.Diagnostics.Contracts;
using System.Fabric;
using System.Threading.Tasks;
using Microsoft.ServiceFabric.Actors.Runtime;
namespace Cogito.Fabric.Activities
{
/// <summary>
/// Internal extensions against <see cref="IActivityActorInternal"/> interfaces.
/// </summary>
static... | mit | C# |
9103e10e6d82f87d020319f154d1a3a5fc1add16 | Update 70.Autoproperties.cs | MarcosMeli/FileHelpers | FileHelpers.Examples/Examples/10.QuickStart/70.Autoproperties.cs | FileHelpers.Examples/Examples/10.QuickStart/70.Autoproperties.cs | using FileHelpers;
namespace ExamplesFx
{
//-> Name: Autoproperties
//-> Description: You can use autoproperties instead of fields:
public class AutopropertiesSample
: ExampleBase
{
//-> If you have a source file like this, separated by a "|":
//-> FileIn:Input.t... | using FileHelpers;
namespace ExamplesFx
{
//-> Name: Autoproperties
//-> Description: You can use autoproperties instead of fields
public class AutopropertiesSample
: ExampleBase
{
//-> If you have a source file like this, separated by a |:
//-> FileIn:Input.txt
... | mit | C# |
9a70a9475d00ab74f2e1f65306efea66adbce207 | Update AssignValidateDigitalSignatures.cs | asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,as... | Examples/CSharp/Articles/AssignValidateDigitalSignatures.cs | Examples/CSharp/Articles/AssignValidateDigitalSignatures.cs | using System;
using System.IO;
using Aspose.Cells;
using System.Collections;
using System.Text;
using System.Threading;
using Aspose.Cells.Rendering;
using System.Security.Cryptography;
using System.Drawing;
using System.Diagnostics;
using Aspose.Cells.DigitalSignatures;
using System.Security.Cryptography.X509Certific... | using System;
using System.IO;
using Aspose.Cells;
using System.Collections;
using System.Text;
using System.Threading;
using Aspose.Cells.Rendering;
using System.Security.Cryptography;
using System.Drawing;
using System.Diagnostics;
using Aspose.Cells.DigitalSignatures;
using System.Security.Cryptography.X509Certific... | mit | C# |
2abf81e89ebc6209a9171d2d34d2791678b8fa01 | Change to WebApiConfig to test registration | stringbitking/JerryMouseChat,stringbitking/JerryMouseChat | JerryMouseChat/JerryChat.Services/App_Start/WebApiConfig.cs | JerryMouseChat/JerryChat.Services/App_Start/WebApiConfig.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http;
namespace JerryChat.Services
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
config.Routes.MapHttpRoute(
name: "Default... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http;
namespace JerryChat.Services
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
config.Routes.MapHttpRoute(
name: "Default... | mit | C# |
ddfb4194fae802b90c85709509192c62c5d69fe6 | Update ElementMethodsStream.cs | jeremytammik/RevitLookup | RevitLookup/Core/Streams/ElementMethodsStream.cs | RevitLookup/Core/Streams/ElementMethodsStream.cs | using System.Collections;
using System.Reflection;
using Autodesk.Revit.DB;
using RevitLookup.Core.CollectorExtensions;
using RevitLookup.Core.RevitTypes;
namespace RevitLookup.Core.Streams;
public class ElementMethodsStream : IElementStream
{
private readonly ArrayList _data;
private readonly DataFactory _me... | using System.Collections;
using System.Reflection;
using Autodesk.Revit.DB;
using RevitLookup.Core.CollectorExtensions;
using RevitLookup.Core.RevitTypes;
namespace RevitLookup.Core.Streams;
public class ElementMethodsStream : IElementStream
{
private readonly ArrayList _data;
private readonly DataFactory _me... | mit | C# |
5f5e632f6c80a15a6552eb3cfd997d121e67c57b | Implement YoutrackCommand | n-develop/tickettimer | TicketTimer.Youtrack/Commands/YoutrackCommand.cs | TicketTimer.Youtrack/Commands/YoutrackCommand.cs | using ManyConsole;
using TicketTimer.Youtrack.Services;
namespace TicketTimer.Youtrack.Commands
{
public class YoutrackCommand : ConsoleCommand
{
private readonly YoutrackService _youtrackService;
public YoutrackCommand(YoutrackService youtrackService)
{
_youtrackService =... | using System;
using ManyConsole;
namespace TicketTimer.Youtrack.Commands
{
public class YoutrackCommand : ConsoleCommand
{
public YoutrackCommand()
{
}
public override int Run(string[] remainingArguments)
{
throw new NotImplementedException();
... | mit | C# |
db86483a41503e9a28d243b8902b291f14389bca | Rename prop | roman-yagodin/R7.University,roman-yagodin/R7.University,roman-yagodin/R7.University | R7.University.Controls/ViewModels/AgplSignatureViewModel.cs | R7.University.Controls/ViewModels/AgplSignatureViewModel.cs | using System;
using System.Reflection;
using R7.University.Components;
namespace R7.University.Controls.ViewModels
{
public class AgplSignatureViewModel
{
public bool ShowRule { get; set; } = true;
public virtual Assembly BaseAssembly => UniversityAssembly.GetCoreAssembly ();
public ... | //
// AgplSignatureViewModel.cs
//
// Author:
// Roman M. Yagodin <roman.yagodin@gmail.com>
//
// Copyright (c) 2017 Roman M. Yagodin
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Softwar... | agpl-3.0 | C# |
52b5965612a30c9acc108f18b291dca9da3bc746 | Increase nuget version to 2.0.0-beta02 | Jericho/CakeMail.RestClient | CakeMail.RestClient/Properties/AssemblyInfo.cs | CakeMail.RestClient/Properties/AssemblyInfo.cs | 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... | mit | C# |
25807433756790ed2f1135d962205a761f17af6a | 修改 Welcome action 可接收參數. | NemoChenTW/MvcMovie,NemoChenTW/MvcMovie,NemoChenTW/MvcMovie | src/MvcMovie/Controllers/HelloWorldController.cs | src/MvcMovie/Controllers/HelloWorldController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Mvc;
using Microsoft.Extensions.WebEncoders;
// For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860
namespace MvcMovie.Controllers
{
pub... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Mvc;
// For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860
namespace MvcMovie.Controllers
{
public class HelloWorldController : Control... | apache-2.0 | C# |
fada75bf42ef8a014781ebbfb139bc1a29f689b5 | Update PathDrawNode.cs | wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D | src/Core2D/Modules/Renderer/Nodes/PathDrawNode.cs | src/Core2D/Modules/Renderer/Nodes/PathDrawNode.cs | #nullable disable
using Core2D.Model.Renderer;
using Core2D.Model.Renderer.Nodes;
using Core2D.ViewModels.Shapes;
using Core2D.ViewModels.Style;
using AM = Avalonia.Media;
using AP = Avalonia.Platform;
namespace Core2D.Modules.Renderer.Nodes
{
internal class PathDrawNode : DrawNode, IPathDrawNode
{
pu... | #nullable disable
using Core2D.Model.Renderer;
using Core2D.Model.Renderer.Nodes;
using Core2D.ViewModels.Shapes;
using Core2D.ViewModels.Style;
using AM = Avalonia.Media;
using AP = Avalonia.Platform;
namespace Core2D.Modules.Renderer.Nodes
{
internal class PathDrawNode : DrawNode, IPathDrawNode
{
pu... | mit | C# |
927c811aef5cffe58894357d1b4541753165e64b | Set version to 0.7.0 | hazzik/DelegateDecompiler,jaenyph/DelegateDecompiler,morgen2009/DelegateDecompiler | src/DelegateDecompiler/Properties/AssemblyInfo.cs | src/DelegateDecompiler/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# |
8730ac7b95dcbff45ec71c0c0f7dd6bf3bafa0a0 | remove unrefactored replace in explanation type | geeklearningio/gl-dotnet-domain | src/GeekLearning.Domain.AspnetCore/MaybeResult.cs | src/GeekLearning.Domain.AspnetCore/MaybeResult.cs | using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Formatters;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace GeekLearning.Domain.AspnetCore
{
public class Ma... | using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Formatters;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace GeekLearning.Domain.AspnetCore
{
public class Ma... | mit | C# |
a44dc8b34bab91b00010ae7d6c61786a0b997599 | Refactor GetLexiconForTesting closer to real code | sillsdev/LfMerge,ermshiperete/LfMerge,ermshiperete/LfMerge,ermshiperete/LfMerge,sillsdev/LfMerge,sillsdev/LfMerge | src/LfMerge/Actions/UpdateFdoFromMongoDbAction.cs | src/LfMerge/Actions/UpdateFdoFromMongoDbAction.cs | // Copyright (c) 2015 SIL International
// This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
using System;
using System.Linq;
using System.Collections.Generic;
using MongoDB.Bson;
using MongoDB.Driver;
using LfMerge.LanguageForge.Config;
using LfMerge.LanguageForge.Model;
namespace ... | // Copyright (c) 2015 SIL International
// This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
using System;
using System.Linq;
using System.Collections.Generic;
using MongoDB.Bson;
using MongoDB.Driver;
using LfMerge.LanguageForge.Config;
using LfMerge.LanguageForge.Model;
namespace ... | mit | C# |
4015f02f217c25370c2839d77636a62f4250369d | Fix bad format string. | hoopsomuah/orleans,gabikliot/orleans,kowalot/orleans,cato541265/orleans,jokin/orleans,sebastianburckhardt/orleans,brhinescot/orleans,dVakulen/orleans,Liversage/orleans,carlos-sarmiento/orleans,benjaminpetit/orleans,Carlm-MS/orleans,jkonecki/orleans,ticup/orleans,bstauff/orleans,ElanHasson/orleans,jkonecki/orleans,tsibe... | src/Orleans/Placement/StatelessWorkerPlacement.cs | src/Orleans/Placement/StatelessWorkerPlacement.cs | /*
Project Orleans Cloud Service SDK ver. 1.0
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
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,
inc... | /*
Project Orleans Cloud Service SDK ver. 1.0
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
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,
inc... | mit | C# |
43ecf253d6606bb329724d0df5bbb0e86b39423c | Make a method static because it can be | bungeemonkee/Configgy | Configgy/Coercion/ValueCoercerAttributeBase.cs | Configgy/Coercion/ValueCoercerAttributeBase.cs | using System;
using System.Reflection;
namespace Configgy.Coercion
{
/// <summary>
/// A base class for any coercer attributes.
/// </summary>
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = true)]
public abstract class ValueCoercerAttributeBase : Attribute, IValueCoer... | using System;
using System.Reflection;
namespace Configgy.Coercion
{
/// <summary>
/// A base class for any coercer attributes.
/// </summary>
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = true)]
public abstract class ValueCoercerAttributeBase : Attribute, IValueCoer... | mit | C# |
92d558f3d06e8120146637bbb03d4cd0b6b95516 | Implement the string table. | KirillOsenkov/MSBuildStructuredLog,KirillOsenkov/MSBuildStructuredLog | src/StructuredLogger/Serialization/StringTable.cs | src/StructuredLogger/Serialization/StringTable.cs | using System.Collections.Generic;
namespace Microsoft.Build.Logging.StructuredLogger
{
public class StringTable
{
private Dictionary<string, string> deduplicationMap = new Dictionary<string, string>();
public string Intern(string text)
{
string existing;
... | namespace Microsoft.Build.Logging.StructuredLogger
{
public class StringTable
{
public string Intern(string value)
{
return value;
}
}
}
| mit | C# |
39e901d7701eee0cb7e5309d2c073efd065ad888 | Update ifdefs | killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity | Assets/MRTK/Examples/Demos/HandTracking/Scripts/LeapMotionOrientationDisplay.cs | Assets/MRTK/Examples/Demos/HandTracking/Scripts/LeapMotionOrientationDisplay.cs | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using UnityEngine;
using Microsoft.MixedReality.Toolkit.Input;
using TMPro;
#if (LEAPMOTIONCORE_PRESENT && UNITY_STANDALONE) || (LEAPMOTIONCORE_PRESENT && UNITY_WSA && UNITY_EDITOR)
using Microsoft.MixedReality.Toolkit.LeapMotion.Input;
#endif... | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using UnityEngine;
using Microsoft.MixedReality.Toolkit.Input;
using TMPro;
#if LEAPMOTIONCORE_PRESENT && UNITY_STANDALONE
using Microsoft.MixedReality.Toolkit.LeapMotion.Input;
#endif
namespace Microsoft.MixedReality.Toolkit.Examples
{
/... | mit | C# |
3fbd157c947dbd90cc912730bfc041596bbe901a | remove explicit issuer | chrisowhite/IdentityServer4,jbijlsma/IdentityServer4,MienDev/IdentityServer4,IdentityServer/IdentityServer4,MienDev/IdentityServer4,IdentityServer/IdentityServer4,IdentityServer/IdentityServer4,jbijlsma/IdentityServer4,jbijlsma/IdentityServer4,MienDev/IdentityServer4,jbijlsma/IdentityServer4,chrisowhite/IdentityServer4... | src/Host/Startup.cs | src/Host/Startup.cs | using Host.Configuration;
using Host.Extensions;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.PlatformAbstractions;
using System.IO;
using System.Security.Cryptography.X509Certificates;
na... | using Host.Configuration;
using Host.Extensions;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.PlatformAbstractions;
using System.IO;
using System.Security.Cryptography.X509Certificates;
na... | apache-2.0 | C# |
c18aec0b209d36e5da5c5c1fda2abde2bf08a917 | Update WavChannelMask.cs | wieslawsoltes/SimpleWavSplitter,wieslawsoltes/SimpleWavSplitter,wieslawsoltes/SimpleWavSplitter,wieslawsoltes/SimpleWavSplitter | WavFile/WavChannelMask.cs | WavFile/WavChannelMask.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.
namespace WavFile
{
#region References
using System;
#endregion
#region WavChannelMask
/// <summary>
/// Multi-channel WAV file mask
... | /*
* WavFile
* Copyright © Wiesław Šoltés 2010-2012. All Rights Reserved
*/
namespace WavFile
{
#region References
using System;
#endregion
#region WavChannelMask
/// <summary>
/// Multi-channel WAV file mask
/// </summary>
public enum WavChannelMask
{
SPEAKER_FRONT_... | mit | C# |
916cecbaa204c2fa8044f170ede4f606b7ac7c9e | Update parameter help text | allansson/Calamari,allansson/Calamari | source/Calamari/Commands/RunScriptCommand.cs | source/Calamari/Commands/RunScriptCommand.cs | using System.IO;
using Calamari.Commands.Support;
using Calamari.Deployment;
using Calamari.Integration.FileSystem;
using Calamari.Integration.Processes;
using Calamari.Integration.Scripting;
using Calamari.Integration.ServiceMessages;
using Octostache;
namespace Calamari.Commands
{
[Command("run-script", Descrip... | using System.IO;
using Calamari.Commands.Support;
using Calamari.Deployment;
using Calamari.Integration.FileSystem;
using Calamari.Integration.Processes;
using Calamari.Integration.Scripting;
using Calamari.Integration.ServiceMessages;
using Octostache;
namespace Calamari.Commands
{
[Command("run-script", Descrip... | apache-2.0 | C# |
2bb646adc4845c6166a8caca42dd91ccdec2bc62 | Update project settings | sakapon/Samples-2015 | BuildSample/EmptyConsole/Properties/AssemblyInfo.cs | BuildSample/EmptyConsole/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
// アセンブリに関連付けられている情報を変更するには、
// これらの属性値を変更してください。
[assembly: AssemblyTitle("EmptyConsole")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[a... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
// アセンブリに関連付けられている情報を変更するには、
// これらの属性値を変更してください。
[assembly: AssemblyTitle("EmptyConsole")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[a... | mit | C# |
5410efac835f6f5ed1f7dcdea2020caf930bc256 | Allow sessions to be created with a user-specified key. addressing #4 | 0xdeafcafe/luno-dotnet | src/LunoClient/Models/Session/CreateSession.cs | src/LunoClient/Models/Session/CreateSession.cs | using System;
using Newtonsoft.Json;
namespace Luno.Models.Session
{
public class CreateSession<T>
{
[JsonProperty("user_id", NullValueHandling = NullValueHandling.Ignore)]
public string UserId { get; set; }
[JsonProperty("ip")]
public string Ip { get; set; }
/// <summary>
/// Secure session key.
//... | using System;
using Newtonsoft.Json;
namespace Luno.Models.Session
{
public class CreateSession<T>
{
[JsonProperty("user_id", NullValueHandling = NullValueHandling.Ignore)]
public string UserId { get; set; }
[JsonProperty("ip")]
public string Ip { get; set; }
[JsonProperty("expires")]
public DateTime?... | mit | C# |
8d5cddeda9874b46cbcffb9986862243a516204e | Use ExceptionDispatchInfo to rethrow test class constructor exceptions, now that all other such exception rethrows use ExceptionDispatchInfo. | fixie/fixie | src/Fixie/TestClass.cs | src/Fixie/TestClass.cs | namespace Fixie
{
using System;
using System.Reflection;
using System.Runtime.ExceptionServices;
using Internal;
/// <summary>
/// The context in which a test class is running.
/// </summary>
public class TestClass
{
readonly Action<Action<Case>> runCases;
readonly ... | namespace Fixie
{
using System;
using System.Reflection;
using Internal;
/// <summary>
/// The context in which a test class is running.
/// </summary>
public class TestClass
{
readonly Action<Action<Case>> runCases;
readonly bool isStatic;
internal TestClass(Ty... | mit | C# |
b0034355c0557cf21161a72d6a403d4a495707a7 | Add VTexExtraData COMPRESSED_MIP_SIZE | SteamDatabase/ValveResourceFormat | ValveResourceFormat/Resource/Enums/VTexExtraData.cs | ValveResourceFormat/Resource/Enums/VTexExtraData.cs | using System;
namespace ValveResourceFormat
{
public enum VTexExtraData
{
#pragma warning disable 1591
UNKNOWN = 0,
FALLBACK_BITS = 1,
SHEET = 2,
FILL_TO_POWER_OF_TWO = 3,
COMPRESSED_MIP_SIZE = 4,
#pragma warning restore 1591
}
}
| using System;
namespace ValveResourceFormat
{
public enum VTexExtraData
{
#pragma warning disable 1591
UNKNOWN = 0,
FALLBACK_BITS = 1,
SHEET = 2,
FILL_TO_POWER_OF_TWO = 3,
#pragma warning restore 1591
}
}
| mit | C# |
1c159f38d34863994587390879983538b78b5f81 | Change BuildAndOrExpr to use AndAlso & OrElse to make NHibernate Linq happy | Breeze/breeze.server.net,Breeze/breeze.server.net,Breeze/breeze.server.net,Breeze/breeze.server.net | AspNetCore-v3/Breeze.Core/Query/AndOrPredicate.cs | AspNetCore-v3/Breeze.Core/Query/AndOrPredicate.cs | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Threading.Tasks;
namespace Breeze.Core {
/**
* @author IdeaBlade
*
*/
public class AndOrPredicate : BasePredicate {
private List<BasePredicate> _predicates;
pu... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Threading.Tasks;
namespace Breeze.Core {
/**
* @author IdeaBlade
*
*/
public class AndOrPredicate : BasePredicate {
private List<BasePredicate> _predicates;
pu... | mit | C# |
921537f15254481600da59dfe5aee09ee04315d6 | Validate ReadOnlyCollection constructor inputs | cgourlay/cecil,joj/cecil,fnajera-rac-de/cecil,saynomoo/cecil,gluck/cecil,furesoft/cecil,sailro/cecil,SiliconStudio/Mono.Cecil,jbevain/cecil,mono/cecil,kzu/cecil,xen2/cecil,ttRevan/cecil | Mono.Collections.Generic/ReadOnlyCollection.cs | Mono.Collections.Generic/ReadOnlyCollection.cs | //
// ReadOnlyCollection.cs
//
// Author:
// Jb Evain (jbevain@gmail.com)
//
// Copyright (c) 2008 - 2010 Jb Evain
//
// 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,... | //
// ReadOnlyCollection.cs
//
// Author:
// Jb Evain (jbevain@gmail.com)
//
// Copyright (c) 2008 - 2010 Jb Evain
//
// 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,... | mit | C# |
4883189bf0ae635aea43114fb22d53517a17d8ea | update main layout with app name | tblocksharer/tblocksharer,tblocksharer/tblocksharer | src/TBlockSharer/Views/Shared/_Layout.cshtml | src/TBlockSharer/Views/Shared/_Layout.cshtml | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - TBlockSharer</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-inverse navb... | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-in... | agpl-3.0 | C# |
61ea3f2e6410980341803eb2c4548e917229ee3e | Remove unnecessary test step creating needless skins | UselessToucan/osu,NeoAdonis/osu,peppy/osu-new,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipooo/osu,smoogipoo/osu,ppy/osu,peppy/osu,peppy/osu,peppy/osu | osu.Game.Tests/Visual/Gameplay/TestSceneSkinEditor.cs | osu.Game.Tests/Visual/Gameplay/TestSceneSkinEditor.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Testing;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Osu;
us... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Testing;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Osu;
us... | mit | C# |
663ffae42f9b8e97037e7f4c3ba06b8acb68d600 | Fix hit object selection blueprint potential null reference | UselessToucan/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu-new,smoogipoo/osu,NeoAdonis/osu,smoogipooo/osu,ppy/osu,peppy/osu,smoogipoo/osu,peppy/osu,peppy/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu | osu.Game/Rulesets/Edit/HitObjectSelectionBlueprint.cs | osu.Game/Rulesets/Edit/HitObjectSelectionBlueprint.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.Primitives;
using osu.Game.Graphics.UserInterface;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Drawables;
using osuTK;
... | // 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.Primitives;
using osu.Game.Graphics.UserInterface;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Drawables;
using osuTK;
... | mit | C# |
0515e91b89998c8f01ca46a07ff08bdc4d82e425 | update assembly info | Blue0500/JoshuaKearney.Measurements | JoshuaKearney.Measurements/JoshuaKearney.Measurements/Properties/AssemblyInfo.cs | JoshuaKearney.Measurements/JoshuaKearney.Measurements/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Resources;
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.
[asse... | 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 assembly.
[ass... | mit | C# |
3c4579fa0b5bf4c9f79e16053d590f3996648830 | Enable FailingTest | AccelerateX-org/WiQuiz,AccelerateX-org/WiQuiz | Sources/WiQuest/WIQuest.Web.Tests/TestClass.cs | Sources/WiQuest/WIQuest.Web.Tests/TestClass.cs | using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using WIQuest.Web.Utils;
namespace WIQuest.Web.Tests
{
[TestFixture]
public class TestClass
{
[Test]
public void PassingTest()
{
Assert.AreEqual(4, Add(2, 2));
}
[Test]
... | using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using WIQuest.Web.Utils;
namespace WIQuest.Web.Tests
{
[TestFixture]
public class TestClass
{
[Test]
public void PassingTest()
{
Assert.AreEqual(4, Add(2, 2));
}
[Test]
... | mit | C# |
6d4d39a0e3d025c7fea1b30cc6d9dcd933b3f0f5 | Revert vresion number for intermediate release | rajashekarusa/PnP-Sites-Core,OfficeDev/PnP-Sites-Core,rajashekarusa/PnP-Sites-Core,phillipharding/PnP-Sites-Core,OfficeDev/PnP-Sites-Core,phillipharding/PnP-Sites-Core,OfficeDev/PnP-Sites-Core,rajashekarusa/PnP-Sites-Core | Core/OfficeDevPnP.Core/Properties/AssemblyInfo.cs | Core/OfficeDevPnP.Core/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Resources;
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.
[asse... | using System.Reflection;
using System.Resources;
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.
[asse... | mit | C# |
f6d3d5dd69f4ba7cbe9b96fcb0e85aa8b2757825 | update MeanAbsoluteDeviation to use a simple moving average for the mean calculation and update tests accordingly | racksen/Lean,JKarathiya/Lean,FrancisGauthier/Lean,Obawoba/Lean,Jay-Jay-D/LeanSTP,bizcad/LeanJJN,bizcad/Lean,JKarathiya/Lean,Obawoba/Lean,jameschch/Lean,AnObfuscator/Lean,devalkeralia/Lean,young-zhang/Lean,racksen/Lean,StefanoRaggi/Lean,AnObfuscator/Lean,Phoenix1271/Lean,Phoenix1271/Lean,Neoracle/Lean,AnshulYADAV007/Lea... | Tests/Indicators/MeanAbsoluteDeviationTests.cs | Tests/Indicators/MeanAbsoluteDeviationTests.cs | /*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy ... | /*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy ... | apache-2.0 | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.