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 |
|---|---|---|---|---|---|---|---|---|
5d36a8c037cd83488acc8c98f8b4e0dc7ae74af0 | Fix example of strings exercise | exercism/xcsharp,exercism/xcsharp | exercises/concept/strings/.meta/Example.cs | exercises/concept/strings/.meta/Example.cs | static class LogLine
{
public static string Message(string logLine)
{
return logLine.Substring(logLine.IndexOf(":") + 1).Trim();
}
public static string LogLevel(string logLine)
{
return logLine.Substring(1, logLine.IndexOf("]") - 1).ToLower();
}
public static string Reforma... | static class LogLine
{
public static string Message(string logLine)
{
return logLine.Substring(logLine.IndexOf(":") + 1).Trim();
}
public static string LogLevel(string logLine)
{
return logLine.Substring(1, (logLine.IndexOf("]") - 1).ToLower();
}
public static string Reform... | mit | C# |
3962ddadab85b7d4c3d5086e9ed18b54051c3c04 | clone pb fix | Terradue/DotNetOpenSearch | Terradue.OpenSearch/Terradue/OpenSearch/Response/AtomOpenSearchResponse.cs | Terradue.OpenSearch/Terradue/OpenSearch/Response/AtomOpenSearchResponse.cs | //
// AtomOpenSearchResponse.cs
//
// Author:
// Emmanuel Mathot <emmanuel.mathot@terradue.com>
//
// Copyright (c) 2014 Terradue
using System;
using System.Collections.Specialized;
using System.Threading;
using Terradue.ServiceModel.Syndication;
using System.Collections.Generic;
using System.IO;
using System... | //
// AtomOpenSearchResponse.cs
//
// Author:
// Emmanuel Mathot <emmanuel.mathot@terradue.com>
//
// Copyright (c) 2014 Terradue
using System;
using System.Collections.Specialized;
using System.Threading;
using Terradue.ServiceModel.Syndication;
using System.Collections.Generic;
using System.IO;
using System... | agpl-3.0 | C# |
8d99bfb5f477e5c37de9d785b5cb588d66165a55 | Fix version to 0.2 | demiurghg/FusionEngine,demiurghg/FusionEngine,demiurghg/FusionEngine | Fusion/Properties/AssemblyInfo.cs | Fusion/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( "F... | 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( "F... | mit | C# |
73abaa98e5478af223a63f46dc700e07a9513564 | remove ToString override forcing from Result | acple/ParsecSharp | ParsecSharp/Core/Result/Result.cs | ParsecSharp/Core/Result/Result.cs | using System;
namespace ParsecSharp
{
public abstract class Result<TToken, T>
{
public abstract T Value { get; }
protected IParsecStateStream<TToken> Rest { get; }
protected Result(IParsecStateStream<TToken> state)
{
this.Rest = state;
}
internal a... | using System;
namespace ParsecSharp
{
public abstract class Result<TToken, T>
{
public abstract T Value { get; }
protected IParsecStateStream<TToken> Rest { get; }
protected Result(IParsecStateStream<TToken> state)
{
this.Rest = state;
}
internal a... | mit | C# |
89f8675875f1e6c352a0b6ebd95cda30b631d66a | Correct private field name. | baks/code-cracker,andrecarlucci/code-cracker,GuilhermeSa/code-cracker,code-cracker/code-cracker,adraut/code-cracker,AlbertoMonteiro/code-cracker,kindermannhubert/code-cracker,eriawan/code-cracker,akamud/code-cracker,thomaslevesque/code-cracker,jhancock93/code-cracker,thorgeirk11/code-cracker,ElemarJR/code-cracker,jwool... | src/CSharp/CodeCracker/Extensions/CSharpGeneratedCodeAnalysisExtensions.cs | src/CSharp/CodeCracker/Extensions/CSharpGeneratedCodeAnalysisExtensions.cs | using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Diagnostics;
using System.Linq;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.CSharp;
namespace CodeCracker
{
public static class CSharpGeneratedCodeAnalysisExtensions
{
public static bool IsGenerated(this SyntaxNode... | using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Diagnostics;
using System.Linq;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.CSharp;
namespace CodeCracker
{
public static class CSharpGeneratedCodeAnalysisExtensions
{
public static bool IsGenerated(this SyntaxNode... | apache-2.0 | C# |
fb1906e2bad0727c89a6ee20ef05105adef31e61 | Fix DebuggerDisplay for GraphQLFragmentDefinition (#249) | graphql-dotnet/parser | src/GraphQLParser/AST/Definitions/GraphQLFragmentDefinition.cs | src/GraphQLParser/AST/Definitions/GraphQLFragmentDefinition.cs | using System.Diagnostics;
namespace GraphQLParser.AST;
/// <summary>
/// AST node for <see cref="ASTNodeKind.FragmentDefinition"/>.
/// </summary>
[DebuggerDisplay("GraphQLFragmentDefinition: {FragmentName.Name.StringValue}")]
public class GraphQLFragmentDefinition : GraphQLExecutableDefinition
{
/// <inheritdoc/... | using System.Diagnostics;
namespace GraphQLParser.AST;
/// <summary>
/// AST node for <see cref="ASTNodeKind.FragmentDefinition"/>.
/// </summary>
[DebuggerDisplay("GraphQLFragmentDefinition: {Name}")]
public class GraphQLFragmentDefinition : GraphQLExecutableDefinition
{
/// <inheritdoc/>
public override AST... | mit | C# |
5976e8bfeb6142583fdf1422d2902356055a51f7 | Use new Process interface in tests | lou1306/CIV,lou1306/CIV | CIV.Test/Common.cs | CIV.Test/Common.cs | using System;
using System.Collections.Generic;
using CIV.Ccs;
using CIV.Interfaces;
using Moq;
namespace CIV.Test
{
public static class Common
{
/// <summary>
/// Setup a mock process that can only do the given action.
/// </summary>
/// <returns>The mock process.</returns>
... | using System;
using System.Collections.Generic;
using CIV.Ccs;
using CIV.Interfaces;
using Moq;
namespace CIV.Test
{
public static class Common
{
/// <summary>
/// Setup a mock process that can only do the given action.
/// </summary>
/// <returns>The mock process.</returns>
... | mit | C# |
aa4489a98f00250efedfc5023cf22cafbeceea0c | Use BenchmarkRunner | martincostello/project-euler | tests/ProjectEuler.Benchmarks/Program.cs | tests/ProjectEuler.Benchmarks/Program.cs | // Copyright (c) Martin Costello, 2015. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
namespace MartinCostello.ProjectEuler.Benchmarks
{
using BenchmarkDotNet.Running;
/// <summary>
/// A console application that runs ... | // Copyright (c) Martin Costello, 2015. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
namespace MartinCostello.ProjectEuler.Benchmarks
{
using BenchmarkDotNet.Running;
/// <summary>
/// A console application that runs ... | apache-2.0 | C# |
789006d97fc24883c32042151447d5102103523a | Update NeilFifteen.cs | planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell | src/Firehose.Web/Authors/NeilFifteen.cs | src/Firehose.Web/Authors/NeilFifteen.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class NeilFifteen : IAmACommunityMember
{
public string FirstName => "Neil";
public string LastN... | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class NeilFifteen : IAmACommunityMember
{
public string FirstName => "Neil";
public string LastN... | mit | C# |
d9550fe606affedef1afba8df3ebc5925a4634fa | Drop unused "Attribute" | stormleoxia/xsp,stormleoxia/xsp,stormleoxia/xsp,murador/xsp,arthot/xsp,stormleoxia/xsp,arthot/xsp,murador/xsp,murador/xsp,arthot/xsp,murador/xsp,arthot/xsp | src/Mono.WebServer.Fpm/SocketPassing.cs | src/Mono.WebServer.Fpm/SocketPassing.cs | using System;
using System.IO;
using System.Net.Sockets;
using System.Runtime.InteropServices;
using Mono.Unix;
namespace Mono.WebServer.Fpm {
public static class SocketPassing
{
public static void SendTo (Socket connection, IntPtr passing)
{
send_fd (connection.Handle, passing);
}
public static Stream R... | using System;
using System.IO;
using System.Net.Sockets;
using System.Runtime.InteropServices;
using Mono.Unix;
namespace Mono.WebServer.Fpm {
public static class SocketPassing
{
public static void SendTo (Socket connection, IntPtr passing)
{
send_fd (connection.Handle, passing);
}
public static Stream R... | mit | C# |
9000e50731c04d2ec227964bb3fa3bb6a22cf57b | Fix failing test. Replace company number with no information with one that has | LiberisLabs/CompaniesHouse.NET,kevbite/CompaniesHouse.NET | src/CompaniesHouse.IntegrationTests/Tests/CompanyFilingHistoryTests/CompanyFilingHistoryTestsValid.cs | src/CompaniesHouse.IntegrationTests/Tests/CompanyFilingHistoryTests/CompanyFilingHistoryTestsValid.cs | using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using CompaniesHouse.Response.CompanyFiling;
using NUnit.Framework;
namespace CompaniesHouse.IntegrationTests.Tests.CompanyFilingHistoryTests
{
[TestFixtureSource(nameof(TestCases))]
public class CompanyFilingHistoryTestsValid :... | using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using CompaniesHouse.Response.CompanyFiling;
using NUnit.Framework;
namespace CompaniesHouse.IntegrationTests.Tests.CompanyFilingHistoryTests
{
[TestFixtureSource(nameof(TestCases))]
public class CompanyFilingHistoryTestsValid :... | mit | C# |
12fe58f8dde0ec2da1903a1e039ddfd0a9b92f2e | add Debug to request model | SnapMD/connectedcare-sdk,dhawalharsora/connectedcare-sdk | SnapMD.VirtualCare.ApiModels/Rules/RegistrationAvailabilityRequest.cs | SnapMD.VirtualCare.ApiModels/Rules/RegistrationAvailabilityRequest.cs | namespace SnapMD.VirtualCare.ApiModels.Rules
{
/// <summary>
/// Request model for RegistrationAvailability
/// </summary>
public class RegistrationAvailabilityRequest
{
/// <summary>
/// Gets or sets the country.
/// </summary>
/// <value>
/// The country.
... | namespace SnapMD.VirtualCare.ApiModels.Rules
{
/// <summary>
/// Request model for RegistrationAvailability
/// </summary>
public class RegistrationAvailabilityRequest
{
/// <summary>
/// Gets or sets the country.
/// </summary>
/// <value>
/// The country.
... | apache-2.0 | C# |
9109758ed0ed1586900fb0b55790579a781e441b | Update EllipseDrawNode.cs | wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D | src/Core2D/Modules/Renderer/SkiaSharp/Nodes/EllipseDrawNode.cs | src/Core2D/Modules/Renderer/SkiaSharp/Nodes/EllipseDrawNode.cs | #nullable enable
using Core2D.Model.Renderer;
using Core2D.Model.Renderer.Nodes;
using Core2D.ViewModels.Shapes;
using Core2D.ViewModels.Style;
using SkiaSharp;
using Core2D.Spatial;
namespace Core2D.Modules.Renderer.SkiaSharp.Nodes;
internal class EllipseDrawNode : DrawNode, IEllipseDrawNode
{
public EllipseSha... | #nullable enable
using Core2D.Model.Renderer;
using Core2D.Model.Renderer.Nodes;
using Core2D.ViewModels.Shapes;
using Core2D.ViewModels.Style;
using SkiaSharp;
using Core2D.Spatial;
namespace Core2D.Modules.Renderer.SkiaSharp.Nodes;
internal class EllipseDrawNode : DrawNode, IEllipseDrawNode
{
public EllipseSha... | mit | C# |
1273be73d1f5d5059d3048e5f36cb2b2ed758c85 | Fix incorrect row type. | paulyoder/LinqToExcel | src/LinqToExcel.Tests/PersistentConnection_IntegrationTests.cs | src/LinqToExcel.Tests/PersistentConnection_IntegrationTests.cs | using System;
using System.IO;
using System.Linq;
using NUnit.Framework;
namespace LinqToExcel.Tests
{
[Author("Andrew Corkery", "andrew.corkery@gmail.com")]
[Category("Integration")]
[TestFixture]
public class PersistentConnection_IntegrationTests
{
private IExcelQueryFactory _factory;
[OneTimeSetUp]... | using System;
using System.IO;
using System.Linq;
using NUnit.Framework;
namespace LinqToExcel.Tests
{
[Author("Andrew Corkery", "andrew.corkery@gmail.com")]
[Category("Integration")]
[TestFixture]
public class PersistentConnection_IntegrationTests
{
private IExcelQueryFactory _factory;
[OneTimeSetUp]... | mit | C# |
0a550a23091095e98b778ef09987043f8ccc1ff9 | Add Link method to compare string with wildcards | witoong623/TirkxDownloader,witoong623/TirkxDownloader | Framework/Extension.cs | Framework/Extension.cs | using System;
using System.Collections.Generic;
using System.Net;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
namespace TirkxDownloader.Framework
{
public static class Extension
{
public static async Task<HttpWebResponse> GetResponseAsync(this HttpWebReq... | using System;
using System.Collections.Generic;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
namespace TirkxDownloader.Framework
{
public static class Extension
{
public static async Task<HttpWebResponse> GetResponseAsync(this HttpWebRequest request, CancellationToken ct)
... | mit | C# |
d37f9a16178c118074b88ee1facf04645d67d853 | Modify OperationsClientPartial to reflect codegen changes | chrisdunelm/google-cloud-dotnet,evildour/google-cloud-dotnet,benwulfe/google-cloud-dotnet,jskeet/google-cloud-dotnet,iantalarico/google-cloud-dotnet,googleapis/google-cloud-dotnet,evildour/google-cloud-dotnet,jskeet/google-cloud-dotnet,iantalarico/google-cloud-dotnet,chrisdunelm/google-cloud-dotnet,benwulfe/google-clou... | apis/Google.LongRunning/Google.LongRunning/OperationsClientPartial.cs | apis/Google.LongRunning/Google.LongRunning/OperationsClientPartial.cs | // Copyright 2016 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicabl... | // Copyright 2016 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicabl... | apache-2.0 | C# |
d9ca36843489e3035a08b47aac1e7563d20e8ed3 | Build fix. | Squidex/squidex,Squidex/squidex,Squidex/squidex,Squidex/squidex,Squidex/squidex | backend/tests/Squidex.Infrastructure.Tests/Orleans/AsyncLocalTests.cs | backend/tests/Squidex.Infrastructure.Tests/Orleans/AsyncLocalTests.cs | // ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschraenkt)
// All rights reserved. Licensed under the MIT license.
// ===========================... | // ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschraenkt)
// All rights reserved. Licensed under the MIT license.
// ===========================... | mit | C# |
9efd12da93d7a47050715fe7859d86ac6559ba5a | Fix unit tests on Unix | DustinCampbell/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn,DustinCampbell/omnisharp-roslyn | tests/OmniSharp.MSBuild.Tests/ProjectFileInfoTests.cs | tests/OmniSharp.MSBuild.Tests/ProjectFileInfoTests.cs | using System.IO;
using Microsoft.Extensions.Logging;
using OmniSharp.MSBuild.ProjectFile;
using TestUtility;
using Xunit;
using Xunit.Abstractions;
namespace OmniSharp.MSBuild.Tests
{
public class ProjectFileInfoTests
{
private readonly TestAssets _testAssets;
private readonly ILogger _logger;... | using System.IO;
using Microsoft.Extensions.Logging;
using OmniSharp.MSBuild.ProjectFile;
using TestUtility;
using Xunit;
using Xunit.Abstractions;
namespace OmniSharp.MSBuild.Tests
{
public class ProjectFileInfoTests
{
private readonly TestAssets _testAssets;
private readonly ILogger _logger;... | mit | C# |
ae1436ad3b314432923b3e18048d99ce27338681 | Add parameter for a REQUEST type API Gateway Custom Authorizer | thedevopsmachine/aws-lambda-dotnet,thedevopsmachine/aws-lambda-dotnet,thedevopsmachine/aws-lambda-dotnet,thedevopsmachine/aws-lambda-dotnet | Libraries/src/Amazon.Lambda.APIGatewayEvents/APIGatewayCustomAuthorizerRequest.cs | Libraries/src/Amazon.Lambda.APIGatewayEvents/APIGatewayCustomAuthorizerRequest.cs | using System.Collections.Generic;
namespace Amazon.Lambda.APIGatewayEvents
{
/// <summary>
/// For requests coming in to a custom API Gateway authorizer function.
/// </summary>
public class APIGatewayCustomAuthorizerRequest
{
/// <summary>
/// Gets or sets the 'type' property.
... | namespace Amazon.Lambda.APIGatewayEvents
{
/// <summary>
/// For requests coming in to a custom API Gateway authorizer function.
/// </summary>
public class APIGatewayCustomAuthorizerRequest
{
/// <summary>
/// Gets or sets the 'type' property.
/// </summary>
public ... | apache-2.0 | C# |
aeb33f4a2d99880721b5007e61f140635da7f939 | fix misleading variable name | explunit/saml-samples | saml-samples/Program.cs | saml-samples/Program.cs | using System;
using System.IdentityModel.Tokens;
using System.IO;
using System.Security.Cryptography.X509Certificates;
namespace saml_samples
{
class Program
{
static void Main( string[] args )
{
var response =
@"<saml2p:Response xmlns:saml2p=""urn:oasis:names:tc:SAML:2.0:protocol""
xmlns:saml... | using System;
using System.IdentityModel.Tokens;
using System.IO;
using System.Security.Cryptography.X509Certificates;
namespace saml_samples
{
class Program
{
static void Main( string[] args )
{
var response =
@"<saml2p:Response xmlns:saml2p=""urn:oasis:names:tc:SAML:2.0:protocol""
xmlns:saml... | mit | C# |
ae442ecb3fa52e58001acbfe481fe2e5c8841258 | Update file version to 2.2.1.5 | JKennedy24/Xamarin.Forms.GoogleMaps,JKennedy24/Xamarin.Forms.GoogleMaps,amay077/Xamarin.Forms.GoogleMaps | Xamarin.Forms.GoogleMaps/Xamarin.Forms.GoogleMaps/Internals/ProductInformation.cs | Xamarin.Forms.GoogleMaps/Xamarin.Forms.GoogleMaps/Internals/ProductInformation.cs | using System;
namespace Xamarin.Forms.GoogleMaps.Internals
{
internal class ProductInformation
{
public const string Author = "amay077";
public const string Name = "Xamarin.Forms.GoogleMaps";
public const string Copyright = "Copyright © amay077. 2016 - 2017";
public const string... | using System;
namespace Xamarin.Forms.GoogleMaps.Internals
{
internal class ProductInformation
{
public const string Author = "amay077";
public const string Name = "Xamarin.Forms.GoogleMaps";
public const string Copyright = "Copyright © amay077. 2016 - 2017";
public const string... | mit | C# |
61778232d8b76436458a87cd60a18d2443159d6d | Rewrite inline comment | 2yangk23/osu,NeoAdonis/osu,ppy/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,EVAST9919/osu,smoogipoo/osu,smoogipooo/osu,peppy/osu,EVAST9919/osu,johnneijzen/osu,UselessToucan/osu,2yangk23/osu,peppy/osu-new,NeoAdonis/osu,johnneijzen/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu | osu.Game/Skinning/LegacyBeatmapSkin.cs | osu.Game/Skinning/LegacyBeatmapSkin.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.Audio;
using osu.Framework.IO.Stores;
using osu.Game.Beatmaps;
namespace osu.Game.Skinning
{
public class LegacyBeatmapSkin : LegacySkin
{
... | // 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.Audio;
using osu.Framework.IO.Stores;
using osu.Game.Beatmaps;
namespace osu.Game.Skinning
{
public class LegacyBeatmapSkin : LegacySkin
{
... | mit | C# |
c34465fd5f7ee63992bd3c9726ebc716fc6f623f | Fix wrong variable names | insthync/LiteNetLibManager,insthync/LiteNetLibManager | Scripts/Transports/MixTransport/MixTransportFactory.cs | Scripts/Transports/MixTransport/MixTransportFactory.cs | using UnityEngine;
namespace LiteNetLibManager
{
public class MixTransportFactory : BaseTransportFactory
{
public override bool CanUseWithWebGL { get { return true; } }
public string connectKey = "SampleConnectKey";
public int webSocketPortOffset = 100;
public bool webSocketSec... | using UnityEngine;
namespace LiteNetLibManager
{
public class MixTransportFactory : BaseTransportFactory
{
public override bool CanUseWithWebGL { get { return true; } }
public string connectKey = "SampleConnectKey";
public int webSocketPortOffset = 100;
public bool webScoketSec... | mit | C# |
2cb49e60ccd3e07ca65f086cb92cace6d643b7d8 | add ThemeYearCount indexes | zmira/abremir.AllMyBricks | abremir.AllMyBricks.Data/Services/RepositoryService.cs | abremir.AllMyBricks.Data/Services/RepositoryService.cs | using abremir.AllMyBricks.Data.Configuration;
using abremir.AllMyBricks.Data.Interfaces;
using abremir.AllMyBricks.Data.Models;
using abremir.AllMyBricks.Providers;
using LiteDB;
namespace abremir.AllMyBricks.Data.Services
{
public class RepositoryService : IRepositoryService
{
private readonly IFileP... | using abremir.AllMyBricks.Data.Configuration;
using abremir.AllMyBricks.Data.Interfaces;
using abremir.AllMyBricks.Data.Models;
using abremir.AllMyBricks.Providers;
using LiteDB;
namespace abremir.AllMyBricks.Data.Services
{
public class RepositoryService : IRepositoryService
{
private readonly IFileP... | mit | C# |
eb30c04c4df5f82a9eee34a391158309cd8d689a | Save newly created csproj files without BOM | ex/godot,ex/godot,ex/godot,ex/godot,ex/godot,ex/godot,ex/godot,ex/godot | modules/mono/editor/GodotTools/GodotTools.ProjectEditor/ProjectGenerator.cs | modules/mono/editor/GodotTools/GodotTools.ProjectEditor/ProjectGenerator.cs | using System;
using System.IO;
using System.Text;
using Microsoft.Build.Construction;
using Microsoft.Build.Evaluation;
namespace GodotTools.ProjectEditor
{
public static class ProjectGenerator
{
public const string GodotSdkVersionToUse = "3.2.3";
public static string GodotSdkAttrValue => $"Go... | using System;
using System.IO;
using Microsoft.Build.Construction;
using Microsoft.Build.Evaluation;
namespace GodotTools.ProjectEditor
{
public static class ProjectGenerator
{
public const string GodotSdkVersionToUse = "3.2.3";
public static string GodotSdkAttrValue => $"Godot.NET.Sdk/{GodotS... | mit | C# |
63dadb296d1a5736ebe214e9877df6e964f2fa64 | add missing configure await | SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice | src/SFA.DAS.EmployerApprenticeshipsService.Application/Services/EmployerAccountsApi/EmployerAccountsApiService.cs | src/SFA.DAS.EmployerApprenticeshipsService.Application/Services/EmployerAccountsApi/EmployerAccountsApiService.cs | using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Newtonsoft.Json;
using SFA.DAS.EAS.Application.Http;
using SFA.DAS.EAS.Application.Services.EmployerAccountsApi.Http;
using SFA.DAS.EmployerAccounts.Api.Types;
using SFA.DAS.NLog.Logger;
namespace SFA.DAS.EAS.Application.Services.Emplo... | using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Newtonsoft.Json;
using SFA.DAS.EAS.Application.Http;
using SFA.DAS.EAS.Application.Services.EmployerAccountsApi.Http;
using SFA.DAS.EmployerAccounts.Api.Types;
using SFA.DAS.NLog.Logger;
namespace SFA.DAS.EAS.Application.Services.Emplo... | mit | C# |
352aa0cc961f6998ccd824b6125307e8c22df4dd | Improve create button on ListPart (#3412) | stevetayloruk/Orchard2,petedavis/Orchard2,petedavis/Orchard2,stevetayloruk/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,xkproject/Orchard2,xkproject/Orchard2,petedavis/Orchard2,xkproject/Orchard2,OrchardCMS/Brochard,xkproject/Orchard2,stevetayloruk/Orchard2,OrchardCMS/Bro... | src/OrchardCore.Modules/OrchardCore.Lists/Views/ListPart.DetailAdmin.cshtml | src/OrchardCore.Modules/OrchardCore.Lists/Views/ListPart.DetailAdmin.cshtml | @model OrchardCore.Lists.ViewModels.ListPartViewModel
@using OrchardCore.ContentManagement
@using OrchardCore.ContentManagement.Metadata.Models;
@inject OrchardCore.ContentManagement.Display.IContentItemDisplayManager ContentItemDisplayManager
@if (!Model.ContainedContentTypeDefinitions.Any())
{
<p class="alert a... | @model OrchardCore.Lists.ViewModels.ListPartViewModel
@using OrchardCore.ContentManagement
@using OrchardCore.ContentManagement.Metadata.Models;
@inject OrchardCore.ContentManagement.Display.IContentItemDisplayManager ContentItemDisplayManager
@if (!Model.ContainedContentTypeDefinitions.Any())
{
<p class="alert a... | bsd-3-clause | C# |
9fe3247197a83ff1e459c1d6ea947cd0f2477ad3 | fix underscore error in water type enum | brnkhy/MapzenGo,brnkhy/MapzenGo | Assets/MapzenGo/Models/Enums/WaterType.cs | Assets/MapzenGo/Models/Enums/WaterType.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MapzenGo.Models.Enums
{
public enum WaterType
{
Basin,
Dock,
Lake,
Ocean,
Playa,
Riverbank,
Swimming_Pool,
Water,
}
}
| using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MapzenGo.Models.Enums
{
public enum WaterType
{
Basin,
Dock,
Lake,
Ocean,
Playa,
Riverbank,
SwimmingPool,
Water,
}
}
| mit | C# |
b87cd1087c36a2e8fdc6576da936fd372f635333 | Bump version for release | Harteex/GCWZeroManager | GCWZeroManager/Properties/AssemblyInfo.cs | GCWZeroManager/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
// ass... | 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
// ass... | mit | C# |
2595ccd012b2372e55ac80576e402674534a8caf | Test fix | ErikEJ/EntityFramework7.SqlServerCompact,ErikEJ/EntityFramework.SqlServerCompact | test/EntityFramework.SqlServerCompact.Tests/SqlCeDataStoreConnectionTest.cs | test/EntityFramework.SqlServerCompact.Tests/SqlCeDataStoreConnectionTest.cs | using System.Data.SqlServerCe;
using Microsoft.Data.Entity;
using Microsoft.Data.Entity.Infrastructure;
using Microsoft.Data.Entity.Storage.Internal;
using Microsoft.Framework.Logging;
using Xunit;
namespace ErikEJ.Data.Entity.SqlServerCe.Tests
{
public class SqlCeDataStoreConnectionTest
{
[Fact]
... | using System.Data.SqlServerCe;
using Microsoft.Data.Entity;
using Microsoft.Data.Entity.Infrastructure;
using Microsoft.Data.Entity.Storage.Internal;
using Microsoft.Framework.Logging;
using Xunit;
namespace ErikEJ.Data.Entity.SqlServerCe.Tests
{
public class SqlCeDataStoreConnectionTest
{
[Fact]
... | apache-2.0 | C# |
3ab794c285fb9d845e52b0dd55ca2a02dabe4791 | add ObjectValue | corvusalba/my-little-lispy,corvusalba/my-little-lispy | src/CorvusAlba.MyLittleLispy.Runtime/Value.cs | src/CorvusAlba.MyLittleLispy.Runtime/Value.cs | using System;
namespace CorvusAlba.MyLittleLispy.Runtime
{
public abstract class Value
{
public virtual Value<T> Cast<T>()
{
if (typeof(T) == typeof(bool) && !(this is Bool))
{
return (Value<T>) (object) new Bool(true);
}
return (Value<T>) this;
}
public virtual T To<T>()
{
re... | using System;
namespace CorvusAlba.MyLittleLispy.Runtime
{
public abstract class Value
{
public virtual Value<T> Cast<T>()
{
if (typeof(T) == typeof(bool) && !(this is Bool))
{
return (Value<T>) (object) new Bool(true);
}
return (Value<T>) this;
}
public virtual T To<T>()
{
re... | mit | C# |
d960685693d667d948c3fda5ebfe4037144eb87c | reformat PaymentType.cs | leotsarev/joinrpg-net,joinrpg/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net | JoinRpg.DataModel/Finances/PaymentType.cs | JoinRpg.DataModel/Finances/PaymentType.cs | using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using JoinRpg.Helpers;
namespace JoinRpg.DataModel
{
// ReSharper disable once ClassWithVirtualMembersNeverInherited.Global required by LINQ
public class PaymentType : IProjectEntity, IValidatableObject, IDeletabl... | using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using JoinRpg.Helpers;
namespace JoinRpg.DataModel
{
// ReSharper disable once ClassWithVirtualMembersNeverInherited.Global required by LINQ
public class PaymentType : IProjectEntity, IValidatableObject, IDeletableSub... | mit | C# |
4f9dcd85f817ff6d2959459f7063c22a424771cc | Remove unused members of ExecuteCases. | fixie/fixie | src/Fixie/Execution/Behaviors/ExecuteCases.cs | src/Fixie/Execution/Behaviors/ExecuteCases.cs | namespace Fixie.Execution.Behaviors
{
using System;
using System.Diagnostics;
class ExecuteCases
{
public void Execute(Fixture fixture, CaseAction caseLifecycle)
{
foreach (var @case in fixture.Cases)
{
using (var console = new RedirectedConsole(... | namespace Fixie.Execution.Behaviors
{
using System;
using System.Diagnostics;
class ExecuteCases
{
readonly BehaviorChain<Case> caseBehaviors;
public ExecuteCases(BehaviorChain<Case> caseBehaviors = null)
{
this.caseBehaviors = caseBehaviors;
}
pub... | mit | C# |
ad3a1d6226a9d97fc9a8379ec53dbfdf55fe8ae8 | Update NSucceed.cs | NMSLanX/Natasha | src/Natasha/Core/Engine/LogModule/NSucceed.cs | src/Natasha/Core/Engine/LogModule/NSucceed.cs | using Microsoft.CodeAnalysis.CSharp;
using Natasha.Log.Model;
using System;
using System.Reflection;
namespace Natasha.Log
{
public class NSucceed : ALogWrite
{
public static bool Enabled;
static NSucceed() => Enabled = true;
public override void Write()
{
NW... | using Microsoft.CodeAnalysis.CSharp;
using Natasha.Log.Model;
using System;
using System.Reflection;
namespace Natasha.Log
{
public class NSucceed : ALogWrite
{
public static bool Enabled;
static NSucceed() => Enabled = true;
public override void Write()
{
NW... | mpl-2.0 | C# |
b495c692af079450e8e81e68605e10b3dc159962 | Fix Callback Example | sinch/nuget-serversdk | Examples/Sinch.Verification.Callback.Example/Controllers/VerificationController.cs | Examples/Sinch.Verification.Callback.Example/Controllers/VerificationController.cs | using System.Threading.Tasks;
using System.Web.Http;
using Sinch.ServerSdk.Callback.WebApi;
using Sinch.ServerSdk.Verification.Models;
using System;
using Newtonsoft.Json;
#pragma warning disable 1998
namespace Sinch.Verification.Callback.Example.Controllers
{
[SinchCallback]
public class VerificationControl... | using System.Threading.Tasks;
using System.Web.Http;
using Sinch.ServerSdk.Callback.WebApi;
using Sinch.ServerSdk.Verification.Models;
#pragma warning disable 1998
namespace Sinch.Verification.Callback.Example.Controllers
{
[SinchCallback]
public class VerificationController : ApiController
{
// ... | mit | C# |
e4480bf181c8d217363448c14e14004c73b07ee1 | Fix tests 9.1 compilation | controlflow/resharper-postfix | PostfixTemplates/Tests/PostfixTestBase.cs | PostfixTemplates/Tests/PostfixTestBase.cs | #if RESHARPER8
using JetBrains.ReSharper.Feature.Services.Tests.CSharp.FeatureServices.CodeCompletion;
#elif RESHARPER9
using JetBrains.ReSharper.FeaturesTestFramework.Completion;
#endif
namespace JetBrains.ReSharper.PostfixTemplates
{
public abstract class PostfixCodeCompletionTestBase : CodeCompletionTestBase
{... | #if RESHARPER8
using JetBrains.ReSharper.Feature.Services.Tests.CSharp.FeatureServices.CodeCompletion;
#elif RESHARPER9
using JetBrains.ReSharper.FeaturesTestFramework.Completion;
#endif
namespace JetBrains.ReSharper.PostfixTemplates
{
public abstract class PostfixCodeCompletionTestBase : CodeCompletionTestBase
{... | mit | C# |
a86681d3bf1d39c9b9e591f5c315af19f90f3d1d | Enable hadware encoding/decoding | fuyuno/Norma | Source/Norma/Models/Browser/CefSetting.cs | Source/Norma/Models/Browser/CefSetting.cs | using System;
using CefSharp;
using Norma.Eta;
namespace Norma.Models.Browser
{
// CefSharp Settings
internal static class CefSetting
{
internal static void Init()
{
var settings = new CefSettings
{
CachePath = NormaConstants.CefCacheDir,
... | using System;
using CefSharp;
using Norma.Eta;
namespace Norma.Models.Browser
{
// CefSharp Settings
internal static class CefSetting
{
internal static void Init()
{
var settings = new CefSettings
{
CachePath = NormaConstants.CefCacheDir,
... | mit | C# |
4470ff1fc8e841c0c14c30421bd7e4794a05f624 | Make AppCommand implement ICommand | appharbor/appharbor-cli | src/AppHarbor/Commands/AppCommand.cs | src/AppHarbor/Commands/AppCommand.cs | using System;
namespace AppHarbor.Commands
{
public class AppCommand : ICommand
{
public void Execute(string[] arguments)
{
throw new NotImplementedException();
}
}
}
| namespace AppHarbor.Commands
{
public class AppCommand
{
}
}
| mit | C# |
a7e5f1f74e96eb91f4b3aff320ee000f4357c2aa | Update GroupBox.cs | Core2D/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D | src/Core2D/Editor/Layout/GroupBox.cs | src/Core2D/Editor/Layout/GroupBox.cs | using System;
using System.Collections.Generic;
using Core2D.Shapes;
namespace Core2D.Editor.Layout
{
public struct GroupBox
{
public readonly List<ShapeBox> Boxes;
public Box Bounds;
public GroupBox(List<IBaseShape> shapes)
{
Boxes = new List<ShapeBox>(shapes.Coun... | using System;
using System.Collections.Generic;
using Core2D.Shapes;
namespace Core2D.Editor.Layout
{
public struct GroupBox
{
public readonly List<ShapeBox> Boxes;
public Box Bounds;
public GroupBox(List<IBaseShape> shapes)
{
Boxes = new List<ShapeBox>(shapes.Coun... | mit | C# |
0a423ff84d438f48422876781708eaf73d999dd6 | Use HTML template compiler in example. | BluewireTechnologies/cassette,honestegg/cassette,BluewireTechnologies/cassette,honestegg/cassette,honestegg/cassette,andrewdavey/cassette,damiensawyer/cassette,andrewdavey/cassette,damiensawyer/cassette,andrewdavey/cassette,damiensawyer/cassette | src/Example/CassetteConfiguration.cs | src/Example/CassetteConfiguration.cs | using System.Text.RegularExpressions;
using Cassette;
using Cassette.HtmlTemplates;
using Cassette.Scripts;
using Cassette.Stylesheets;
namespace Example
{
public class CassetteConfiguration : ICassetteConfiguration
{
public void Configure(ModuleConfiguration modules)
{
... | using System.Text.RegularExpressions;
using Cassette;
using Cassette.HtmlTemplates;
using Cassette.Scripts;
using Cassette.Stylesheets;
namespace Example
{
public class CassetteConfiguration : ICassetteConfiguration
{
public void Configure(ModuleConfiguration modules)
{
... | mit | C# |
04cd484684aa98b8d7cddee8541d5f3aac494868 | Add missing assembly keys. | OmniSharp/omnisharp-roslyn,OmniSharp/omnisharp-roslyn | src/OmniSharp.Roslyn/AssemblyInfo.cs | src/OmniSharp.Roslyn/AssemblyInfo.cs | using System.Runtime.CompilerServices;
using OmniSharp;
[assembly: InternalsVisibleTo("OmniSharp.Tests" + OmniSharpPublicKey.Key)]
[assembly: InternalsVisibleTo("OmniSharp.Roslyn.CSharp" + OmniSharpPublicKey.Key)]
| using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("OmniSharp.Tests")]
[assembly: InternalsVisibleTo("OmniSharp.Roslyn.CSharp")] | mit | C# |
3c7fddf5c5772bb3d741c5ff5fa3e3cf2fa588b7 | Add comment. | mrtska/SRNicoNico,mrtska/SRNicoNico,mrtska/SRNicoNico,mrtska/SRNicoNico | SRNicoNico/App.xaml.cs | SRNicoNico/App.xaml.cs | using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;
using System.Threading.Tasks;
using SRNicoNico.ViewModels;
using SRNicoNico.Views;
using SRNicoNico.Models.NicoNicoViewer;
using Livet;
using Microsoft.Win32;
namespace SRNicoNico... | using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;
using System.Threading.Tasks;
using SRNicoNico.ViewModels;
using SRNicoNico.Views;
using SRNicoNico.Models.NicoNicoViewer;
using Livet;
using Microsoft.Win32;
namespace SRNicoNico... | mit | C# |
5eaf6240fe248c0f444fd038445c42e2a4f3bae5 | Update GoogleApiException.cs | googleapis/google-api-dotnet-client,ivannaranjo/google-api-dotnet-client,Duikmeester/google-api-dotnet-client,googleapis/google-api-dotnet-client,Duikmeester/google-api-dotnet-client,Duikmeester/google-api-dotnet-client,chrisdunelm/google-api-dotnet-client,jskeet/google-api-dotnet-client,googleapis/google-api-dotnet-cl... | Src/GoogleApis.Core/GoogleApiException.cs | Src/GoogleApis.Core/GoogleApiException.cs | /*
Copyright 2010 Google Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, sof... | /*
Copyright 2010 Google Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, sof... | apache-2.0 | C# |
0069dd116744d2583914faad9e1f726edf6bfb84 | Append 'Info' suffix to structs to alleviate naming conflicts | SICU-Stress-Measurement-System/frontend-cs | StressMeasurementSystem/Models/Patient.cs | StressMeasurementSystem/Models/Patient.cs | using System;
using System.Collections.Generic;
using System.Net.Mail;
namespace StressMeasurementSystem.Models
{
public class Patient
{
#region Structs
public struct NameInfo
{
public string Prefix { get; set; }
public string First { get; set; }
pu... | using System;
using System.Collections.Generic;
using System.Net.Mail;
namespace StressMeasurementSystem.Models
{
public class Patient
{
#region Structs
public struct Name
{
public string Prefix { get; set; }
public string First { get; set; }
public... | apache-2.0 | C# |
85410231b5cc8a90f1dba2aa382b73455eacc6fd | add Duplicate<T>() | TakeAsh/cs-TakeAshUtility | TakeAshUtility/GenericExtensionMethods.cs | TakeAshUtility/GenericExtensionMethods.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
namespace TakeAshUtility {
public static class GenericExtensionMethods {
private const BindingFlags _flags = BindingFlags.Instance | BindingFlags.Public | BindingFlags.DeclaredOnly;
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
namespace TakeAshUtility {
public static class GenericExtensionMethods {
private const BindingFlags _flags = BindingFlags.Instance | BindingFlags.Public | BindingFlags.DeclaredOnl... | mit | C# |
bf3617f3b3005350286d698273a5807ab00ee833 | Revert "fixed null ref exception" | OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core,OfficeDev/PnP-Sites-Core | Core/OfficeDevPnP.Core/Framework/Provisioning/Providers/Xml/Resolvers/V201801/AppCatalogFromModelToSchemaTypeResolver.cs | Core/OfficeDevPnP.Core/Framework/Provisioning/Providers/Xml/Resolvers/V201801/AppCatalogFromModelToSchemaTypeResolver.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using System.Xml.Linq;
namespace OfficeDevPnP.Core.Framework.Provisioning.Providers.Xml.Resolvers.V201801
{
internal class AppCatalogFromModelToSchemaTypeResolver : ITypeResolver
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using System.Xml.Linq;
namespace OfficeDevPnP.Core.Framework.Provisioning.Providers.Xml.Resolvers.V201801
{
internal class AppCatalogFromModelToSchemaTypeResolver : ITypeResolver
... | mit | C# |
9bb3e56bb3a22875f746175fee15640489713232 | Implement half-width overflows | NeoAdonis/osu,ppy/osu,johnneijzen/osu,naoey/osu,peppy/osu,peppy/osu-new,naoey/osu,EVAST9919/osu,smoogipooo/osu,naoey/osu,2yangk23/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,ppy/osu,2yangk23/osu,EVAST9919/osu,NeoAdonis/osu,ZLima12/osu,DrabWeb/osu,smoogipoo/osu,ppy/osu,DrabWeb/osu,smoogipoo/osu,smoogipoo/osu,UselessTo... | osu.Game/Screens/Edit/Screens/Compose/Timeline/ScrollingTimelineContainer.cs | osu.Game/Screens/Edit/Screens/Compose/Timeline/ScrollingTimelineContainer.cs | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
using osu.Game.Graphics;
nam... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
using osu.Game.Graphics;
nam... | mit | C# |
0f0a3cc285de7d8d7d0e1a5b4e7312f771e614fc | Change Notifier.PropertyChanged event into explicit implementation. | Grabacr07/MetroTrilithon | source/MetroTrilithon/Mvvm/Notifier.cs | source/MetroTrilithon/Mvvm/Notifier.cs | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
namespace MetroTrilithon.Mvvm
{
/// <summary>
/// プロパティ変更通知をサポートします。
/// </summary>
public class Notifier : INotifyPropertyChanged
{
... | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
namespace MetroTrilithon.Mvvm
{
public class Notifier : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;... | mit | C# |
0006492f3aaff8f962a9607c3af69eceae1953de | Fix typo in AdjacentPosition.cs | AngleSharp/AngleSharp,AngleSharp/AngleSharp,AngleSharp/AngleSharp,AngleSharp/AngleSharp,AngleSharp/AngleSharp | src/AngleSharp/Dom/AdjacentPosition.cs | src/AngleSharp/Dom/AdjacentPosition.cs | namespace AngleSharp.Dom
{
using AngleSharp.Attributes;
/// <summary>
/// Enumeration with possible values for the adjacent position insertion.
/// </summary>
public enum AdjacentPosition : byte
{
/// <summary>
/// Before the element itself.
/// </summary>
[DomN... | namespace AngleSharp.Dom
{
using AngleSharp.Attributes;
/// <summary>
/// Enumeration with possible values for the adjacent position insertation.
/// </summary>
public enum AdjacentPosition : byte
{
/// <summary>
/// Before the element itself.
/// </summary>
[Do... | mit | C# |
c150a145990a662258e685ea204a8e83a7333111 | Add missing method | wtgodbe/corefx,shimingsg/corefx,shimingsg/corefx,ericstj/corefx,wtgodbe/corefx,ViktorHofer/corefx,ViktorHofer/corefx,BrennanConroy/corefx,ericstj/corefx,ericstj/corefx,wtgodbe/corefx,wtgodbe/corefx,BrennanConroy/corefx,shimingsg/corefx,BrennanConroy/corefx,wtgodbe/corefx,shimingsg/corefx,ericstj/corefx,shimingsg/corefx... | src/System.Diagnostics.Tracing/ref/System.Diagnostics.Tracing.CountersUap.cs | src/System.Diagnostics.Tracing/ref/System.Diagnostics.Tracing.CountersUap.cs | namespace System.Diagnostics.Tracing
{
public partial class EventCounter : System.IDisposable
{
public EventCounter(string name, System.Diagnostics.Tracing.EventSource eventSource) { }
public void Dispose() { }
public void WriteMetric(float value) { }
}
} | namespace System.Diagnostics.Tracing
{
public partial class EventCounter : System.IDisposable
{
public EventCounter(string name, System.Diagnostics.Tracing.EventSource eventSource) { }
public void WriteMetric(float value) { }
}
} | mit | C# |
804a6327910ed5ddde81c1a0ef2fcb6350ec3f9d | fix typo | chocolatey/nuget-chocolatey,jholovacs/NuGet,pratikkagda/nuget,ctaggart/nuget,mono/nuget,antiufo/NuGet2,mrward/NuGet.V2,GearedToWar/NuGet2,jholovacs/NuGet,xoofx/NuGet,jmezach/NuGet2,mrward/nuget,jmezach/NuGet2,jmezach/NuGet2,RichiCoder1/nuget-chocolatey,RichiCoder1/nuget-chocolatey,jholovacs/NuGet,rikoe/nuget,pratikkagd... | src/Core/FileModifiers/Preprocessor.cs | src/Core/FileModifiers/Preprocessor.cs | using NuGet.Resources;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
namespace NuGet
{
/// <summary>
/// Simple token replacement system for content files.
/// </summary>
public class Pr... | using NuGet.Resources;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
namespace NuGet
{
/// <summary>
/// Simple token replacement system for content files.
/// </summary>
public class Pr... | apache-2.0 | C# |
b0d4d1155f8e396955c01a3d7c5c2d888ddfbedf | Remove unused code | Ackara/Daterpillar | src/Daterpillar.CommandLine/Program.cs | src/Daterpillar.CommandLine/Program.cs | using Gigobyte.Daterpillar.Arguments;
using Gigobyte.Daterpillar.Commands;
using System;
namespace Gigobyte.Daterpillar
{
public class Program
{
internal static void Main(string[] args)
{
InitializeWindow();
var options = new Options();
if (args.Length > 0)... | using Gigobyte.Daterpillar.Arguments;
using Gigobyte.Daterpillar.Commands;
using System;
namespace Gigobyte.Daterpillar
{
public class Program
{
internal static void Main(string[] args)
{
InitializeWindow();
int exitCode = 0;
var options = new Options();
... | mit | C# |
f31bfb1be4c0b71208738dc75feb03b78afe3f5e | Add explicit test to create database schema scripts | peopleware/net-ppwcode-vernacular-nhibernate | src/II.Tests/ConventionMappingTests.cs | src/II.Tests/ConventionMappingTests.cs | // Copyright 2017 by PeopleWare n.v..
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writ... | // Copyright 2017 by PeopleWare n.v..
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writ... | apache-2.0 | C# |
ec6f93773b7785fd3d166ef156cd3be8d97d1e24 | Fix build | cwensley/maccore,mono/maccore,beni55/maccore,jorik041/maccore | src/Foundation/NSCoder.cs | src/Foundation/NSCoder.cs | //
// NSCoder support
//
// Author:
// Miguel de Icaza
//
// Copyright 2010, Novell, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without lim... | //
// NSCoder support
//
// Author:
// Miguel de Icaza
//
// Copyright 2010, Novell, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without lim... | apache-2.0 | C# |
963bb6b24d586159f86a41705621b628c366d96d | Write line after getting password | appharbor/appharbor-cli | src/AppHarbor/Commands/LoginAuthCommand.cs | src/AppHarbor/Commands/LoginAuthCommand.cs | using System.IO;
using RestSharp;
using RestSharp.Contrib;
namespace AppHarbor.Commands
{
[CommandHelp("Login to AppHarbor", alias: "login")]
public class LoginAuthCommand : ICommand
{
private readonly IAccessTokenConfiguration _accessTokenConfiguration;
private readonly IMaskedInput _maskedInput;
private re... | using System.IO;
using RestSharp;
using RestSharp.Contrib;
namespace AppHarbor.Commands
{
[CommandHelp("Login to AppHarbor", alias: "login")]
public class LoginAuthCommand : ICommand
{
private readonly IAccessTokenConfiguration _accessTokenConfiguration;
private readonly IMaskedInput _maskedInput;
private re... | mit | C# |
03e8e5ec24f3d524d2af2322a7556fefaebe0e1c | Add comment explaining why testcase is commented out. | EamonNerbonne/a-vs-an,EamonNerbonne/a-vs-an,EamonNerbonne/a-vs-an,EamonNerbonne/a-vs-an | A-vs-An/AvsAn-Test/StandardCasesWork.cs | A-vs-An/AvsAn-Test/StandardCasesWork.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AvsAnLib;
using ExpressionToCodeLib;
using Xunit.Extensions;
namespace AvsAn_Test {
public class StandardCasesWork {
[Theory]
[InlineData("an", "unanticipated resul... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AvsAnLib;
using ExpressionToCodeLib;
using Xunit.Extensions;
namespace AvsAn_Test {
public class StandardCasesWork {
[Theory]
[InlineData("an", "unanticipated resul... | apache-2.0 | C# |
f51894c850ef89db4eafe25f8e76819e86c0e767 | Increment library version as version on pre-release line messed up versioning | volak/Aggregates.NET,volak/Aggregates.NET | src/SharedAssemblyInfo.cs | src/SharedAssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyProduct("Aggregates.NET")]
[assembly: AssemblyDescription(".NET event sourced domain driven design model via NServiceBus and EventStore")]
[assembly: AssemblyCopyright("Copyright © Charles Solar 2017")]
[assembly: AssemblyVersion("0.13... | using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyProduct("Aggregates.NET")]
[assembly: AssemblyDescription(".NET event sourced domain driven design model via NServiceBus and EventStore")]
[assembly: AssemblyCopyright("Copyright © Charles Solar 2017")]
[assembly: AssemblyVersion("0.12... | mit | C# |
fbe6cc576e1ac55c3b42cdf12474ebdc9e6e4c3a | Make EventArgs base class serializable (dotnet/coreclr#15541) | Ermiar/corefx,shimingsg/corefx,ViktorHofer/corefx,ericstj/corefx,Jiayili1/corefx,ViktorHofer/corefx,ptoonen/corefx,ericstj/corefx,zhenlan/corefx,ravimeda/corefx,Ermiar/corefx,BrennanConroy/corefx,ericstj/corefx,Jiayili1/corefx,ravimeda/corefx,ptoonen/corefx,ViktorHofer/corefx,ptoonen/corefx,mmitche/corefx,wtgodbe/coref... | src/Common/src/CoreLib/System/EventArgs.cs | src/Common/src/CoreLib/System/EventArgs.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
namespace System
{
// The base class for all event classes.
[Serializable]
[System.Runtim... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
namespace System
{
// The base class for all event classes.
public class EventArgs
{
... | mit | C# |
8d3ca463f56c034185ce4e1c73e37c0a57a5d5af | Apply recommendation from resharper | aluxnimm/outlookcaldavsynchronizer | CalDavSynchronizer/Ui/ConnectionTests/CalendarOwnerProperties.cs | CalDavSynchronizer/Ui/ConnectionTests/CalendarOwnerProperties.cs | // This file is Part of CalDavSynchronizer (http://outlookcaldavsynchronizer.sourceforge.net/)
// Copyright (c) 2015 Gerhard Zehetbauer
// Copyright (c) 2015 Alexander Nimmervoll
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as... | // This file is Part of CalDavSynchronizer (http://outlookcaldavsynchronizer.sourceforge.net/)
// Copyright (c) 2015 Gerhard Zehetbauer
// Copyright (c) 2015 Alexander Nimmervoll
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as... | agpl-3.0 | C# |
45a371723d3242c4ec9e2d4ff703a45306d0269d | Allow TouchInput to receive more than one touch to apply with | ZLima12/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework | osu.Framework/Input/StateChanges/TouchInput.cs | osu.Framework/Input/StateChanges/TouchInput.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Input.StateChanges.Events;
using osu.Framework.Input.States;
... | // 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.Input.StateChanges.Events;
using osu.Framework.Input.States;
namespace osu.Framework.Input.StateChanges
{
/// <summary>
/// Denotes a change ... | mit | C# |
ddbd240d7604e85ed40ded8c6bdba8e6719a35e8 | Fix settings checkboxes not being searchable (#5003) | johnneijzen/osu,EVAST9919/osu,peppy/osu-new,NeoAdonis/osu,2yangk23/osu,ppy/osu,EVAST9919/osu,ZLima12/osu,smoogipooo/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,peppy/osu,ppy/osu,UselessToucan/osu,2yangk23/osu,smoogipoo/osu,peppy/osu,ZLima12/osu,johnneijzen/osu,ppy/osu,smoogipoo/osu,smo... | osu.Game/Overlays/Settings/SettingsCheckbox.cs | osu.Game/Overlays/Settings/SettingsCheckbox.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Settings
{
public class SettingsCheckbox : SettingsItem<bool>
{
... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Settings
{
public class SettingsCheckbox : SettingsItem<bool>
{
... | mit | C# |
4c65e1f20041a9dd9d719a7fc745b989ab1492b7 | Add labels to add form | mattgwagner/Cash-Flow-Projection,mattgwagner/Cash-Flow-Projection,mattgwagner/Cash-Flow-Projection,mattgwagner/Cash-Flow-Projection | src/Cash-Flow-Projection/Views/Home/Add.cshtml | src/Cash-Flow-Projection/Views/Home/Add.cshtml | @model Cash_Flow_Projection.Models.Entry
@using (Html.BeginForm("Add", "Home", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
{
@Html.AntiForgeryToken()
@Html.ValidationSummary()
<div class="form-group form-group-xlg">
@Html.DisplayNameFor(m => m.Date)
@Html.EditorFo... | @model Cash_Flow_Projection.Models.Entry
@using (Html.BeginForm("Add", "Home", FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
{
@Html.AntiForgeryToken()
@Html.ValidationSummary()
<div class="form-group form-group-xlg">
@Html.EditorFor(m => m.Date, new { @class = "form-contro... | mit | C# |
82bf37f9751d0ecfb2e5ad57532fd6b70d2ec89b | Update client properties | pardahlman/RawRabbit,northspb/RawRabbit | src/RawRabbit/Common/ClientPropertyProvider.cs | src/RawRabbit/Common/ClientPropertyProvider.cs | using System;
using System.Collections.Generic;
using System.Reflection;
using RawRabbit.Configuration;
namespace RawRabbit.Common
{
public interface IClientPropertyProvider
{
IDictionary<string, object> GetClientProperties(RawRabbitConfiguration cfg = null, BrokerConfiguration brokerCfg = null);
}
public clas... | using System;
using System.Collections.Generic;
using RawRabbit.Configuration;
namespace RawRabbit.Common
{
public interface IClientPropertyProvider
{
IDictionary<string, object> GetClientProperties(RawRabbitConfiguration cfg = null, BrokerConfiguration brokerCfg = null);
}
public class ClientPropertyProvider ... | mit | C# |
eadcf990f864234d4368570fb97eb18869b6ec7f | AJuste Campos Produto! | AutomacaoNet/MotorTributarioNet | src/TestMotorTributarioNet/Entidade/Produto.cs | src/TestMotorTributarioNet/Entidade/Produto.cs | using MotorTributarioNet.Flags;
using MotorTributarioNet.Impostos;
namespace TestCalculosTributarios.Entidade
{
public class Produto : ITributavel, IIbpt
{
public Produto()
{
Documento = Documento.NFe;
}
public Documento Documento { get; set; }
public CstIp... | using MotorTributarioNet.Flags;
using MotorTributarioNet.Impostos;
namespace TestCalculosTributarios.Entidade
{
public class Produto : ITributavel, IIbpt
{
public Produto()
{
Documento = Documento.NFe;
}
public Documento Documento { get; set; }
public Motor... | lgpl-2.1 | C# |
293cbe5e8093ff224cb46d729a3f1785a278c4af | remove now-unnecessary TODO | DasAllFolks/SharpGraphs | Graph/Graph.cs | Graph/Graph.cs | using System;
namespace Graph
{
public class Vertex
{
private bool hasLabel;
private string label;
public Vertex ()
{
}
// XXXX: Remind self how to link to private field?
public bool HasLabel
{
get;
set;
}
public string Label
{
get
{
if (!this.hasLabel)
{
throw NoLa... | using System;
namespace Graph
{
public class Vertex
{
private bool hasLabel;
private string label;
public Vertex ()
{
}
// XXXX: Remind self how to link to private field?
public bool HasLabel
{
get;
set;
}
public string Label
{
get
{
if (!this.hasLabel)
{
throw NoLa... | apache-2.0 | C# |
64448d9095d0e0e721877f74c02a3736bb398c3b | Fix to MarshalEx.ReadSecurityDescriptor | vurdalakov/usbdevices | src/UsbDevicesDotNet/MarshalEx.cs | src/UsbDevicesDotNet/MarshalEx.cs | namespace Vurdalakov.UsbDevicesDotNet
{
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Security.AccessControl;
using System.Text;
internal static class MarshalEx
{
public static Byte[] ReadByteArray(IntPtr source, Int32 startIndex... | namespace Vurdalakov.UsbDevicesDotNet
{
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Security.AccessControl;
using System.Text;
internal static class MarshalEx
{
public static Byte[] ReadByteArray(IntPtr source, Int32 startIndex... | mit | C# |
ad882939d9b97f4d466759a0e65b876a3504c25a | Add description for magic params | hey-red/Mime | src/Mime/MagicParams.cs | src/Mime/MagicParams.cs | namespace HeyRed.Mime
{
public enum MagicParams
{
/// <summary>
/// The parameter controls how many levels of recursion will be followed for indirect magic entries.
/// </summary>
MAGIC_PARAM_INDIR_MAX = 0,
/// <summary>
/// The parameter controls the maximum nu... | namespace HeyRed.Mime
{
public enum MagicParams
{
MAGIC_PARAM_INDIR_MAX = 0,
MAGIC_PARAM_NAME_MAX,
MAGIC_PARAM_ELF_PHNUM_MAX,
MAGIC_PARAM_ELF_SHNUM_MAX,
MAGIC_PARAM_ELF_NOTES_MAX,
MAGIC_PARAM_REGEX_MAX,
MAGIC_PARAM_BYTES_MAX
}
}
| mit | C# |
c1f3bf124f06c73259b7f488e2899d3011179157 | Make main screen a bit more identifiable | peppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,ZLima12/osu-framework,ppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework | template-game/TemplateGame.Game/MainScreen.cs | template-game/TemplateGame.Game/MainScreen.cs | using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Screens;
using osuTK.Graphics;
namespace TemplateGame.Game
{
public class MainScreen : Screen
{
[BackgroundDependencyLoader]
private void ... | using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Screens;
namespace TemplateGame.Game
{
public class MainScreen : Screen
{
[BackgroundDependencyLoader]
private void load()
{
AddInternal(new SpinningBox
{
Anchor = A... | mit | C# |
f95852e0ee6f3852a6ecd2ae0fcb32bfe6c37e5e | Use Cors | leonaascimento/Neblina | src/Neblina.Api/Startup.cs | src/Neblina.Api/Startup.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsof... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsof... | mit | C# |
db2bacc5b064a8aabad0d80a1809c67d105eac84 | remove unused namespaces from bool latch | dpvreony/Dhgms.AspNetCoreContrib,dpvreony/Dhgms.AspNetCoreContrib,dpvreony/Dhgms.AspNetCoreContrib | src/Dhgms.AspNetCoreContrib.App/Features/Bitwise/BooleanLatch.cs | src/Dhgms.AspNetCoreContrib.App/Features/Bitwise/BooleanLatch.cs | namespace Dhgms.AspNetCoreContrib.App.Features.Bitwise
{
/// <summary>
/// A single set latch, used for where you need to flag something like an update flag where updates
/// can be caused by multiple sources.
/// This is designed to reduce the risk of using a boolean flag and manually applying the log... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Dhgms.AspNetCoreContrib.App.Features.Bitwise
{
/// <summary>
/// A single set latch, used for where you need to flag something like an update flag where updates
/// can be caused b... | apache-2.0 | C# |
2af05dc13c2d6866c98767c9e6663aa618f45edf | remove unused var | parkitectLab/statMaster | Notice.cs | Notice.cs | using UnityEngine;
using System.Collections.Generic;
using System;
namespace StatMaster
{
class Notice
{
public bool showWindow = false;
public uint windowWidth = 450;
private Rect _window = new Rect(50, 50, 1, 1);
private List<string> _textLines = new List<string>();
... | using UnityEngine;
using System.Collections.Generic;
using System;
namespace StatMaster
{
class Notice
{
private uint _windowRectsCount = 14;
public bool showWindow = false;
public uint windowWidth = 450;
private Rect _window = new Rect(50, 50, 1, 1);
private List<... | mit | C# |
8712f36b277006bfa1bb8c91101759700f5121ef | Update version to 0.3.3 | elcattivo/CloudFlareUtilities | CloudFlareUtilities/Properties/AssemblyInfo.cs | CloudFlareUtilities/Properties/AssemblyInfo.cs | using System;
using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an ... | using System;
using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an ... | mit | C# |
7569473dd569bac4d9611a5f6b945cc42695e801 | Change expiry job back to 28th | 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.Messages.Commands;
namespace SFA.DAS.EmployerFinance.Jobs.ScheduledJobs
{
public class ExpireFundsJob
{
private readonly IMessageSession _messageSession;
... | using System.Threading.Tasks;
using Microsoft.Azure.WebJobs;
using Microsoft.Extensions.Logging;
using NServiceBus;
using SFA.DAS.EmployerFinance.Messages.Commands;
namespace SFA.DAS.EmployerFinance.Jobs.ScheduledJobs
{
public class ExpireFundsJob
{
private readonly IMessageSession _messageSession;
... | mit | C# |
49c70503b8765eb7cc0df786617a49c3fd6927ae | Change the long description of B2_DOWNLOAD_URL_OPTION, #3654 | mnaiman/duplicati,mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati,sitofabi/duplicati,duplicati/duplicati,sitofabi/duplicati,duplicati/duplicati,duplicati/duplicati,duplicati/duplicati,mnaiman/duplicati,sitofabi/duplicati,sitofabi/duplicati,sitofabi/duplicati,mnaiman/duplicati | Duplicati/Library/Backend/Backblaze/Strings.cs | Duplicati/Library/Backend/Backblaze/Strings.cs | using Duplicati.Library.Localization.Short;
namespace Duplicati.Library.Backend.Strings {
internal static class B2 {
public static string B2applicationkeyDescriptionShort { get { return LC.L(@"The ""B2 Cloud Storage Application Key"" can be obtained after logging into your Backblaze account, this can al... | using Duplicati.Library.Localization.Short;
namespace Duplicati.Library.Backend.Strings {
internal static class B2 {
public static string B2applicationkeyDescriptionShort { get { return LC.L(@"The ""B2 Cloud Storage Application Key"" can be obtained after logging into your Backblaze account, this can al... | lgpl-2.1 | C# |
8c46bcca9aa37906746e6490b033a72e531dd5eb | Improve key/value pattern values enclosed in quotation marks | tommarien/zenini | src/Zenini/Patterns/KeyValuePattern.cs | src/Zenini/Patterns/KeyValuePattern.cs | using System;
using System.Text.RegularExpressions;
namespace Zenini.Patterns
{
public class KeyValuePattern
{
private static readonly Regex KeyValueRegex = new Regex(@"^\s*(.+?)\s*=\s*(?:"")?(.+?)(?:\"")?\s*$", RegexOptions.Compiled);
public virtual bool Matches(string line)
{
... | using System;
using System.Text.RegularExpressions;
namespace Zenini.Patterns
{
public class KeyValuePattern
{
private static readonly Regex KeyValueRegex = new Regex(@"^\s*(.+?)\s*=\s*(.+?)\s*$", RegexOptions.Compiled);
public virtual bool Matches(string line)
{
return Ke... | mit | C# |
61baa3179920f2e0a588982d7ee332bb67b4d2b3 | Fix for Net 2.0 | castleproject/Castle.Transactions,castleproject/Castle.Transactions,codereflection/Castle.Components.Scheduler,castleproject/castle-READONLY-SVN-dump,castleproject/Castle.Facilities.Wcf-READONLY,castleproject/castle-READONLY-SVN-dump,castleproject/Castle.Transactions,castleproject/castle-READONLY-SVN-dump,carcer/Castle... | Tools/DynamicProxy/DynamicProxy/Builder/CodeBuilder/SimpleAST/MethodTokenExpression.cs | Tools/DynamicProxy/DynamicProxy/Builder/CodeBuilder/SimpleAST/MethodTokenExpression.cs | // Copyright 2004-2005 Castle Project - http://www.castleproject.org/
//
// 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 ... | <<<<<<< .mine
// Copyright 2004-2005 Castle Project - http://www.castleproject.org/
//
// 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# |
18b0fb4a776654880e3e27fa7e3895c6cbd7f436 | fix user repo | passenger-stack/Passenger,passenger-stack/Passenger | Passenger.Core/Repositories/IUserRepository.cs | Passenger.Core/Repositories/IUserRepository.cs | using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Passenger.Core.Domain;
namespace Passenger.Core.Repositories
{
public interface IUserRepository
{
Task<User> GetAsync(Guid id);
Task<User> GetAsync(string email);
Task<IEnumerable<User>> GetAllAsync();
... | using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Passenger.Core.Domain;
namespace Passenger.Core.Repositories
{
public interface IUserRepository
{
Task<User> GetAsync(Guid id);
Task<User> GetAsync(string email);
Task<IEnumerable<User>> GetAllAsync();
... | mit | C# |
83679539e6790da908ed443f379114b613f24753 | Implement ArrowKeyController. Use CharacterAnimationActions in ArrowKeyController | ethanmoffat/EndlessClient | EndlessClient/Controllers/ArrowKeyController.cs | EndlessClient/Controllers/ArrowKeyController.cs | // Original Work Copyright (c) Ethan Moffat 2014-2016
// This file is subject to the GPL v2 License
// For additional details, see the LICENSE file
using EndlessClient.Rendering.Character;
using EOLib;
using EOLib.Domain.Character;
namespace EndlessClient.Controllers
{
public class ArrowKeyController : IArrowKey... | // Original Work Copyright (c) Ethan Moffat 2014-2016
// This file is subject to the GPL v2 License
// For additional details, see the LICENSE file
namespace EndlessClient.Controllers
{
public class ArrowKeyController : IArrowKeyController
{
public bool MoveLeft()
{
return false;
... | mit | C# |
8df5e890cee462384277eb7e20b70ea389b86d37 | Fix leaderboard conditions | DragonEyes7/ConcoursUBI17,DragonEyes7/ConcoursUBI17 | Proto/Assets/Scripts/Leaderboard/Leaderboard.cs | Proto/Assets/Scripts/Leaderboard/Leaderboard.cs | using System.Collections.Generic;
using Newtonsoft.Json;
using UnityEngine;
public class Leaderboard
{
private readonly List<Score> _scores;
private FileManager _fileManager;
public Leaderboard(string file)
{
_scores = Load(file);
}
private List<Score> Load(string file)
... | using System.Collections.Generic;
using Newtonsoft.Json;
using UnityEngine;
public class Leaderboard
{
private readonly List<Score> _scores;
private FileManager _fileManager;
public Leaderboard(string file)
{
_scores = Load(file);
}
private List<Score> Load(string file)
... | mit | C# |
ede59ba6528071d0a7ca91a0abd18f442c1e21f3 | fix in ContestViewModel - mapping was not implemented | KENTRIOSI/KentriosiPhotoContest,KENTRIOSI/KentriosiPhotoContest,KENTRIOSI/KentriosiPhotoContest | KentriosiPhotosContests.MVC/Models/ViewModels/ContestViewModel.cs | KentriosiPhotosContests.MVC/Models/ViewModels/ContestViewModel.cs | namespace KentriosiPhotoContest.MVC.Models
{
using KentriosiPhotoContest.Models;
using Infrastructure.Mapping;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AutoMapper;
public class ContestViewModel : IMapF... | namespace KentriosiPhotoContest.MVC.Models
{
using KentriosiPhotoContest.Models;
using Infrastructure.Mapping;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AutoMapper;
public class ContestViewModel :IMapFr... | mit | C# |
9dd4e29f18c5894d503a8852840a67e17ff2ad28 | Change text in Contact.cshtml | MarianNikolov/ROM,MarianNikolov/ROM | RestaurantOrganizationalManager/ROM.Web/Views/Home/Contact.cshtml | RestaurantOrganizationalManager/ROM.Web/Views/Home/Contact.cshtml | @{
ViewBag.Title = "Contact";
}
<h2 page-title animated lightSpeedIn class="text-center main-page-title">@ViewBag.Title us</h2>
<div class="container">
<div class="row">
<div>
<div class="panel panel-default">
<div class="panel-body text-center">
<div st... | @{
ViewBag.Title = "Contact";
}
<h2 page-title animated lightSpeedIn class="text-center main-page-title">@ViewBag.Title us</h2>
<div class="container">
<div class="row">
<div>
<div class="panel panel-default">
<div class="panel-body text-center">
<div st... | mit | C# |
2e68951e0f6c45c392008160c54fa521b808280a | Use file version as client version | SeanFeldman/azure-event-hubs-dotnet,jtaubensee/azure-event-hubs-dotnet | src/Microsoft.Azure.EventHubs/Primitives/ClientInfo.cs | src/Microsoft.Azure.EventHubs/Primitives/ClientInfo.cs | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Microsoft.Azure.EventHubs
{
using System;
using System.Reflection;
using System.Runtime.Versioning;
using Microsoft.Azure.Amqp;
static c... | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Microsoft.Azure.EventHubs
{
using System;
using System.Reflection;
using System.Runtime.Versioning;
using Microsoft.Azure.Amqp;
static c... | mit | C# |
c561e61fdd9825baf779ea4f6ecaa37a444befc5 | Fix #65 and #54 | TestStack/TestStack.ConventionTests | TestStack.ConventionTests/Conventions/ClassTypeHasSpecificNamespace.cs | TestStack.ConventionTests/Conventions/ClassTypeHasSpecificNamespace.cs | namespace TestStack.ConventionTests.Conventions
{
using System;
using System.Linq;
using TestStack.ConventionTests.ConventionData;
/// <summary>
/// This convention allows you to enforce a particular type of class is under a namespace, for instance.
///
/// Dto must be under App.Contracts... | namespace TestStack.ConventionTests.Conventions
{
using System;
using TestStack.ConventionTests.ConventionData;
/// <summary>
/// This convention allows you to enforce a particular type of class is under a namespace, for instance.
///
/// Dto must be under App.Contracts.Dtos
/// Domain Ob... | mit | C# |
5da857510a888fc2e584ec667d4354b1f060995a | Build and publish nuget package | RockFramework/Rock.Logging | Rock.Logging/Properties/AssemblyInfo.cs | Rock.Logging/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ro... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ro... | mit | C# |
b77f485fee9337ed565774965c71c1eb0513b1d3 | Update binary assembly version | drmohundro/Jump-Location,tkellogg/Jump-Location,drmohundro/Jump-Location | Jump.Location/Properties/AssemblyInfo.cs | Jump.Location/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("Ju... | 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("Ju... | mit | C# |
68f326ca1906c4c28326072e0d661c10b702c93d | Update assembly info | tony311/PartArranger | KSPPartSorter/Properties/AssemblyInfo.cs | KSPPartSorter/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("Pa... | 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("KS... | mit | C# |
b15374e39c851b0540d36974bdf26c3ad86f2e84 | Fix project version number. | dneelyep/MonoGameUtils | MonoGameUtils/Properties/AssemblyInfo.cs | MonoGameUtils/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("MonoGameUtils")]
[assembly: AssemblyDescr... | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("MonoGameUtils")]
[assembly: AssemblyDescr... | mit | C# |
3fa2f16949c1c9ac02a7bbf0f6d8be49c953d241 | use ReferenceEquals for singleton equality check | acple/ParsecSharp | ParsecSharp/Data/Internal/EmptyStream.cs | ParsecSharp/Data/Internal/EmptyStream.cs | using System;
namespace ParsecSharp.Internal
{
public sealed class EmptyStream<TToken> : IParsecStateStream<TToken>
{
public static IParsecStateStream<TToken> Instance { get; } = new EmptyStream<TToken>();
public TToken Current => default!;
public bool HasValue => false;
publ... | using System;
namespace ParsecSharp.Internal
{
public sealed class EmptyStream<TToken> : IParsecStateStream<TToken>
{
public static IParsecStateStream<TToken> Instance { get; } = new EmptyStream<TToken>();
public TToken Current => default!;
public bool HasValue => false;
publ... | mit | C# |
790019faf47c6de1233968237711f7cddcd5d2b9 | Fix icon picker initialization (#3271) | xkproject/Orchard2,petedavis/Orchard2,OrchardCMS/Brochard,stevetayloruk/Orchard2,petedavis/Orchard2,petedavis/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,xkproject/Orchard2,OrchardCMS/Brochard,petedavis/Orchard2,OrchardCMS/Brochard,stevetayloruk/Orchard2,xkproject/Orchar... | src/OrchardCore.Modules/OrchardCore.ContentFields/Views/TextField-IconPicker.Edit.cshtml | src/OrchardCore.Modules/OrchardCore.ContentFields/Views/TextField-IconPicker.Edit.cshtml | @model OrchardCore.ContentFields.ViewModels.EditTextFieldViewModel
@using OrchardCore.ContentManagement.Metadata.Models
@using OrchardCore.ContentFields.Settings;
@{
var settings = Model.PartFieldDefinition.Settings.ToObject<TextFieldSettings>();
}
<style name="fontpickerStyle" at="Head" asp-src="~/OrchardCore.Co... | @model OrchardCore.ContentFields.ViewModels.EditTextFieldViewModel
@using OrchardCore.ContentManagement.Metadata.Models
@using OrchardCore.ContentFields.Settings;
@{
var settings = Model.PartFieldDefinition.Settings.ToObject<TextFieldSettings>();
}
<style name="fontpickerStyle" at="Head" asp-src="~/OrchardCore.Co... | bsd-3-clause | C# |
3660df631373f7fc2f0e41286a61db0e22052f49 | Add SetCursor and LoadCursor to NativeMethods | stefan-baumann/AeroSuite | AeroSuite/NativeMethods.cs | AeroSuite/NativeMethods.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace AeroSuite
{
/// <summary>
/// Provides some methods from the user32 and uxtheme libraries.
/// </summary>
internal static class NativeMeth... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace AeroSuite
{
/// <summary>
/// Provides some methods from the user32 and uxtheme libraries.
/// </summary>
internal static class NativeMeth... | mit | C# |
2c34a9de89bad3632a3b41a5d0f80d60b62e5823 | Make different mod name in patched version | earalov/Skylines-ElevatedTrainStationTrack | Mod.cs | Mod.cs | using ICities;
using MetroOverhaul.OptionsFramework.Extensions;
namespace MetroOverhaul
{
public class Mod : IUserMod
{
#if IS_PATCH
public const bool isPatch = true;
#else
public const bool isPatch = false;
#endif
public string Name => "Metro Overhaul" + (isPatch ? " [Patched]" : "")... | using ICities;
using MetroOverhaul.OptionsFramework.Extensions;
namespace MetroOverhaul
{
public class Mod : IUserMod
{
public string Name => "Metro Overhaul";
public string Description => "Brings metro depots, ground and elevated metro tracks";
public void OnSettingsUI(UIHelperBase h... | mit | C# |
6759d4e414ea49c605be2bd104ab0df65c81ee9e | handle partial transmissions | DMagic1/Orbital-Science,Kerbas-ad-astra/Orbital-Science | Source/Scenario/DMTransmissionWatcher.cs | Source/Scenario/DMTransmissionWatcher.cs | #region license
/* DMagic Orbital Science - DM Transmission Watcher
* Monobehaviour to watch for science data transmission
*
* Copyright (c) 2014, David Grandy <david.grandy@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted p... | #region license
/* DMagic Orbital Science - DM Transmission Watcher
* Monobehaviour to watch for science data transmission
*
* Copyright (c) 2014, David Grandy <david.grandy@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted p... | bsd-3-clause | C# |
83573182e7d99e3c20e66ea44d9d17173e174fc6 | fix AutomationRunMode item type in class. | Willster419/RelicModManager,Willster419/RelhaxModpack,Willster419/RelhaxModpack | RelhaxModpack/RelhaxModpack/Settings/AutomationRunnerSettings.cs | RelhaxModpack/RelhaxModpack/Settings/AutomationRunnerSettings.cs | using RelhaxModpack.Utilities.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RelhaxModpack.Settings
{
/// <summary>
/// Defines settings used in the database automation runner window
/// </summary>
public class Autom... | using RelhaxModpack.Utilities.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RelhaxModpack.Settings
{
/// <summary>
/// Defines settings used in the database automation runner window
/// </summary>
public class Autom... | apache-2.0 | C# |
5962e9855590515c7183db0b904e85e83693e710 | use Sha1.create | dkackman/FakeHttp | FakeHttp.Desktop/DesktopMessageFormatter.cs | FakeHttp.Desktop/DesktopMessageFormatter.cs | using System;
using System.Text;
using System.Security.Cryptography;
namespace FakeHttp.Desktop
{
sealed class DesktopMessageFormatter : MessageFormatter
{
public DesktopMessageFormatter()
: this(new ResponseCallbacks()) // by default do not filter any query parameters
{
}
... | using System;
using System.Text;
using System.Security.Cryptography;
namespace FakeHttp.Desktop
{
sealed class DesktopMessageFormatter : MessageFormatter
{
public DesktopMessageFormatter()
: this(new ResponseCallbacks()) // by default do not filter any query parameters
{
}
... | apache-2.0 | C# |
5562a230a085711168bda33f70761f9bc7f91c32 | Fix flaky test (#46763) | genlu/roslyn,dotnet/roslyn,AlekseyTs/roslyn,wvdd007/roslyn,dotnet/roslyn,tannergooding/roslyn,weltkante/roslyn,physhi/roslyn,eriawan/roslyn,AlekseyTs/roslyn,wvdd007/roslyn,jasonmalinowski/roslyn,CyrusNajmabadi/roslyn,jasonmalinowski/roslyn,bartdesmet/roslyn,sharwell/roslyn,stephentoub/roslyn,mavasani/roslyn,panopticonc... | src/Compilers/Server/VBCSCompilerTests/TestableClientConnectionHost.cs | src/Compilers/Server/VBCSCompilerTests/TestableClientConnectionHost.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Microsoft.CodeAnalysis.CommandLine;
using System;
using System.Collections.Generic;
using System.IO.Pipes;
us... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Microsoft.CodeAnalysis.CommandLine;
using System;
using System.Collections.Generic;
using System.IO.Pipes;
us... | mit | C# |
4a5e64f4db3ebd375ed89b3e61b94d5c7d088238 | add mapping tryGetValue | dlmelendez/identityazuretable,dlmelendez/identityazuretable,dlmelendez/identityazuretable | src/ElCamino.AspNetCore.Identity.AzureTable/Helpers/EntityMapHelper.cs | src/ElCamino.AspNetCore.Identity.AzureTable/Helpers/EntityMapHelper.cs | // MIT License Copyright 2020 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
using Azure.Data.Tables;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Runtime.Serializati... | using Azure.Data.Tables;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace ElCamino.AspNetCore.Identity.AzureTable.Helpers
{
public static c... | mit | C# |
004af6e9b8f07222971ca85bdcbf2af53128f994 | Update SettingFontUnderlineType.cs | asposecells/Aspose_Cells_NET,asposecells/Aspose_Cells_NET,aspose-cells/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,aspose-cells/Aspose.Cells-for-.NET,maria-sha... | Examples/CSharp/Formatting/DealingWithFontSettings/SettingFontUnderlineType.cs | Examples/CSharp/Formatting/DealingWithFontSettings/SettingFontUnderlineType.cs | using System.IO;
using Aspose.Cells;
namespace Aspose.Cells.Examples.Formatting.DealingWithFontSettings
{
public class SettingFontUnderlineType
{
public static void Main(string[] args)
{
//ExStart:1
// The path to the documents directory.
string dataDir = As... | using System.IO;
using Aspose.Cells;
namespace Aspose.Cells.Examples.Formatting.DealingWithFontSettings
{
public class SettingFontUnderlineType
{
public static void Main(string[] args)
{
// The path to the documents directory.
string dataDir = Aspose.Cells.Examples.Util... | mit | C# |
694e6fdbb96a403ff31da7056f570c983dbb53d6 | Fix spelling mistake. | gheeres/PDFSharp.Extensions | Properties/AssemblyInfo.cs | Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("PDFSharp.Extensions")]
[assembly: Assembl... | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("PDFSharp.Extensions")]
[assembly: Assembl... | mit | C# |
12e4a0eb5e093d734dd4bc43743eea3c4c3543f7 | Update assembly information | goguvi/WooCommerce.NET,XiaoFaye/WooCommerce.NET,tablesmit/WooCommerce.NET | Properties/AssemblyInfo.cs | Properties/AssemblyInfo.cs | using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[ass... | using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[ass... | mit | C# |
1ed85f9a2d9d8ba21e516dc1a3078e2c3b82db84 | rename parameter | LayoutFarm/PixelFarm | src/PixelFarm/PixelFarm.DrawingCanvas/5_Agg_DrawElements/VertexSource/VertexStoreBuilder.cs | src/PixelFarm/PixelFarm.DrawingCanvas/5_Agg_DrawElements/VertexSource/VertexStoreBuilder.cs | //BSD, 2014-2018, WinterDev
//----------------------------------------------------------------------------
// Anti-Grain Geometry - Version 2.4
// Copyright (C) 2002-2005 Maxim Shemanarev (http://www.antigrain.com)
//
// C# Port port by: Lars Brubaker
// larsbrubaker@gmail.com
// Copyright (C) 2007
//... | //BSD, 2014-2018, WinterDev
//----------------------------------------------------------------------------
// Anti-Grain Geometry - Version 2.4
// Copyright (C) 2002-2005 Maxim Shemanarev (http://www.antigrain.com)
//
// C# Port port by: Lars Brubaker
// larsbrubaker@gmail.com
// Copyright (C) 2007
//... | bsd-2-clause | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.