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 |
|---|---|---|---|---|---|---|---|---|
57c7c0e9308ee14233fd5bdeeffc6edfad2dc045 | Fix NullReferenceException in Offline mode (#406) | Microsoft/dotnet-apiport,JJVertical/dotnet-apiport,JJVertical/dotnet-apiport,Microsoft/dotnet-apiport,twsouthwick/dotnet-apiport,conniey/dotnet-apiport,mjrousos/dotnet-apiport,twsouthwick/dotnet-apiport,conniey/dotnet-apiport,Microsoft/dotnet-apiport,conniey/dotnet-apiport,mjrousos/dotnet-apiport | src/Microsoft.Fx.Portability.Offline/OfflineApiRecommendations.cs | src/Microsoft.Fx.Portability.Offline/OfflineApiRecommendations.cs | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.Fx.Portability.ObjectModel;
using System;
using System.Collections.Generic;
using System.Linq;
namespace Microsoft.Fx.Portability
{
public class O... | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.Fx.Portability.ObjectModel;
using System;
using System.Collections.Generic;
using System.Linq;
namespace Microsoft.Fx.Portability
{
public class O... | mit | C# |
22f6d895f12f25c45704786249b5d90df261df90 | Fix bug where the aera gained for delivering resources was not calculated correctly. | SunParlorStudios/LudumDare34,SunParlorStudios/LudumDare34,SunParlorStudios/LudumDare34 | Assets/Scripts/BaseController.cs | Assets/Scripts/BaseController.cs | using UnityEngine;
using System.Collections.Generic;
public class BaseController : MonoBehaviour
{
public World world;
public HomeWorld homeWorld;
public float growStrengthPerResource;
public float smoothing;
private float interpolateTime;
private bool doInterpolate;
private float baseS... | using UnityEngine;
using System.Collections.Generic;
public class BaseController : MonoBehaviour
{
public World world;
public HomeWorld homeWorld;
public float growStrengthPerResource;
public float smoothing;
private float interpolateTime;
private bool doInterpolate;
private float begin... | mit | C# |
4af8007122a1de9e8201ff9ac03f1a21b483bd7b | Implement Cell.Equals() | cartersm/BeeHiveSim | BeeHiveSim/Assets/Editor/Cell.cs | BeeHiveSim/Assets/Editor/Cell.cs | namespace Assets.Editor
{
public class Cell
{
public bool IsOccupied { get; set; }
public int BrickType { get; set; }
public Point3D Location;
public Cell(Point3D location)
{
this.IsOccupied = false;
this.Location = location;
this.Bric... | namespace Assets.Editor
{
public class Cell
{
public bool IsOccupied { get; set; }
public int BrickType { get; set; }
public Point3D Location;
public Cell(Point3D location)
{
this.IsOccupied = false;
this.Location = location;
this.Bric... | mit | C# |
46ad43470a9956f150934b23389bde933d3efcd2 | Allow test data to have a variable number of bits masked out. | drewnoakes/cassette | Cassette.Tests/TestUtil.cs | Cassette.Tests/TestUtil.cs | /*
* Copyright 2015 Drew Noakes
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | /*
* Copyright 2015 Drew Noakes
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | apache-2.0 | C# |
a18ffbd71be22dfa13239164da0cae791d39d064 | Remove the MailingId property on the LinkStats class: this property is appropriate for mailing links but not for trigger links. | Jericho/CakeMail.RestClient | CakeMail.RestClient/Models/LinkStats.cs | CakeMail.RestClient/Models/LinkStats.cs | using Newtonsoft.Json;
namespace CakeMail.RestClient.Models
{
public class LinkStats
{
#region Properties
[JsonProperty("id")]
public long Id { get; set; }
[JsonProperty("link_to")]
public string Uri { get; set; }
[JsonProperty("unique")]
public long UniqueClicks { get; set; }
[JsonProperty("tot... | using Newtonsoft.Json;
namespace CakeMail.RestClient.Models
{
public class LinkStats
{
#region Properties
[JsonProperty("id")]
public long Id { get; set; }
[JsonProperty("link_to")]
public string Uri { get; set; }
[JsonProperty("mailing_id")]
public long MailingId { get; set; }
[JsonProperty("un... | mit | C# |
9c8d3c3acd73cd6867f0f2238a127f44aaf645c2 | Remove unnecessary usings in example script | madsbangh/EasyButtons | Assets/EasyButtons/ScriptableObjectExample.cs | Assets/EasyButtons/ScriptableObjectExample.cs | using UnityEngine;
[CreateAssetMenu(fileName = "Example.asset", menuName = "New Example ScriptableObject")]
public class ScriptableObjectExample : ScriptableObject
{
[EasyButtons.Button]
public void SayHello()
{
Debug.Log("Hello");
}
}
| using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Random = UnityEngine.Random;
using Object = UnityEngine.Object;
[CreateAssetMenu(fileName = "Example.asset", menuName = "New Example ScriptableObject")]
public class ScriptableObjectExample : Scriptab... | mit | C# |
ce9abe6a23966e108d7ad906b6edbd45e828c4e9 | Add controller getters for player and opponent tables. | Mikuz/Battlezeppelins,Mikuz/Battlezeppelins | Battlezeppelins/Controllers/GameController.cs | Battlezeppelins/Controllers/GameController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Battlezeppelins.Models;
namespace Battlezeppelins.Controllers
{
public class GameController : BaseController
{
public ActionResult Metadata()
{
Game game = ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Battlezeppelins.Models;
namespace Battlezeppelins.Controllers
{
public class GameController : BaseController
{
public ActionResult Metadata()
{
Game game = ... | apache-2.0 | C# |
a6f4151318657a41db57c98659fecabfa0bf193e | use const instead of static, add placeholder for cloud connection | mwmckee/coffee-auth | CoffeeAuth/ConnectionSettings.cs | CoffeeAuth/ConnectionSettings.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CoffeeAuth
{
static class ConnectionSettings
{
public const string LocalConnectionString = "coffeepeople.db";
public const string CloudConnectionString = "";
}
}
| using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CoffeeAuth
{
static class ConnectionSettings
{
public static string LocalConnectionString = "coffeepeople.db";
}
}
| mit | C# |
b5ae146d5385f001075e5076936fc6bbf25879f7 | Use auto-property | sebastienros/fluid | Fluid/Ast/WhenStatement.cs | Fluid/Ast/WhenStatement.cs | using System.Collections.Generic;
using System.IO;
using System.Runtime.CompilerServices;
using System.Text.Encodings.Web;
using System.Threading.Tasks;
namespace Fluid.Ast
{
public class WhenStatement : TagStatement
{
public WhenStatement(List<Expression> options, List<Statement> statements) : base(s... | using System.Collections.Generic;
using System.IO;
using System.Runtime.CompilerServices;
using System.Text.Encodings.Web;
using System.Threading.Tasks;
namespace Fluid.Ast
{
public class WhenStatement : TagStatement
{
private readonly List<Expression> _options;
public WhenStatement(List<Expr... | mit | C# |
c642bd02a20630abf50dc889d3d84a055e923fd3 | Comment out tests | Programming-0101/Demo-DDD | StudentGrades.Specs/Aggregates/When_GradeBook_Started.cs | StudentGrades.Specs/Aggregates/When_GradeBook_Started.cs | using System;
using System.Linq;
using Xunit;
namespace StudentGrades.Specs
{
// TODO: Implement these tests...
//public class When_GradeBook_Started
//{
// #region Primary Scenarios
// [Fact]
// public void Should_Add_Student()
// {
// throw new NotImplementedExcept... | using System;
using System.Linq;
using Xunit;
namespace StudentGrades.Specs
{
public class When_GradeBook_Started
{
#region Primary Scenarios
[Fact]
public void Should_Add_Student()
{
throw new NotImplementedException("TO-DO");
}
[Fact]
publi... | mit | C# |
1d008eefa5d38cf6d7497311976505744982e25b | reset authentication file | SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments | src/CommitmentsV2/SFA.DAS.CommitmentsV2.Api/Authentication/AuthenticationService.cs | src/CommitmentsV2/SFA.DAS.CommitmentsV2.Api/Authentication/AuthenticationService.cs | using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.AspNetCore.Http;
using SFA.DAS.CommitmentsV2.Authentication;
using SFA.DAS.CommitmentsV2.Types;
using IAuthenticationService = SFA.DAS.CommitmentsV2.Authentication.IAuthenticationService;
namespace SFA.DAS.CommitmentsV2.Api.Authenticat... | using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.AspNetCore.Http;
using SFA.DAS.CommitmentsV2.Authentication;
using SFA.DAS.CommitmentsV2.Types;
using IAuthenticationService = SFA.DAS.CommitmentsV2.Authentication.IAuthenticationService;
namespace SFA.DAS.CommitmentsV2.Api.Authenticat... | mit | C# |
553ab92cd0524e90623e656e51b8fa58d3cf2fc6 | Update tips to localized. Update health meters. Update player hit health meter. | drawcode/game-lib-engine | Engine/Game/App/BaseApp/BaseAppContentTips.cs | Engine/Game/App/BaseApp/BaseAppContentTips.cs | using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
public class BaseAppContentTips<T> : DataObjects<T> where T : DataObject, new() {
private static T current;
private static volatile BaseAppContentTips<T> instance;
private static object syncRoot = new Object();
p... | using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
public class BaseAppContentTips<T> : DataObjects<T> where T : DataObject, new() {
private static T current;
private static volatile BaseAppContentTips<T> instance;
private static object syncRoot = new Object();
p... | mit | C# |
2182527458b642cbba8dc434808e5d88b482e0bb | Synchronize network access | flagbug/Espera,punker76/Espera | Espera/Espera.Services/EsperaNetworkClient.cs | Espera/Espera.Services/EsperaNetworkClient.cs | using Newtonsoft.Json.Linq;
using System;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Espera.Services
{
/// <summary>
/// Represents a connection to a mobile device and abstracts the network protocol implementation.
/// </summary>
intern... | using Newtonsoft.Json.Linq;
using System;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace Espera.Services
{
internal class EsperaNetworkClient : IEsperaNetworkClient
{
private readonly TcpClient client;
public EsperaNetworkClient(TcpClient client)
... | mit | C# |
06b366fd3d54740bf143b7c8781a8bb7e22d6c3e | Rearrange test to better self-document what currently works and what does not. | EamonNerbonne/ExpressionToCode | ExpressionToCodeTest/ValueTupleTests.cs | ExpressionToCodeTest/ValueTupleTests.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
using ExpressionToCodeLib;
using Xunit;
namespace ExpressionToCodeTest {
public class ValueTupleTests {
[Fact]
public void ExpressionWithVa... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
using ExpressionToCodeLib;
using Xunit;
namespace ExpressionToCodeTest {
public class ValueTupleTests {
[Fact]
public void ExpressionCompil... | apache-2.0 | C# |
555125daa56e7f3ec5c4a45f9314e5e2fb5ed307 | add test for default ServerRole | dfch/biz.dfch.CS.System.Utilities | src/biz.dfch.CS.System.Utilities.Tests/Contracts/Endpoint/IODataEndpointDataTest.cs | src/biz.dfch.CS.System.Utilities.Tests/Contracts/Endpoint/IODataEndpointDataTest.cs | /**
* Copyright 2015 Marc Rufer, d-fens GmbH
*
* 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 a... | /**
* Copyright 2015 Marc Rufer, d-fens GmbH
*
* 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 a... | apache-2.0 | C# |
e78536a4d325cc73b8f79911b565b848c5557ffb | Remove unused generic definitions | chartjunk/SubMapper | src/SubMapper/EnumerableMapping/Adders/ArrayConcatAdder.cs | src/SubMapper/EnumerableMapping/Adders/ArrayConcatAdder.cs | using SubMapper.EnumerableMapping;
using System;
using System.Collections.Generic;
using System.Linq;
namespace SubMapper.EnumerableMapping.Adders
{
public static partial class PartialEnumerableMappingExtensions
{
public static PartialEnumerableMapping<TSubA, TSubB, IEnumerable<TSubIItem>, TSubJ, TSub... | using SubMapper.EnumerableMapping;
using System;
using System.Collections.Generic;
using System.Linq;
namespace SubMapper.EnumerableMapping.Adders
{
public static partial class PartialEnumerableMappingExtensions
{
public static PartialEnumerableMapping<TSubA, TSubB, IEnumerable<TSubIItem>, TSubJ, TSub... | apache-2.0 | C# |
3c3c6cab910ff10511742070b4afd52a8daf8659 | Use `Path.DirectorySeparatorChar` to have ServiceAccountPath start from root, instead of a relative path. (#342) | kubernetes-client/csharp,kubernetes-client/csharp | src/KubernetesClient/KubernetesClientConfiguration.InCluster.cs | src/KubernetesClient/KubernetesClientConfiguration.InCluster.cs | using System;
using System.IO;
using k8s.Exceptions;
namespace k8s
{
public partial class KubernetesClientConfiguration
{
private static string ServiceAccountPath =
Path.Combine(new string[] {
$"{Path.DirectorySeparatorChar}var", "run", "secrets", "kubernetes.io", "serviceac... | using System;
using System.IO;
using k8s.Exceptions;
namespace k8s
{
public partial class KubernetesClientConfiguration
{
private static string ServiceAccountPath =
Path.Combine(new string[] {
"var", "run", "secrets", "kubernetes.io", "serviceaccount/"
});
... | apache-2.0 | C# |
5acc41c3bc787d4bef4e57b7ab4836ff9b2e9e25 | test for validation | D3-LucaPiombino/MassTransit,vebin/MassTransit,jsmale/MassTransit,lahma/MassTransit,lahma/MassTransit,lahma/MassTransit,petedavis/MassTransit,vebin/MassTransit,ccellar/MassTransit,ccellar/MassTransit,ccellar/MassTransit,lahma/MassTransit,lahma/MassTransit,ccellar/MassTransit,abombss/MassTransit,petedavis/MassTransit,abo... | src/MassTransit.Tests/Configuration/When_configuration_fails.cs | src/MassTransit.Tests/Configuration/When_configuration_fails.cs | // Copyright 2007-2011 Chris Patterson, Dru Sellers, Travis Smith, et. al.
//
// 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... | // Copyright 2007-2011 Chris Patterson, Dru Sellers, Travis Smith, et. al.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use
// this file except in compliance with the License. You may obtain a copy of the
// License at
//
// http://www.apache.org/licenses/LICENSE-2.0... | apache-2.0 | C# |
9acfbc8c0202c6a70d6f1106446d6b81e867d683 | Fix test class name | Virtlink/utilib | test/Virtlink.Utilib.Tests/EnumArgumentExceptionTests.cs | test/Virtlink.Utilib.Tests/EnumArgumentExceptionTests.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using NUnit.Framework;
namespace Virtlink.Utilib
{
/// <summary>
/// Tests the <see cref="EnumArgumentException"/> class.
/// </summary>
[TestFixture]
public class EnumArgumentExceptio... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using NUnit.Framework;
namespace Virtlink.Utilib
{
/// <summary>
/// Tests the <see cref="EnumArgumentException"/> class.
/// </summary>
[TestFixture]
public class InvalidEnumArgumentE... | apache-2.0 | C# |
d376b68c093a60d5ee2d239c3fdad9d15607c792 | change settings in tests | BigBabay/AsyncConverter,BigBabay/AsyncConverter | AsyncConverter.Tests/Highlightings/NamingHighlightingsWithExcludeTestMethodsTests.cs | AsyncConverter.Tests/Highlightings/NamingHighlightingsWithExcludeTestMethodsTests.cs | using AsyncConverter.Settings.General;
using JetBrains.ReSharper.TestFramework;
namespace AsyncConverter.Tests.Highlightings
{
[TestSetting(typeof(GeneralSettings), nameof(GeneralSettings.ExcludeTestMethodsFromRanaming), false)]
public class NamingWithExcludeTestMethodsTests : HighlightingsTestsBase
{
... | using AsyncConverter.Settings.AsyncSuffixOptions;
using JetBrains.ReSharper.TestFramework;
namespace AsyncConverter.Tests.Highlightings
{
[TestSetting(typeof(AsyncConverterAsyncSuffixSettings), "ExcludeTestMethodsFromAnalysis", false)]
public class NamingWithExcludeTestMethodsTests : HighlightingsTestsBase
... | mit | C# |
bacff44248daef8fb82442d83ca55d3b60f6262f | bump version to 0.6.2 | rainbowlee/kayak,modulexcite/kayak,kayak/kayak,modulexcite/kayak,kayak/kayak,modulexcite/kayak,rainbowlee/kayak,rainbowlee/kayak,kayak/kayak | Kayak/Properties/AssemblyInfo.cs | Kayak/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: AssemblyTit... | 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: AssemblyTit... | mit | C# |
96590d8dc618e94ab0e20d4b32f7e39f3aabadc5 | Create obfuscator(fix) | remobjects/Obfuscar | Properties/AssemblyInfo.cs | Properties/AssemblyInfo.cs | #region Copyright (c) 2007 Ryan Williams <drcforbin@gmail.com>
/// <copyright>
/// Copyright (c) 2007 Ryan Williams <drcforbin@gmail.com>
///
/// 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 ... | #region Copyright (c) 2007 Ryan Williams <drcforbin@gmail.com>
/// <copyright>
/// Copyright (c) 2007 Ryan Williams <drcforbin@gmail.com>
///
/// 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 ... | mit | C# |
c9abb710732f7c110e0f8227d3bb564058f1fd1f | Update APIKEY.cs | dkackman/Sunlight.Net | SunlightAPITests/APIKEY.cs | SunlightAPITests/APIKEY.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SunlightAPITests
{
static class APIKEY
{
#error enter your key here
public const string Key = "";
}
}
| using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SunlightAPITests
{
static class APIKEY
{
public const string Key = "e5883b15e17d4e1f8d93babda91160c6";
}
}
| mit | C# |
7384c090252f7ad9954bd3b74a8cd6d1db40ec30 | Change Kirkin AssemblyInfo version to match nuspec | KirillShlenskiy/Kirkin,KirillShlenskiy/Kirkin,KirillShlenskiy/Kirkin | src/Kirkin/Properties/AssemblyInfo.cs | src/Kirkin/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("Ki... | 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("Ki... | mit | C# |
f2e036fa5f898668aa7a48253e1be7380e0c2c1f | Fix to issue 8 https://github.com/AnthonySteele/MvcRouteTester/issues/8 | AlexisArce/MvcRouteTester,AnthonySteele/MvcRouteTester | src/MvcRouteTester/WebRoute/Reader.cs | src/MvcRouteTester/WebRoute/Reader.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Web;
using System.Web.Routing;
using MvcRouteTester.ApiRoute;
namespace MvcRouteTester.WebRoute
{
internal class Reader
{
public IDictionary<string, string> GetRequestProperties(RouteData routeData, Http... | using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Web;
using System.Web.Routing;
using MvcRouteTester.ApiRoute;
namespace MvcRouteTester.WebRoute
{
internal class Reader
{
public IDictionary<string, string> GetRequestProperties(RouteData routeData, HttpRequestBase reques... | apache-2.0 | C# |
9e6c78cf19c1567d19e8f2b8b0d74a3fe2dd035f | add unit test that uses @ escape syntax for c# reserved words | dkackman/DynamicRestProxy,jamesholcomb/DynamicRestProxy,dkackman/DynamicRestProxy,jamesholcomb/DynamicRestProxy | DynamicRestPRoxy.Portable.UnitTests/DynamicClientTests.cs | DynamicRestPRoxy.Portable.UnitTests/DynamicClientTests.cs | using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using UnitTestHelpers;
namespace DynamicRestProxy.PortableHttpClient.UnitTests
{
[TestClass]
public class DynamicClientTests
{
[TestMethod]
[TestCategory("portable-client")... | using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using UnitTestHelpers;
namespace DynamicRestProxy.PortableHttpClient.UnitTests
{
[TestClass]
public class DynamicClientTests
{
[TestMethod]
[TestCategory("portable-client")... | apache-2.0 | C# |
8b5d201cef7d12f6ab078bd8953895ac2fd4991e | add #if xlua || SLUA | mr-kelly/KSFramework,mr-kelly/KSFramework,mr-kelly/KSFramework,mr-kelly/KSFramework | KSFramework/Assets/KSFramework/Editor/KSFrameworkTests.cs | KSFramework/Assets/KSFramework/Editor/KSFrameworkTests.cs | #if UNITY_5 || UNITY_2017_1_OR_NEWER
using System.IO;
using KEngine;
using KSFramework;
using NUnit.Framework;
public class KSFrameworkTests
{
#if xLua || SLUA
private static LuaModule _testLuaModule;
public static LuaModule GetLuaModule()
{
if (_testLuaModule != null) return _testLuaModule;
... | #if UNITY_5 || UNITY_2017_1_OR_NEWER
using System.IO;
using KEngine;
using KSFramework;
using NUnit.Framework;
public class KSFrameworkTests
{
private static LuaModule _testLuaModule;
public static LuaModule GetLuaModule()
{
if (_testLuaModule != null) return _testLuaModule;
var luaModule = ... | apache-2.0 | C# |
a5de966b17f7d70af6d64db45d59f315de950228 | Add missing await configuration on sqlite tests. | sjp/Schematic,sjp/Schematic,sjp/Schematic,sjp/Schematic,sjp/SJP.Schema | src/SJP.Schematic.Sqlite.Tests/Integration/SqliteRelationalDatabaseTests.cs | src/SJP.Schematic.Sqlite.Tests/Integration/SqliteRelationalDatabaseTests.cs | using System.Threading.Tasks;
using Microsoft.Data.Sqlite;
using NUnit.Framework;
namespace SJP.Schematic.Sqlite.Tests.Integration
{
internal sealed class SqliteRelationalDatabaseTests : SqliteTest
{
[Test]
public async Task VacuumAsync_WhenInvoked_RunsWithoutError()
{
var ... | using System.Threading.Tasks;
using Microsoft.Data.Sqlite;
using NUnit.Framework;
namespace SJP.Schematic.Sqlite.Tests.Integration
{
internal sealed class SqliteRelationalDatabaseTests : SqliteTest
{
[Test]
public async Task VacuumAsync_WhenInvoked_RunsWithoutError()
{
var ... | mit | C# |
6e28e96721da452988854dca5fe032c57a3acf96 | Fix optional fields | stripe/stripe-dotnet | src/Stripe.net/Entities/Checkout/Sessions/SessionAfterExpirationRecovery.cs | src/Stripe.net/Entities/Checkout/Sessions/SessionAfterExpirationRecovery.cs | // File generated from our OpenAPI spec
namespace Stripe.Checkout
{
using System;
using Newtonsoft.Json;
using Stripe.Infrastructure;
public class SessionAfterExpirationRecovery : StripeEntity<SessionAfterExpirationRecovery>
{
/// <summary>
/// Enables user redeemable promotion code... | // File generated from our OpenAPI spec
namespace Stripe.Checkout
{
using System;
using Newtonsoft.Json;
using Stripe.Infrastructure;
public class SessionAfterExpirationRecovery : StripeEntity<SessionAfterExpirationRecovery>
{
/// <summary>
/// Enables user redeemable promotion code... | apache-2.0 | C# |
e56ad2d312ede81537958f32bbda393f4bc6de80 | Fix migration from 7.14 | dawoe/Umbraco-CMS,KevinJump/Umbraco-CMS,marcemarc/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,abryukhov/Umbraco-CMS,rasmuseeg/Umbraco-CMS,hfloyd/Umbraco-CMS,leekelleher/Umbraco-CMS,NikRimington/Umbraco-CMS,abjerner/Umbraco-CMS,marcemarc/Umbraco-CMS,umbraco/Umbraco-CMS,robertjf/Umbraco-CMS,umbraco/Umbraco-CMS,leekelleher/... | src/Umbraco.Core/Migrations/Upgrade/V_7_14_0/UpdateMemberGroupPickerData.cs | src/Umbraco.Core/Migrations/Upgrade/V_7_14_0/UpdateMemberGroupPickerData.cs | namespace Umbraco.Core.Migrations.Upgrade.V_7_14_0
{
/// <summary>
/// Migrates member group picker properties from NVarchar to NText. See https://github.com/umbraco/Umbraco-CMS/issues/3268.
/// </summary>
public class UpdateMemberGroupPickerData : MigrationBase
{
/// <summary>
/// ... | namespace Umbraco.Core.Migrations.Upgrade.V_7_14_0
{
/// <summary>
/// Migrates member group picker properties from NVarchar to NText. See https://github.com/umbraco/Umbraco-CMS/issues/3268.
/// </summary>
public class UpdateMemberGroupPickerData : MigrationBase
{
/// <summary>
/// ... | mit | C# |
70bd701a4786f815d8d850cd1fe4b7d6d33f1b15 | Update assembly description | grantcolley/origin | Projects/DevelopmentInProgress.Origin/Properties/AssemblyInfo.cs | Projects/DevelopmentInProgress.Origin/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated ... | using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated ... | apache-2.0 | C# |
5cb6963940662f61982dbc43457303b70471b45e | Make spinners easier for now | NeoAdonis/osu,NeoAdonis/osu,johnneijzen/osu,NeoAdonis/osu,EVAST9919/osu,smoogipooo/osu,tacchinotacchi/osu,ZLima12/osu,peppy/osu,ppy/osu,Frontear/osuKyzer,2yangk23/osu,ppy/osu,DrabWeb/osu,smoogipoo/osu,naoey/osu,Damnae/osu,johnneijzen/osu,DrabWeb/osu,naoey/osu,smoogipoo/osu,ppy/osu,peppy/osu-new,DrabWeb/osu,EVAST9919/os... | osu.Game.Rulesets.Osu/Objects/Spinner.cs | osu.Game.Rulesets.Osu/Objects/Spinner.cs | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Database;
using osu.Game.Beatmaps.ControlPoints;
namespace osu.Game.Rulesets.Osu.Objects
{
public cl... | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Database;
using osu.Game.Beatmaps.ControlPoints;
namespace osu.Game.Rulesets.Osu.Objects
{
public cl... | mit | C# |
9fc6b8fcf5497f8cfc76bedcd2542c26b7d82e8c | Clean up mac completion broker. | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Microsoft.VisualStudio.Mac.LanguageServices.Razor/Editor/DefaultVisualStudioCompletionBroker.cs | src/Microsoft.VisualStudio.Mac.LanguageServices.Razor/Editor/DefaultVisualStudioCompletionBroker.cs | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.VisualStudio.Editor.Razor;
using Microsoft.VisualStudio.Text.Editor;
using MonoDevelop.Ide.CodeCompletion;
namespace Mic... | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.VisualStudio.Editor.Razor;
using Microsoft.VisualStudio.Text.Editor;
using MonoDevelop.Ide.CodeCompletion;
namespace Mic... | apache-2.0 | C# |
159ce8e93e970478724c2de4a82dff613f1add5c | Add license header | peppy/osu,EVAST9919/osu,peppy/osu-new,naoey/osu,johnneijzen/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,DrabWeb/osu,NeoAdonis/osu,ppy/osu,DrabWeb/osu,UselessToucan/osu,2yangk23/osu,johnneijzen/osu,naoey/osu,smoogipooo/osu,peppy/osu,ppy/osu,peppy/osu,2yangk23/osu,ZLima12/osu,naoey/osu,UselessToucan/osu,DrabWeb/osu,EVA... | osu.Game.Rulesets.Osu/Mods/OsuModArrange.cs | osu.Game.Rulesets.Osu/Mods/OsuModArrange.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.Collections.Generic;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.G... | using System;
using System.Collections.Generic;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Osu.Objects;
using OpenTK;
namespace osu.Game.Rulesets.Osu.Mods
... | mit | C# |
6d7cfc8ed290c07f574bb22c0777d9e3d7f0201f | Add null handling for editorinterface settings | contentful/contentful.net | Contentful.Core/Models/Management/EditorInterfaceControl.cs | Contentful.Core/Models/Management/EditorInterfaceControl.cs | using Contentful.Core.Configuration;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace Contentful.Core.Models.Management
{
[JsonConverter(typeof(EditorInterfaceControlJsonConverter))]
public class EditorInterfaceControl
{
public string FieldId { ge... | using Contentful.Core.Configuration;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace Contentful.Core.Models.Management
{
[JsonConverter(typeof(EditorInterfaceControlJsonConverter))]
public class EditorInterfaceControl
{
public string FieldId { ge... | mit | C# |
eebeb0767bb00d424ea8bb748ff9724a81bae6f7 | Update Space.cs | cornem/vimeo-dot-net,mfilippov/vimeo-dot-net,agricfowl/vimeo-dot-net,mohibsheth/vimeo-dot-net,justinspradlin/vimeo-dot-net,needham-develop/vimeo-dot-net | VimeoDotNet/VimeoDotNet/Models/Space.cs | VimeoDotNet/VimeoDotNet/Models/Space.cs | using System;
namespace VimeoDotNet.Models
{
[Serializable]
public class Space
{
public long max { get; set; }
public long free { get; set; }
public long used { get; set; }
}
}
| using System;
namespace VimeoDotNet.Models
{
[Serializable]
public class Space
{
public long max { get; set; }
public long free { get; set; }
public int used { get; set; }
}
} | mit | C# |
75247387c7ba0c59b39c65e48ed14eddc7f73c1a | bump version | alecgorge/adzerk-dot-net | Adzerk.Api/Properties/AssemblyInfo.cs | Adzerk.Api/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("Ad... | 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("Ad... | mit | C# |
4d9e526bcb0d691dd3622551068deb0ca4b9e54c | Update mscorlib assembly name to match eventual module name | nikhilk/scriptsharp,nikhilk/scriptsharp,x335/scriptsharp,nikhilk/scriptsharp,x335/scriptsharp,x335/scriptsharp | src/Core/CoreLib/Properties/AssemblyInfo.cs | src/Core/CoreLib/Properties/AssemblyInfo.cs | // AssemblyInfo.cs
// Script#/Libraries/CoreLib
// This source code is subject to terms and conditions of the Apache License, Version 2.0.
//
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyTitle("mscorlib")]
[assembly: AssemblyDescription("Script# Core Assembly")]
[a... | // AssemblyInfo.cs
// Script#/Libraries/CoreLib
// This source code is subject to terms and conditions of the Apache License, Version 2.0.
//
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyTitle("mscorlib")]
[assembly: AssemblyDescription("Script# Core Assembly")]
[a... | apache-2.0 | C# |
887ec699dd7d079aa65ce0d8941d26f4d87c264d | Add wallet actions | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Fluent/ViewModels/Wallets/WalletViewModel.cs | WalletWasabi.Fluent/ViewModels/Wallets/WalletViewModel.cs | using NBitcoin;
using ReactiveUI;
using Splat;
using System;
using System.Collections.ObjectModel;
using System.Reactive;
using System.Reactive.Disposables;
using System.Reactive.Linq;
using WalletWasabi.Fluent.ViewModels.Wallets.Actions;
using WalletWasabi.Gui;
using WalletWasabi.Logging;
using WalletWasabi.Wallets;
u... | using NBitcoin;
using ReactiveUI;
using Splat;
using System;
using System.Collections.ObjectModel;
using System.Reactive;
using System.Reactive.Disposables;
using System.Reactive.Linq;
using WalletWasabi.Gui;
using WalletWasabi.Logging;
using WalletWasabi.Wallets;
using WalletWasabi.Gui.ViewModels;
namespace WalletWas... | mit | C# |
1a9f2742f8ac8fcc88fa65f6e072fd41363d0a1b | Add missing using | terrajobst/xsddoc | Dev/ContentWriter/Source/XsdDocumentation.BuildComponents/XsdResolveLinksComponent.cs | Dev/ContentWriter/Source/XsdDocumentation.BuildComponents/XsdResolveLinksComponent.cs | using System;
using System.Diagnostics;
using System.Globalization;
using System.Reflection;
using System.Xml;
using System.Xml.XPath;
using Microsoft.Ddue.Tools;
using XsdDocumentation.BuildComponents.Properties;
using XsdDocumentation.Model;
namespace XsdDocumentation.BuildComponents
{
public sealed... | using System;
using System.Diagnostics;
using System.Globalization;
using System.Reflection;
using System.Xml;
using System.Xml.XPath;
using Microsoft.Ddue.Tools;
using XsdDocumentation.Model;
namespace XsdDocumentation.BuildComponents
{
public sealed class XsdResolveLinksComponent : BuildComponent
{... | mit | C# |
26ea4457b0881d10ff166ec299057ab9c468c6cc | Add more reasonable response types. (#72) | gyrosworkshop/Wukong,gyrosworkshop/Wukong | Wukong/Controllers/ChannelController.cs | Wukong/Controllers/ChannelController.cs | using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Authorization;
using Wukong.Services;
using Wukong.Models;
namespace Wukong.Controllers
{
[Authorize]
[Route("api/[controller]")]
public class ChannelController : Controller
{
private readonly IChannelManager channelManager;
pr... | using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Authorization;
using Wukong.Services;
using Wukong.Models;
namespace Wukong.Controllers
{
[Authorize]
[Route("api/[controller]")]
public class ChannelController : Controller
{
private readonly IChannelManager channelManager;
pr... | mit | C# |
f4a423207462eabc690eecc56e8fda11f3b34962 | Make vector2 immutable | dmweis/DynamixelServo,dmweis/DynamixelServo,dmweis/DynamixelServo,dmweis/DynamixelServo | DynamixelServo.Quadruped/Vector2.cs | DynamixelServo.Quadruped/Vector2.cs | namespace DynamixelServo.Quadruped
{
public struct Vector2
{
public readonly float X;
public readonly float Y;
public Vector2(float x, float y)
{
X = x;
Y = y;
}
public static Vector2 operator +(Vector2 a, Vector2 b)
{
... | namespace DynamixelServo.Quadruped
{
public struct Vector2
{
public float X;
public float Y;
public Vector2(float x, float y)
{
X = x;
Y = y;
}
public static Vector2 operator +(Vector2 a, Vector2 b)
{
return new Vecto... | apache-2.0 | C# |
6639fefd8d9fb3a43e55b7b87f2952045b515b84 | Update Base62CorrelationServiceTests.cs | tiksn/TIKSN-Framework | TIKSN.UnitTests.Shared/Integration/Correlation/Base62CorrelationServiceTests.cs | TIKSN.UnitTests.Shared/Integration/Correlation/Base62CorrelationServiceTests.cs | using FluentAssertions;
using Microsoft.Extensions.DependencyInjection;
using System;
using TIKSN.DependencyInjection;
using Xunit;
using Xunit.Abstractions;
namespace TIKSN.Integration.Correlation.Tests
{
public class Base62CorrelationServiceTests
{
private readonly ICorrelationService _correlationSe... | using FluentAssertions;
using Microsoft.Extensions.DependencyInjection;
using System;
using TIKSN.DependencyInjection;
using Xunit;
using Xunit.Abstractions;
namespace TIKSN.Integration.Correlation.Tests
{
public class Base62CorrelationServiceTests
{
private readonly ICorrelationService _correlationSe... | mit | C# |
179a3086ad13830a4d6404678a754ac44c7d37da | implement trust defender mobile functionality | ScoreBig/XamarinBindings,ScoreBig/XamarinBindings | TrustDefender.iOS/TrustDefender.iOS.SampleApp/Controllers/MainViewController.cs | TrustDefender.iOS/TrustDefender.iOS.SampleApp/Controllers/MainViewController.cs | using MonoTouch.Dialog;
using TrustDefenderSDK.iOS;
using Foundation;
using UIKit;
namespace TrustDefender.iOS.SampleApp
{
public class MainViewController : DialogViewController, ITrustDefenderMobileDelegate
{
TrustDefenderMobile trustDefender;
public MainViewController()
: base(UITableViewStyle.Pl... | using System;
using MonoTouch.Dialog;
namespace TrustDefender.iOS.SampleApp
{
public class MainViewController : DialogViewController
{
public MainViewController() : base(UIKit.UITableViewStyle.Plain, null)
{
}
}
} | apache-2.0 | C# |
683bcfb9efe1f9119f28fd8aa468ecdef1804c2f | Update assembly info properties | jgeurts/CacheStack,cachestack/CacheStack | CacheStack/Properties/AssemblyInfo.cs | CacheStack/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("Ca... | 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("Ca... | mit | C# |
a2605512ee80be0d12eb165d47b2d05eac9408b1 | Use the attachment field name as "file" field name. | azubanov/elasticsearch-net,SeanKilleen/elasticsearch-net,tkirill/elasticsearch-net,faisal00813/elasticsearch-net,robertlyson/elasticsearch-net,geofeedia/elasticsearch-net,NickCraver/NEST,alanprot/elasticsearch-net,CSGOpenSource/elasticsearch-net,robrich/elasticsearch-net,robrich/elasticsearch-net,cstlaurent/elasticsear... | src/Nest/Domain/Mapping/Descriptors/AttachmentMappingDescriptor.cs | src/Nest/Domain/Mapping/Descriptors/AttachmentMappingDescriptor.cs | using System;
using System.Linq.Expressions;
using Nest.Resolvers;
namespace Nest
{
public class AttachmentMappingDescriptor<T>
{
internal AttachmentMapping _Mapping = new AttachmentMapping();
public AttachmentMappingDescriptor<T> Name(string name)
{
this._Mapping.Name = name;
return this;
}
public... | using System;
using System.Linq.Expressions;
using Nest.Resolvers;
namespace Nest
{
public class AttachmentMappingDescriptor<T>
{
internal AttachmentMapping _Mapping = new AttachmentMapping();
public AttachmentMappingDescriptor<T> Name(string name)
{
this._Mapping.Name = name;
return this;
}
public... | apache-2.0 | C# |
5eac748a97020dfd2580f9ba910d59d0e1b265e2 | Bump version to 11.0.0.23966 | HearthSim/HearthDb | HearthDb/Properties/AssemblyInfo.cs | HearthDb/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("Hea... | 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("Hea... | mit | C# |
4882e6f357d956c462929dcf0b9dc875c8a19bf2 | Bump version to 1.8.0.0 | InfinniPlatform/InfinniPlatform,InfinniPlatform/InfinniPlatform,InfinniPlatform/InfinniPlatform | Files/Packaging/GlobalAssemblyInfo.cs | Files/Packaging/GlobalAssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Infinnity Solutions")]
[assembly: AssemblyProduct("InfinniPlatform")]
[assembly: AssemblyCopyright("Copyright © Infinnity Solutions 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible... | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Infinnity Solutions")]
[assembly: AssemblyProduct("InfinniPlatform")]
[assembly: AssemblyCopyright("Copyright © Infinnity Solutions 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible... | agpl-3.0 | C# |
256e01351f875a3c3b34d2ec57fd4a2664fe0cea | Add version 1.0.1.0 | DanieleScipioni/Mustache.PCL | Mustache/Properties/AssemblyInfo.cs | Mustache/Properties/AssemblyInfo.cs | // ******************************************************************************
// Copyright (c) 2018 Daniele Scipioni
//
// This code is licensed under the MIT License (MIT).
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (t... | // ******************************************************************************
// Copyright (c) 2018 Daniele Scipioni
//
// This code is licensed under the MIT License (MIT).
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (t... | mit | C# |
6e59f443a8ba4601126a7580332c95543156c536 | Return 0 aero force from FAR if vessel is packed | Kerbas-ad-astra/KSPTrajectories | Plugin/AerodynamicModel/FARModel.cs | Plugin/AerodynamicModel/FARModel.cs | using System;
using System.Reflection;
using UnityEngine;
namespace Trajectories
{
class FARModel : VesselAerodynamicModel
{
private MethodInfo FARAPI_CalculateVesselAeroForces;
public override string AerodynamicModelName { get { return "FAR"; } }
public FARModel(Vessel s... | using System;
using System.Reflection;
using UnityEngine;
namespace Trajectories
{
class FARModel : VesselAerodynamicModel
{
private MethodInfo FARAPI_CalculateVesselAeroForces;
public override string AerodynamicModelName { get { return "FAR"; } }
public FARModel(Vessel s... | mit | C# |
f88b7f366ccf4412df03f57b381dc60a55c66ecf | Copy 0 bits too | Gerula/interviews,Gerula/interviews,Gerula/interviews,Gerula/interviews,Gerula/interviews | CareerCup/replace_bits.cs | CareerCup/replace_bits.cs | using System;
class Program {
static void Main() {
long a = 12343543565;
long b = 15423131234;
Console.WriteLine(Convert.ToString(a, 2));
Console.WriteLine(Convert.ToString(b, 2));
int i = 10;
int j = 20;
for (int k = i; k < j; k++) {
long x = ... | using System;
class Program {
static void Main() {
long a = 12343543565;
long b = 15423131234;
Console.WriteLine(Convert.ToString(a, 2));
Console.WriteLine(Convert.ToString(b, 2));
int i = 10;
int j = 20;
for (int k = i; k < j; k++) {
long x = ... | mit | C# |
08af2e4e18344ebca73dd3472ff9262649bc36a8 | Update PersonModel.cs | BlaiseD/XpressionMapper | AWSample.Domain/Person/PersonModel.cs | AWSample.Domain/Person/PersonModel.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AWSample.Domain.Person
{
public class PersonModel : BaseModel
{
public PersonModel()
{
BusinessEntityContacts = new HashSet<BusinessEntityContactModel>();
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AWSample.Domain.Person
{
public class PersonModel
{
public PersonModel()
{
BusinessEntityContacts = new HashSet<BusinessEntityContactModel>();
}
... | mit | C# |
e5fbf535a938d765737ed74d8bd2fd9174526b3f | Fix issue #4 | ammar-lakis/NNSamples | NeuralNetworksProject/LayerControl.cs | NeuralNetworksProject/LayerControl.cs | using System.Drawing;
using System.Windows.Forms;
namespace NeuralNetworksProject
{
public partial class LayerControl : UserControl
{
public LayerControl(int number)
{
InitializeComponent();
this.Location = new Point(number * 150, this.Location.Y);
this.lblL... | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace NeuralNetworksProject
{
public partial class LayerControl : UserControl
{
publ... | mit | C# |
0da10d0041811208854c54dfad0e845da4b0d4db | Fix HtmlFieldSettings not showing up (#7175) | petedavis/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,petedavis/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2 | src/OrchardCore.Modules/OrchardCore.ContentFields/Settings/HtmlFieldSettingsDriver.cs | src/OrchardCore.Modules/OrchardCore.ContentFields/Settings/HtmlFieldSettingsDriver.cs | using System.Threading.Tasks;
using OrchardCore.ContentFields.Fields;
using OrchardCore.ContentFields.ViewModels;
using OrchardCore.ContentManagement.Metadata.Models;
using OrchardCore.ContentTypes.Editors;
using OrchardCore.DisplayManagement.Views;
namespace OrchardCore.ContentFields.Settings
{
public class HtmlF... | using System.Threading.Tasks;
using OrchardCore.ContentFields.Fields;
using OrchardCore.ContentFields.ViewModels;
using OrchardCore.ContentManagement.Metadata.Models;
using OrchardCore.ContentTypes.Editors;
using OrchardCore.DisplayManagement.Views;
namespace OrchardCore.ContentFields.Settings
{
public class HtmlF... | bsd-3-clause | C# |
be06a4df2fed4527290daa7248a90f72c40f0b20 | Remove binding redirects for missing assemblies | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | tooling/Microsoft.VisualStudio.BlazorExtension/Properties/AssemblyInfo.cs | tooling/Microsoft.VisualStudio.BlazorExtension/Properties/AssemblyInfo.cs | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.VisualStudio.Shell;
// Add binding redirects for each assembly we ship in VS. This is required so that these assemblies show
// up in ... | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.VisualStudio.Shell;
// Add binding redirects for each assembly we ship in VS. This is required so that these assemblies show
// up in ... | apache-2.0 | C# |
a8e58232d26d2867300fce1c215931226c81a22d | fix name | meniku/NPBehave | Scripts/Decorator/WaitForCondition.cs | Scripts/Decorator/WaitForCondition.cs | using UnityEngine.Assertions;
using System;
namespace NPBehave
{
public class WaitForCondition : Decorator
{
private Func<bool> condition;
private float checkInterval;
private float checkVariance;
public WaitForCondition(Func<bool> condition, float checkInterval, float randomV... | using UnityEngine.Assertions;
using System;
namespace NPBehave
{
public class WaitForCondition : Decorator
{
private Func<bool> condition;
private float checkInterval;
private float checkVariance;
public WaitForCondition(Func<bool> condition, float checkInterval, float randomV... | mit | C# |
c11fc8e3bc0ea9c5924024ef3433766d1792c081 | Connect ProcesWaitHandle.Dispose to ProcessWaitState.Dispose | tstringer/corefx,cartermp/corefx,claudelee/corefx,elijah6/corefx,gkhanna79/corefx,Priya91/corefx-1,akivafr123/corefx,YoupHulsebos/corefx,tijoytom/corefx,Priya91/corefx-1,alexandrnikitin/corefx,janhenke/corefx,ravimeda/corefx,vijaykota/corefx,jhendrixMSFT/corefx,ViktorHofer/corefx,krytarowski/corefx,dhoehna/corefx,VPash... | src/System.Diagnostics.Process/src/System/Diagnostics/ProcessWaitHandle.Unix.cs | src/System.Diagnostics.Process/src/System/Diagnostics/ProcessWaitHandle.Unix.cs | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.Win32.SafeHandles;
using System.Threading;
namespace System.Diagnostics
{
internal sealed class ProcessWaitHandle : WaitHandle
{
/// <s... | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.Win32.SafeHandles;
using System.Threading;
namespace System.Diagnostics
{
internal sealed class ProcessWaitHandle : WaitHandle
{
/// <s... | mit | C# |
d3d721922c555037ffe6d9af6588b1b073bb36eb | Add some documentation for ICategoryFunction | lshift/diffa-dotnet | DiffaParticipant/Net.LShift.Diffa.Participants/ICategoryFunction.cs | DiffaParticipant/Net.LShift.Diffa.Participants/ICategoryFunction.cs | //
// Copyright (C) 2011 LShift Ltd.
//
// 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 applicabl... | //
// Copyright (C) 2011 LShift Ltd.
//
// 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 applicabl... | apache-2.0 | C# |
9bb4aabd5d81139e369d69c04a6d90c5af381ab1 | trim end of generated doc code callouts | elastic/elasticsearch-net,elastic/elasticsearch-net | src/DocGenerator/Documentation/Blocks/CSharpBlock.cs | src/DocGenerator/Documentation/Blocks/CSharpBlock.cs | using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
namespace DocGenerator.Documentation.Blocks
{
public class CSharpBlock : CodeBlock
{
private static readonly Regex Callout = new Regex(@"/... | using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
namespace DocGenerator.Documentation.Blocks
{
public class CSharpBlock : CodeBlock
{
private static readonly Regex Callout = new Regex(@"/... | apache-2.0 | C# |
b9881f0dd237a7ab168d83d14e6061ff74407d9c | Add a unit test that makes sure SA0002 is reported for a missing or empty settings file | DotNetAnalyzers/StyleCopAnalyzers | StyleCop.Analyzers/StyleCop.Analyzers.Test/SpecialRules/SA0002UnitTests.cs | StyleCop.Analyzers/StyleCop.Analyzers.Test/SpecialRules/SA0002UnitTests.cs | // Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
namespace StyleCop.Analyzers.Test.SpecialRules
{
using System.Collections.Generic;
using System.Threading;
using System.Threadi... | // Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
namespace StyleCop.Analyzers.Test.SpecialRules
{
using System.Collections.Generic;
using System.Threading;
using System.Threadi... | mit | C# |
8fc0a276bfaac3483e3ceb4408167f363a038592 | Update PackagedProduct.cs | ADAPT/ADAPT | source/ADAPT/Products/PackagedProduct.cs | source/ADAPT/Products/PackagedProduct.cs | /*******************************************************************************
* Copyright (C) 2020 AgGateway and ADAPT Contributors
* Copyright (C) 2020 Syngenta
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
*... | /*******************************************************************************
* Copyright (C) 2020 AgGateway and ADAPT Contributors
* Copyright (C) 2020 Syngenta
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
*... | epl-1.0 | C# |
f70eb7d4607fa3aaf4a74a9860d851bc76639aa0 | Update version number | ermshiperete/undisposed-fody,ermshiperete/undisposed-fody | Undisposed/Properties/AssemblyInfo.cs | Undisposed/Properties/AssemblyInfo.cs | // Copyright (c) 2014 Eberhard Beilharz
// This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
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 proje... | // Copyright (c) 2014 Eberhard Beilharz
// This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
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 proje... | mit | C# |
55f510421d2b8330dfb88570149f2232febb2071 | Support Unique frame type | jcmoyer/Yeena | Yeena/PathOfExile/PoEItemFrameType.cs | Yeena/PathOfExile/PoEItemFrameType.cs | // Copyright 2013 J.C. Moyer
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to ... | // Copyright 2013 J.C. Moyer
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to ... | apache-2.0 | C# |
c59be26c15ced5ed713e43f3b4db9d4360ca8e51 | Package Update #CHANGE: Pushed AdamsLair.WinForms 1.1.13 | AdamsLair/winforms | WinForms/Properties/AssemblyInfo.cs | WinForms/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Allgemeine Informationen über eine Assembly werden über die folgenden
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die mit einer Assembly verknüpft sind.
[assembly: A... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Allgemeine Informationen über eine Assembly werden über die folgenden
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die mit einer Assembly verknüpft sind.
[assembly: A... | mit | C# |
3c5b5e38781b3a5abe5eedca03c4df9a284dde15 | Fix ImageView.Image setter | lytico/xwt,mminns/xwt,residuum/xwt,hamekoz/xwt,mminns/xwt,iainx/xwt,steffenWi/xwt,akrisiun/xwt,mono/xwt,directhex/xwt,antmicro/xwt,hwthomas/xwt,cra0zy/xwt,sevoku/xwt,TheBrainTech/xwt | Xwt.Mac/Xwt.Mac/ImageViewBackend.cs | Xwt.Mac/Xwt.Mac/ImageViewBackend.cs | //
// ImageViewBackend.cs
//
// Author:
// Lluis Sanchez <lluis@xamarin.com>
//
// Copyright (c) 2011 Xamarin Inc
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without rest... | //
// ImageViewBackend.cs
//
// Author:
// Lluis Sanchez <lluis@xamarin.com>
//
// Copyright (c) 2011 Xamarin Inc
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without rest... | mit | C# |
287a982b41172ed7eaaf56369282fc95f19860b8 | Change run button color | davidebbo/SimpleWAWS,projectkudu/SimpleWAWS,davidebbo/SimpleWAWS,fashaikh/SimpleWAWS,projectkudu/TryAppService,projectkudu/TryAppService,projectkudu/TryAppService,projectkudu/TryAppService,fashaikh/SimpleWAWS,projectkudu/SimpleWAWS,davidebbo/SimpleWAWS,fashaikh/SimpleWAWS,projectkudu/SimpleWAWS,projectkudu/SimpleWAWS,f... | SimpleWAWS/Views/Home/ShowSite.cshtml | SimpleWAWS/Views/Home/ShowSite.cshtml | @model SimpleWAWS.Site
@{
ViewBag.Title = "Home Page";
}
<div class="jumbotron">
<h1>Your site: <a href="@Model.Url" target="_blank">@Model.Name</a></h1>
<p class="lead">Your temporary site is ready to use. Time before site auto-deletion: @Model.TimeLeftString</p>
<p><a href="@Model.Url" class="btn ... | @model SimpleWAWS.Site
@{
ViewBag.Title = "Home Page";
}
<div class="jumbotron">
<h1>Your site: <a href="@Model.Url" target="_blank">@Model.Name</a></h1>
<p class="lead">Your temporary site is ready to use. Time before site auto-deletion: @Model.TimeLeftString</p>
<p><a href="@Model.Url" class="btn ... | apache-2.0 | C# |
fadcf6285ef1e767a2c99c34d3177e54ba1d6dba | Use semver version number. | dlemstra/OmniKassa | src/OmniKassa/Properties/AssemblyInfo.cs | src/OmniKassa/Properties/AssemblyInfo.cs | // Copyright 2017 Dirk Lemstra (https://github.com/dlemstra/OmniKassa).
// Licensed under the MIT License.
using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyDescription("C# API for OmniKassa")]
[assembly: AssemblyCompany("Dirk Lemstra")]
[assembly: AssemblyConfiguration("Debug")]
[as... | // Copyright 2017 Dirk Lemstra (https://github.com/dlemstra/OmniKassa).
// Licensed under the MIT License.
using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyDescription("C# API for OmniKassa")]
[assembly: AssemblyCompany("Dirk Lemstra")]
[assembly: AssemblyConfiguration("Debug")]
[as... | mit | C# |
b8978eaf57260108c87da2391725f12bb87f1024 | Fix scoreboard sorting | TeamLabyrinth5-Telerik/Labyrinth | Source/Labirynth.Models/Scoreboard.cs | Source/Labirynth.Models/Scoreboard.cs | namespace Labirynth.Models
{
using System;
using System.Collections.Generic;
using System.Linq;
using Labirynth.Models.Interfaces;
public class Scoreboard
{
private List<IPlayer> players = new List<IPlayer>();
public List<IPlayer> Players
{
get
... | namespace Labirynth.Models
{
using System;
using System.Collections.Generic;
using System.Linq;
using Labirynth.Models.Interfaces;
public class Scoreboard
{
private List<IPlayer> players = new List<IPlayer>();
public List<IPlayer> Players
{
get
... | mit | C# |
6985a21f2ce0f800d812bf5535ef3f46c8d60015 | Add OMS pricing tier | dasha91/azure-sdk-for-net,dasha91/azure-sdk-for-net,dasha91/azure-sdk-for-net,felixcho-msft/azure-sdk-for-net,felixcho-msft/azure-sdk-for-net,felixcho-msft/azure-sdk-for-net | src/ResourceManagement/Automation/AutomationManagement/Generated/Models/SkuNameEnum.cs | src/ResourceManagement/Automation/AutomationManagement/Generated/Models/SkuNameEnum.cs | //
// Copyright (c) Microsoft and contributors. 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 requi... | //
// Copyright (c) Microsoft and contributors. 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 requi... | apache-2.0 | C# |
50ed8d4b6cb0728ee03e858a82f70bdaae68f89e | Remove it | sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp,sta/websocket-sharp | websocket-sharp/Server/IWebSocketSession.cs | websocket-sharp/Server/IWebSocketSession.cs | #region License
/*
* IWebSocketSession.cs
*
* The MIT License
*
* Copyright (c) 2013-2018 sta.blockhead
*
* 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, includi... | #region License
/*
* IWebSocketSession.cs
*
* The MIT License
*
* Copyright (c) 2013-2018 sta.blockhead
*
* 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, includi... | mit | C# |
16dc2f6ef50bccada9e9cba2f3e934324204140c | Adjust `TestSceneFailAnimation` to account for initial frequency change | NeoAdonis/osu,peppy/osu,ppy/osu,NeoAdonis/osu,ppy/osu,peppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu | osu.Game.Tests/Visual/Gameplay/TestSceneFailAnimation.cs | osu.Game.Tests/Visual/Gameplay/TestSceneFailAnimation.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using NUnit.Framework;
using osu.Framework.Graphics.Containers;
using osu.Game.Configuration;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Mods;
using o... | // 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 NUnit.Framework;
using osu.Framework.Graphics.Containers;
using osu.Game.Configuration;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Mods;
using o... | mit | C# |
6b08f485b4889daa89b5631475f69b6591a833b5 | fix typo | UselessToucan/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu,2yangk23/osu,EVAST9919/osu,smoogipoo/osu,peppy/osu,ppy/osu,UselessToucan/osu,Drezi126/osu,EVAST9919/osu,smoogipoo/osu,osu-RP/osu-RP,ZLima12/osu,naoey/osu,RedNesto/osu,nyaamara/osu,peppy/osu-new,DrabWeb/osu,smoogipooo/osu,naoey/osu,Nabile-Rahmani/osu,peppy/osu,Dr... | osu.Game/Online/API/Requests/GetBeatmapDetailsRequest.cs | osu.Game/Online/API/Requests/GetBeatmapDetailsRequest.cs | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using Newtonsoft.Json;
using osu.Game.Database;
namespace osu.Game.Online.API.Requests
{
public class GetBeatmapDetailsRequest : APIRequest<GetBeatmapDetai... | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using Newtonsoft.Json;
using osu.Game.Database;
namespace osu.Game.Online.API.Requests
{
public class GetBeatmapDetailsRequest : APIRequest<GetBeatmapDeati... | mit | C# |
57019b872ad395b02dce6c37b65bce5c0308c584 | Add AtataContextBuilder_OnBuilding and AtataContextBuilder_OnBuilding_WithoutDriver tests | YevgeniyShunevych/Atata,atata-framework/atata,YevgeniyShunevych/Atata,atata-framework/atata | src/Atata.Tests/AtataContextBuilderTests.cs | src/Atata.Tests/AtataContextBuilderTests.cs | using System;
using NUnit.Framework;
namespace Atata.Tests
{
public class AtataContextBuilderTests : UITestFixtureBase
{
[Test]
public void AtataContextBuilder_Build_WithoutDriver()
{
InvalidOperationException exception = Assert.Throws<InvalidOperationException>(() =>
... | using System;
using NUnit.Framework;
namespace Atata.Tests
{
public class AtataContextBuilderTests : UITestFixtureBase
{
[Test]
public void AtataContextBuilder_Build_WithoutDriver()
{
InvalidOperationException exception = Assert.Throws<InvalidOperationException>(() =>
... | apache-2.0 | C# |
35bb1b86e73c4ea147f2454aa0284e1c02dd9bdf | Update RazorExtensions.cs (#31029) | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Razor/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/RazorExtensions.cs | src/Razor/Microsoft.AspNetCore.Mvc.Razor.Extensions/src/RazorExtensions.cs | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.AspNetCore.Razor.Language;
using Microsoft.AspNetCore.Razor.Language.Extensions;
using Microsoft.CodeAnalysis.CSharp;
usi... | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.AspNetCore.Razor.Language;
using Microsoft.AspNetCore.Razor.Language.Extensions;
using Microsoft.CodeAnalysis.CSharp;
usi... | apache-2.0 | C# |
f4f7fac189cb0f6b9d70e9d9b022173667b31f76 | Remove extra config param that's not used | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Microsoft.AspNet.Identity.EntityFramework/IdentityEntityFrameworkServices.cs | src/Microsoft.AspNet.Identity.EntityFramework/IdentityEntityFrameworkServices.cs | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.AspNet.Identity.EntityFramework;
using Microsoft.Framework.Configuration;
using Microsoft.Framework.DependencyInjection;
... | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.AspNet.Identity.EntityFramework;
using Microsoft.Framework.Configuration;
using Microsoft.Framework.DependencyInjection;
... | apache-2.0 | C# |
17e0105c2cff5b17aefd5f9b52c1dd29d6b9482c | Fix interaction with popover when textbox is disabled | peppy/osu,peppy/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,ppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu | osu.Game/Screens/Edit/Setup/LabelledTextBoxWithPopover.cs | osu.Game/Screens/Edit/Setup/LabelledTextBoxWithPopover.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.UserInterface;
using osu.Fra... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.UserInterface;
using osu.Fra... | mit | C# |
2fb4a3b3d722594f095c64e84bbe0f19aa7ccd2b | Fix Unable to connect to backend on access denied | linguanostra/ELFinder.Connector.NET,linguanostra/ELFinder.Connector.NET | Core/ELFinder.Connector/Drivers/FileSystem/Extensions/FIleSystemInfoExtensions.cs | Core/ELFinder.Connector/Drivers/FileSystem/Extensions/FIleSystemInfoExtensions.cs | using System.IO;
using System.Linq;
namespace ELFinder.Connector.Drivers.FileSystem.Extensions
{
/// <summary>
/// File system info extensions
/// </summary>
public static class FIleSystemInfoExtensions
{
#region Extension methods
/// <summary>
/// Get visible files in d... | using System.IO;
using System.Linq;
namespace ELFinder.Connector.Drivers.FileSystem.Extensions
{
/// <summary>
/// File system info extensions
/// </summary>
public static class FIleSystemInfoExtensions
{
#region Extension methods
/// <summary>
/// Get visible files in d... | bsd-3-clause | C# |
40279bc46bb2516d45dbf1a6be249d75ebc7c001 | Update #283 - Add raw ado test case to MVC4 project | elkingtonmcb/Glimpse,Glimpse/Glimpse,gabrielweyer/Glimpse,rho24/Glimpse,paynecrl97/Glimpse,SusanaL/Glimpse,Glimpse/Glimpse,flcdrg/Glimpse,sorenhl/Glimpse,rho24/Glimpse,codevlabs/Glimpse,elkingtonmcb/Glimpse,elkingtonmcb/Glimpse,rho24/Glimpse,codevlabs/Glimpse,paynecrl97/Glimpse,gabrielweyer/Glimpse,rho24/Glimpse,Susana... | source/Glimpse.Mvc4.MusicStore.Sample/Controllers/HomeController.cs | source/Glimpse.Mvc4.MusicStore.Sample/Controllers/HomeController.cs | using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Data.Common;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using System.Web;
using System.Web.Mvc;
using MvcMusicStore.Models;
namespace MvcMusicStore.Controllers
{
public class... | using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Web;
using System.Web.Mvc;
using MvcMusicStore.Models;
namespace MvcMusicStore.Controllers
{
public class HomeController : Controller
{
private MusicStoreEntities storeDB = new MusicStoreEntities();
... | apache-2.0 | C# |
433dae9d3999137fedd4d6bfb54e453e8f108ae1 | Update PartialConfigurationServiceCollectionExtensions.cs | tiksn/TIKSN-Framework | TIKSN.Core/DependencyInjection/PartialConfigurationServiceCollectionExtensions.cs | TIKSN.Core/DependencyInjection/PartialConfigurationServiceCollectionExtensions.cs | using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using TIKSN.Configuration;
using TIKSN.Configuration.ValidationStrategy;
using TIKSN.Configuration.Validator;
namespace TIKSN.DependencyInjection
{
public static class PartialConfigurationServiceCollectionExtensions
{
... | using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using TIKSN.Configuration;
using TIKSN.Configuration.ValidationStrategy;
using TIKSN.Configuration.Validator;
namespace TIKSN.DependencyInjection
{
public static class PartialConfigurationServiceCollectionExtensions
{
... | mit | C# |
607abb5541f603ac50c402c4aca8ebdfe5af1f75 | fix webapi routing | dicko2/BlueGreenDeployTestWebApp,dicko2/BlueGreenDeployTestWebApp | Hostsol.Demo.BlueGreenTestWeb/Global.asax.cs | Hostsol.Demo.BlueGreenTestWeb/Global.asax.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using System.Web.Http;
using System.Web.Routing;
using Serilog;
using System.Configuration;
namespace Hostsol.Demo.BlueGreenTestWeb
{
public class Mvc... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using System.Web.Http;
using System.Web.Routing;
using Serilog;
using System.Configuration;
namespace Hostsol.Demo.BlueGreenTestWeb
{
public class Mvc... | mit | C# |
6ba1995eba3c09cfbf2b0d962d02fc9d2106f9d4 | Fix parameter name code completion | mrward/monodevelop-powershell-addin | src/MonoDevelop.PowerShell/MonoDevelop.PowerShell/PowerShellCompletionData.cs | src/MonoDevelop.PowerShell/MonoDevelop.PowerShell/PowerShellCompletionData.cs | //
// PowerShellCompletionData.cs
//
// Author:
// Matt Ward <matt.ward@xamarin.com>
//
// Copyright (c) 2016 Xamarin Inc. (http://xamarin.com)
//
// 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... | //
// PowerShellCompletionData.cs
//
// Author:
// Matt Ward <matt.ward@xamarin.com>
//
// Copyright (c) 2016 Xamarin Inc. (http://xamarin.com)
//
// 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... | mit | C# |
2ca239d5e4f1e6f7352fdb6ff8a762801dcf7f22 | Implement support for multiple sockets for systemd activation (#24118) | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Servers/Kestrel/Core/src/Systemd/KestrelServerOptionsSystemdExtensions.cs | src/Servers/Kestrel/Core/src/Systemd/KestrelServerOptionsSystemdExtensions.cs | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Diagnostics;
using System.Globalization;
using Microsoft.AspNetCore.Server.Kestrel.Core;
namespace Microsoft.AspNetCore.Hos... | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Diagnostics;
using System.Globalization;
using Microsoft.AspNetCore.Server.Kestrel.Core;
namespace Microsoft.AspNetCore.Hos... | apache-2.0 | C# |
695fbedcf110315a408f4e1535be84f1f0f6fcf2 | change assembly description | waltdestler/SharpDX,dazerdude/SharpDX,mrvux/SharpDX,andrewst/SharpDX,mrvux/SharpDX,dazerdude/SharpDX,mrvux/SharpDX,waltdestler/SharpDX,sharpdx/SharpDX,andrewst/SharpDX,dazerdude/SharpDX,sharpdx/SharpDX,andrewst/SharpDX,dazerdude/SharpDX,waltdestler/SharpDX,sharpdx/SharpDX,waltdestler/SharpDX | Source/SharpDX.DirectManipulation/Properties/AssemblyInfo.cs | Source/SharpDX.DirectManipulation/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("SharpDX.DirectManipulation")]
[assembly: AssemblyProduct("SharpDX.DirectManipul... | 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("SharpDX.DirectManipulation")]
[assembly: AssemblyDescription("")]
[assembly: As... | mit | C# |
3fb7881fcf678ac2c832d0255222caaed10ee862 | modify exiry trigger to remove underlying batching which is timing out since moving the logic to the job | SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice | src/SFA.DAS.EmployerFinance.Jobs/ScheduledJobs/ExpireFundsJob.cs | src/SFA.DAS.EmployerFinance.Jobs/ScheduledJobs/ExpireFundsJob.cs | using System.Threading.Tasks;
using Microsoft.Azure.WebJobs;
using Microsoft.Extensions.Logging;
using NServiceBus;
using SFA.DAS.EmployerFinance.Data;
using SFA.DAS.EmployerFinance.Interfaces;
using SFA.DAS.EmployerFinance.Messages.Commands;
namespace SFA.DAS.EmployerFinance.Jobs.ScheduledJobs
{
public class Exp... | using System.Linq;
using System.Threading.Tasks;
using Microsoft.Azure.WebJobs;
using Microsoft.Extensions.Logging;
using NServiceBus;
using SFA.DAS.EmployerFinance.Data;
using SFA.DAS.EmployerFinance.Interfaces;
using SFA.DAS.EmployerFinance.Messages.Commands;
namespace SFA.DAS.EmployerFinance.Jobs.ScheduledJobs
{
... | mit | C# |
b649bf468beb31867af5b8493f0c2c94a17f73e2 | Fix test code build. | msgpack/msgpack-cli,msgpack/msgpack-cli | test/MsgPack.UnitTest.Unity.Il2cpp.Full/Assets/UnitTests/SceneItems/Result.cs | test/MsgPack.UnitTest.Unity.Il2cpp.Full/Assets/UnitTests/SceneItems/Result.cs | #if !UNITY_METRO && !UNITY_4_5
using System;
using UnityEngine;
using UnityEngine.UI;
using UniRx;
// This file is borrowed from UniRX (https://github.com/neuecc/UniRx/blob/master/Assets/ScheneItems/Result.cs)
namespace MsgPack
{
public class Result : PresenterBase
{
public UnityEngine.UI.Text text;... | #if !UNITY_METRO && !UNITY_4_5
using System;
using UnityEngine;
using UnityEngine.UI;
using UniRx;
// This file is borrowed from UniRX (https://github.com/neuecc/UniRx/blob/master/Assets/ScheneItems/Result.cs)
namespace MsgPack
{
public class Result : PresenterBase
{
public UnityEngine.UI.Text text;... | apache-2.0 | C# |
563a0903ea2582c4b0df983b31f64c862a30eb99 | tweak formatting in targets | adamralph/xbehave.net | targets/Program.cs | targets/Program.cs | using System;
using System.Threading.Tasks;
using SimpleExec;
using static Bullseye.Targets;
using static SimpleExec.Command;
internal class Program
{
public static Task Main(string[] args)
{
Target("build", () => RunAsync("dotnet", $"build --configuration Release --nologo --verbosity quiet")... | using System;
using System.Threading.Tasks;
using SimpleExec;
using static Bullseye.Targets;
using static SimpleExec.Command;
internal class Program
{
public static Task Main(string[] args)
{
Target("build", () => RunAsync("dotnet", $"build --configuration Release --nologo --verbosity quiet")... | mit | C# |
1e5791599cb711f8fb6b7b48698d2789c5643ef3 | Split keywords into own check (#520) | planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin | src/Firehose.Web/Extensions/SyndicationItemExtensions.cs | src/Firehose.Web/Extensions/SyndicationItemExtensions.cs | using System.Linq;
using System.ServiceModel.Syndication;
namespace Firehose.Web.Extensions
{
public static class SyndicationItemExtensions
{
public static bool ApplyDefaultFilter(this SyndicationItem item)
{
var hasXamarinCategory = false;
var hasXamarinKeywords = false... | using System.Linq;
using System.ServiceModel.Syndication;
namespace Firehose.Web.Extensions
{
public static class SyndicationItemExtensions
{
public static bool ApplyDefaultFilter(this SyndicationItem item)
{
var hasXamarinCategory = false;
if (item.Categories.Count > ... | mit | C# |
ed981afc8bb238255a14bded84bdf4eca9bffa10 | Use the tel uri in windows store for phone calls | MatthewSannes/MvvmCross-Plugins,martijn00/MvvmCross-Plugins,lothrop/MvvmCross-Plugins,Didux/MvvmCross-Plugins | Cirrious/PhoneCall/Cirrious.MvvmCross.Plugins.PhoneCall.WindowsStore/MvxPhoneCallTask.cs | Cirrious/PhoneCall/Cirrious.MvvmCross.Plugins.PhoneCall.WindowsStore/MvxPhoneCallTask.cs | // MvxPhoneCallTask.cs
// (c) Copyright Cirrious Ltd. http://www.cirrious.com
// MvvmCross is licensed using Microsoft Public License (Ms-PL)
// Contributions and inspirations noted in readme.md and license.txt
//
// Project Lead - Stuart Lodge, @slodge, me@slodge.com
using System;
using Windows.System;
namespace Ci... | // MvxPhoneCallTask.cs
// (c) Copyright Cirrious Ltd. http://www.cirrious.com
// MvvmCross is licensed using Microsoft Public License (Ms-PL)
// Contributions and inspirations noted in readme.md and license.txt
//
// Project Lead - Stuart Lodge, @slodge, me@slodge.com
using System;
using Windows.System;
namespace Ci... | mit | C# |
a41e2d100208b7ff32f15ae98ce194ba3febb945 | Fix typos in doc comment | space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14-content,space-wizards/space-station-14 | Content.Shared/Interfaces/GameObjects/Components/Interaction/IInteractUsing.cs | Content.Shared/Interfaces/GameObjects/Components/Interaction/IInteractUsing.cs | using System;
using System.Collections.Generic;
using JetBrains.Annotations;
using Robust.Shared.GameObjects;
using Robust.Shared.Interfaces.GameObjects;
using Robust.Shared.Map;
namespace Content.Shared.Interfaces.GameObjects.Components
{
/// <summary>
/// This interface gives components behavior when being c... | using System;
using System.Collections.Generic;
using JetBrains.Annotations;
using Robust.Shared.GameObjects;
using Robust.Shared.Interfaces.GameObjects;
using Robust.Shared.Map;
namespace Content.Shared.Interfaces.GameObjects.Components
{
/// <summary>
/// This interface gives components behavior when being c... | mit | C# |
859493b8ebcebf726519f9a6d4057b201faf785e | Update to subclass BusinessRuleAsync | JasonBock/csla,MarimerLLC/csla,MarimerLLC/csla,MarimerLLC/csla,JasonBock/csla,rockfordlhotka/csla,rockfordlhotka/csla,rockfordlhotka/csla,JasonBock/csla | Samples/ProjectTracker/ProjectTracker.BusinessLibrary.Netstandard/ValidRole.cs | Samples/ProjectTracker/ProjectTracker.BusinessLibrary.Netstandard/ValidRole.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Csla.Rules;
namespace ProjectTracker.Library
{
/// <summary>
/// Ensure the Role property value exists
/// in RoleList
/// </summary>
public class ValidRole : BusinessRuleAsync
{
p... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Csla.Rules;
namespace ProjectTracker.Library
{
/// <summary>
/// Ensure the Role property value exists
/// in RoleList
/// </summary>
public class ValidRole : BusinessRule
{
public ValidRole(Csla.Core.IProperty... | mit | C# |
c0d98126ae81ada2534fe7e9a30013e4bf3ee391 | Update AssemblyInfo.cs | atpham256/azure-powershell,AzureAutomationTeam/azure-powershell,TaraMeyer/azure-powershell,alfantp/azure-powershell,shuagarw/azure-powershell,arcadiahlyy/azure-powershell,zhencui/azure-powershell,pankajsn/azure-powershell,dulems/azure-powershell,DeepakRajendranMsft/azure-powershell,atpham256/azure-powershell,shuagarw/a... | src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/AssemblyInfo.cs | src/ResourceManager/SiteRecovery/Commands.SiteRecovery/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("Mi... | 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("Mi... | apache-2.0 | C# |
73a2f7b6867d5fd7e17526c0c8ea67d8bc81bdf9 | fix code. | LeonAkasaka/Levolution.Reversi | Levolution.Reversi.Games.Unity/Assets/Scripts/TableView.cs | Levolution.Reversi.Games.Unity/Assets/Scripts/TableView.cs | using Levolution.Reversi.Records;
using System.Collections.Generic;
using UnityEngine;
namespace Levolution.Reversi.Components
{
public class TableView : MonoBehaviour
{
#region SerializeField
[SerializeField]
private TableCellView _cellViewPrefab = null;
[SerializeField]
... | using Levolution.Reversi.Records;
using UnityEngine;
using System.Linq;
using System.Collections.Generic;
namespace Levolution.Reversi.Components
{
public class TableView : MonoBehaviour
{
#region SerializeField
[SerializeField]
private TableCellView _cellViewPrefab = null;
[... | apache-2.0 | C# |
9c82fb4058c18e573c68cc4de86f94778adf1479 | Allow option to prevent system checkers from being auto registered | bronumski/HealthNet,bronumski/HealthNet,bronumski/HealthNet | src/HealthNet.AspNetCore/HealthNetMiddlewareExtensions.cs | src/HealthNet.AspNetCore/HealthNetMiddlewareExtensions.cs | using System;
using System.Linq;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
namespace HealthNet.AspNetCore
{
public static class HealthNetMiddlewareExtensions
{
private static readonly Type VersionProviderType = typeof(IVersionProvider);
private static readonly Typ... | using System;
using System.Linq;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
namespace HealthNet.AspNetCore
{
public static class HealthNetMiddlewareExtensions
{
private static readonly Type VersionProviderType = typeof(IVersionProvider);
private static readonly Typ... | apache-2.0 | C# |
f4875536a4cd6fe6c0f55fac42f7292c5ee7d56b | stop the listener when we break | brandonprry/gray_hat_csharp_code | ch5_connect_back_binds/bind/Main.cs | ch5_connect_back_binds/bind/Main.cs | using System;
using System.Net.Sockets;
using System.Net;
using System.IO;
using System.Text;
using System.Diagnostics;
namespace bind
{
class MainClass
{
public static void Main (string[] args)
{
int port = int.Parse (args [0]);
TcpListener listener = new TcpListener (IPAddress.Any, port);
while (true... | using System;
using System.Net.Sockets;
using System.Net;
using System.IO;
using System.Text;
using System.Diagnostics;
namespace bind
{
class MainClass
{
public static void Main (string[] args)
{
int port = int.Parse (args [0]);
TcpListener listener = new TcpListener (IPAddress.Any, port);
try {
l... | bsd-3-clause | C# |
b479d8a60ed45bd794ed1ba38bcf4a3ba73d70ee | Update SearchParameters.cs | XRSHEERAN/MetaMorpheus,lonelu/MetaMorpheus,lschaffer2/MetaMorpheus,zrolfs/MetaMorpheus,smith-chem-wisc/MetaMorpheus,rmillikin/MetaMorpheus | TaskLayer/TaskParameters/SearchParameters.cs | TaskLayer/TaskParameters/SearchParameters.cs | using System.Linq;
namespace EngineLayer
{
public class SearchParameters
{
#region Public Constructors
public SearchParameters()
{
DisposeOfFileWhenDone = true;
AddCompIons = false;
DoParsimony = false;
NoOneHitWonders = false;
... | using System.Linq;
namespace EngineLayer
{
public class SearchParameters
{
#region Public Constructors
public SearchParameters()
{
DisposeOfFileWhenDone = true;
AddCompIons = false;
DoParsimony = false;
NoOneHitWonders = false;
... | mit | C# |
81521ee0cd3104e52cdf20c44e0bd1a76fd8cca5 | add SuppressBecause CA1020 | OBeautifulCode/OBeautifulCode.Build | Analyzers/analyzers/SuppressBecause.cs | Analyzers/analyzers/SuppressBecause.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="SuppressBecause.cs" company="OBeautifulCode">
// Copyright (c) OBeautifulCode 2018. All rights reserved.
// </copyright>
// <auto-generated>
// Sourced from NuGet package. Wil... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="SuppressBecause.cs" company="OBeautifulCode">
// Copyright (c) OBeautifulCode 2018. All rights reserved.
// </copyright>
// <auto-generated>
// Sourced from NuGet package. Wil... | mit | C# |
00a243f7f26e77e5987e8b798419f1fe0d4323ef | Add license header | naoey/osu,ZLima12/osu,peppy/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,DrabWeb/osu,peppy/osu,2yangk23/osu,UselessToucan/osu,UselessToucan/osu,ppy/osu,DrabWeb/osu,UselessToucan/osu,ppy/osu,EVAST9919/osu,EVAST9919/osu,2yangk23/osu,ppy/osu,naoey/osu,NeoAdonis/osu,DrabWeb/osu,ZLima12/osu,naoey/osu,smoogipoo/osu,peppy/os... | osu.Game.Rulesets.Taiko/Judgements/TaikoDrumRollJudgement.cs | osu.Game.Rulesets.Taiko/Judgements/TaikoDrumRollJudgement.cs | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Taiko.Judgements
{
class TaikoDrumRollJudgement : TaikoJudgement
{
public override bool Af... | using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Taiko.Judgements
{
class TaikoDrumRollJudgement : TaikoJudgement
{
public override bool AffectsCombo => false;
protected override int NumericResultFor(HitResult result) => 0;
}
}
| mit | C# |
49193a2703edb7c5d35b04d0c206031e2a2708f9 | Rename the setting label | ppy/osu,2yangk23/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,2yangk23/osu,EVAST9919/osu,EVAST9919/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,smoogipooo/osu,ppy/osu,johnneijzen/osu,UselessToucan/osu,ZLima12/osu,smoogipoo/osu,ZLima12/osu,peppy/osu-new,johnneijzen/osu,ppy/osu,peppy/osu,smoogipoo/osu,peppy/osu,Useless... | osu.Game/Overlays/Settings/Sections/Gameplay/ModsSettings.cs | osu.Game/Overlays/Settings/Sections/Gameplay/ModsSettings.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.Game.Configuration;
namespace osu.Game.Overlays.Settings.Sections.Gameplay
{
public class ModsSettings : SettingsSubsectio... | // 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.Game.Configuration;
namespace osu.Game.Overlays.Settings.Sections.Gameplay
{
public class ModsSettings : SettingsSubsectio... | mit | C# |
a4af455849222874ebedc1d1f9db2ea79f48c0d1 | Fix typo | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/Hwi/Models/HwiEnumerateEntry.cs | WalletWasabi/Hwi/Models/HwiEnumerateEntry.cs | using NBitcoin;
using System;
using WalletWasabi.Hwi.Exceptions;
namespace WalletWasabi.Hwi.Models
{
public class HwiEnumerateEntry
{
public HwiEnumerateEntry(
HardwareWalletModels model,
string path,
string serialNumber,
HDFingerprint? fingerprint,
bool? needsPinSent,
bool? needsPassphraseSent,
... | using NBitcoin;
using System;
using WalletWasabi.Hwi.Exceptions;
namespace WalletWasabi.Hwi.Models
{
public class HwiEnumerateEntry
{
public HwiEnumerateEntry(
HardwareWalletModels model,
string path,
string serialNumber,
HDFingerprint? fingerprint,
bool? needsPinSent,
bool? needsPassphraseSent,
... | mit | C# |
e43cdc5e25a19a1c9701b7c00ab56ee0ea87eb92 | Bump version to v1.5.0 | mdesalvo/RDFSharp | RDFSharp/Properties/AssemblyInfo.cs | RDFSharp/Properties/AssemblyInfo.cs | /*
Copyright 2012-2019 Marco De Salvo
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 ... | /*
Copyright 2012-2019 Marco De Salvo
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 ... | apache-2.0 | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.