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 |
|---|---|---|---|---|---|---|---|---|
2833d15dd90ce91e16803695629b3866f609d0c4 | Fix Bug | linezero/NETCoreBBS,linezero/NETCoreBBS | src/NetCoreBBS/Views/Shared/_PagerPartial.cshtml | src/NetCoreBBS/Views/Shared/_PagerPartial.cshtml | @{
var pageindex = Convert.ToInt32(ViewBag.PageIndex);
var pagecount = Convert.ToInt32(ViewBag.PageCount);
pagecount = pagecount == 0 ? 1 : pagecount;
pageindex = pageindex > pagecount ? pagecount : pageindex;
var path = Context.Request.Path.Value;
var query = string.Empty;
var querys = Con... | @{
var pageindex = Convert.ToInt32(ViewBag.PageIndex);
var pagecount = Convert.ToInt32(ViewBag.PageCount);
var path = Context.Request.Path.Value;
var query = string.Empty;
var querys = Context.Request.Query;
foreach (var item in querys)
{
if (!item.Key.Equals("page"))
{
... | mit | C# |
2ec0bdb25de7b05d81bae063c10d3be004b3f722 | Bump version to beta2 | kevinkuszyk/FluentAssertions.Ioc.Ninject,kevinkuszyk/FluentAssertions.Ioc.Ninject | src/FluentAssertions.Ioc.Ninject/Properties/AssemblyInfo.cs | src/FluentAssertions.Ioc.Ninject/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("Fl... | 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("Fl... | apache-2.0 | C# |
f542fd0a88d6eead63519507e93a560ee6bfdd3e | Update LiteralInlineRenderer.cs | lunet-io/markdig | src/Markdig/Renderers/Html/Inlines/LiteralInlineRenderer.cs | src/Markdig/Renderers/Html/Inlines/LiteralInlineRenderer.cs | // Copyright (c) Alexandre Mutel. All rights reserved.
// This file is licensed under the BSD-Clause 2 license.
// See the license.txt file in the project root for more information.
using Markdig.Syntax.Inlines;
namespace Markdig.Renderers.Html.Inlines
{
/// <summary>
/// A HTML renderer for a <see cref="Lite... | // Copyright (c) Alexandre Mutel. All rights reserved.
// This file is licensed under the BSD-Clause 2 license.
// See the license.txt file in the project root for more information.
using Markdig.Syntax.Inlines;
namespace Markdig.Renderers.Html.Inlines
{
/// <summary>
/// A HTML renderer for a <see cref="Lite... | bsd-2-clause | C# |
3abef03e282e097c880ab96927295fce3c785f30 | Remove unnecessary #nullable disable | KevinRansom/roslyn,bartdesmet/roslyn,mavasani/roslyn,weltkante/roslyn,shyamnamboodiripad/roslyn,mavasani/roslyn,jasonmalinowski/roslyn,weltkante/roslyn,CyrusNajmabadi/roslyn,dotnet/roslyn,diryboy/roslyn,sharwell/roslyn,KevinRansom/roslyn,jasonmalinowski/roslyn,CyrusNajmabadi/roslyn,jasonmalinowski/roslyn,shyamnamboodir... | src/Workspaces/Core/Portable/Workspace/Solution/BranchId.cs | src/Workspaces/Core/Portable/Workspace/Solution/BranchId.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.Diagnostics;
using System.Threading;
namespace Microsoft.CodeAnalysis
{
/// <summary>
/// sol... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#nullable disable
using System.Diagnostics;
using System.Threading;
namespace Microsoft.CodeAnalysis
{
/// <s... | mit | C# |
de94482856f7d5f1f9e6eba4024ad20c68985fee | Bump version | oozcitak/imagelistview | ImageListView/Properties/AssemblyInfo.cs | ImageListView/Properties/AssemblyInfo.cs | // ImageListView - A listview control for image files
// Copyright (C) 2009 Ozgur Ozcitak
//
// 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/... | // ImageListView - A listview control for image files
// Copyright (C) 2009 Ozgur Ozcitak
//
// 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/... | apache-2.0 | C# |
01b65e860643982510d68bd81e63a8d3c992b410 | mark only product as ALPHA | jumulr/MahApps.Metro,ye4241/MahApps.Metro,p76984275/MahApps.Metro,Jack109/MahApps.Metro,Danghor/MahApps.Metro,pfattisc/MahApps.Metro,chuuddo/MahApps.Metro,psinl/MahApps.Metro,MahApps/MahApps.Metro,batzen/MahApps.Metro,xxMUROxx/MahApps.Metro,Evangelink/MahApps.Metro | MahApps.Metro/Properties/AssemblyInfo.cs | MahApps.Metro/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Markup;
[assembly: AssemblyCopyright("Copyright © MahApps.Metro 2014")]
[assembly: ComVisible(false)]
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictiona... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Markup;
[assembly: AssemblyCopyright("Copyright © MahApps.Metro 2014")]
[assembly: ComVisible(false)]
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictiona... | mit | C# |
7814084a9932b1511c3eac762ca43a3b0f982653 | Bump version | roman-yagodin/R7.University,roman-yagodin/R7.University,roman-yagodin/R7.University | R7.University/Properties/AssemblyInfo.cs | R7.University/Properties/AssemblyInfo.cs | using System.Reflection;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("R7.University")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("R7.Labs")]
... | using System.Reflection;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("R7.University")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("R7.Labs")]
... | agpl-3.0 | C# |
f52753454d8a8a3287ebf1e40d7e99337f709c56 | Update LevelGrading.cs | afroraydude/First_Unity_Game,afroraydude/First_Unity_Game,afroraydude/First_Unity_Game | Real_Game/Assets/Scripts/LevelGrading.cs | Real_Game/Assets/Scripts/LevelGrading.cs | using UnityEngine;
using System.Collections;
public class LevelGrading : MonoBehaviour {
//public int;
void Start() {
}
void Update() {
}
}
| using UnityEngine;
using System.Collections;
public class LevelGrading : MonoBehaviour {
| mit | C# |
b56878bebd6d64e1cc71ba78cd47098cc247f8a4 | fix behaviour | icarus-consulting/Yaapii.Atoms | tests/Yaapii.Atoms.Tests/Enumerable/DivergencyTests.cs | tests/Yaapii.Atoms.Tests/Enumerable/DivergencyTests.cs | using System.Collections.Generic;
using Xunit;
namespace Yaapii.Atoms.Enumerable.Test
{
public sealed class DivergencyTests
{
[Fact]
public void Empty()
{
Assert.Empty(
new Divergency<string>(
new EnumerableOf<string>("a", "b"),
... | using System.Collections.Generic;
using Xunit;
namespace Yaapii.Atoms.Enumerable.Test
{
public sealed class DivergencyTests
{
[Fact]
public void Empty()
{
Assert.Empty(
new Divergency<string>(
new EnumerableOf<string>("a", "b"),
... | mit | C# |
d4760f546794cc82ce65507d5b22ef2da5762f3d | include userId in IX_umbracoExternalLogin_LoginProvider | arknu/Umbraco-CMS,abjerner/Umbraco-CMS,abryukhov/Umbraco-CMS,robertjf/Umbraco-CMS,robertjf/Umbraco-CMS,marcemarc/Umbraco-CMS,robertjf/Umbraco-CMS,KevinJump/Umbraco-CMS,KevinJump/Umbraco-CMS,dawoe/Umbraco-CMS,abjerner/Umbraco-CMS,abjerner/Umbraco-CMS,dawoe/Umbraco-CMS,dawoe/Umbraco-CMS,umbraco/Umbraco-CMS,umbraco/Umbrac... | src/Umbraco.Infrastructure/Persistence/Dtos/ExternalLoginDto.cs | src/Umbraco.Infrastructure/Persistence/Dtos/ExternalLoginDto.cs | using System;
using NPoco;
using Umbraco.Cms.Infrastructure.Persistence.DatabaseAnnotations;
using Umbraco.Cms.Infrastructure.Persistence.DatabaseModelDefinitions;
namespace Umbraco.Cms.Infrastructure.Persistence.Dtos
{
[TableName(TableName)]
[ExplicitColumns]
[PrimaryKey("Id")]
internal class External... | using System;
using NPoco;
using Umbraco.Cms.Infrastructure.Persistence.DatabaseAnnotations;
using Umbraco.Cms.Infrastructure.Persistence.DatabaseModelDefinitions;
namespace Umbraco.Cms.Infrastructure.Persistence.Dtos
{
[TableName(TableName)]
[ExplicitColumns]
[PrimaryKey("Id")]
internal class External... | mit | C# |
560ade640c5b84b893d0adecb8bea717a539f835 | Add Ok | vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf | src/backend/SO115App.Models/Classi/Condivise/EnteIntervenuto.cs | src/backend/SO115App.Models/Classi/Condivise/EnteIntervenuto.cs | //-----------------------------------------------------------------------
// <copyright file="EntiIntervenuti.cs" company="CNVVF">
// Copyright (C) 2017 - CNVVF
//
// This file is part of SOVVF.
// SOVVF is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public Lice... | //-----------------------------------------------------------------------
// <copyright file="EntiIntervenuti.cs" company="CNVVF">
// Copyright (C) 2017 - CNVVF
//
// This file is part of SOVVF.
// SOVVF is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public Lice... | agpl-3.0 | C# |
1e2dd2d568a36daa6fa28a36ef18be8a9cbd893c | Add object's IsNull & IsNotNull extentions | DataGenSoftware/DataGen.Extensions | DataGenExtensions/DataGenExtensions/ObjectExtensions.cs | DataGenExtensions/DataGenExtensions/ObjectExtensions.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataGenExtensions
{
public static class ObjectExtensions
{
public static bool IsNull(this object objectInstance)
{
return objectInstance == null;
}
public static bool IsNotNull(t... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataGenExtensions
{
public static class ObjectExtensions
{
}
}
| mit | C# |
da67cba4f63de2263a3021ceb5cda17d29e4bd43 | fix evaluation of ParameterExpression | DanielLavrushin/LinqToSolr | LinqToSolr/Query/LinqToSolrProvider.cs | LinqToSolr/Query/LinqToSolrProvider.cs | using System;
using System.Collections;
using System.Linq;
using System.Linq.Expressions;
using LinqToSolr.Expressions;
using LinqToSolr.Services;
using LinqToSolr.Data;
namespace LinqToSolr.Query
{
public class LinqToSolrProvider: IQueryProvider
{
internal Type ElementType;
internal ILinqToS... | using System;
using System.Collections;
using System.Linq;
using System.Linq.Expressions;
using LinqToSolr.Expressions;
using LinqToSolr.Services;
using LinqToSolr.Data;
namespace LinqToSolr.Query
{
public class LinqToSolrProvider: IQueryProvider
{
internal Type ElementType;
internal ILinqToS... | mit | C# |
1dee5521e7fe29234933997779927e18a6952bce | Remove leftover unused variable | NTumbleBit/NTumbleBit,DanGould/NTumbleBit | NTumbleBit/BouncyCastle/crypto/paddings/Pkcs7Padding.cs | NTumbleBit/BouncyCastle/crypto/paddings/Pkcs7Padding.cs | using NTumbleBit.BouncyCastle.Security;
namespace NTumbleBit.BouncyCastle.Crypto.Paddings
{
/**
* A padder that adds Pkcs7/Pkcs5 padding to a block.
*/
internal class Pkcs7Padding
: IBlockCipherPadding
{
/**
* Initialise the padder.
*
* @param random - a SecureRandom if available... | using NTumbleBit.BouncyCastle.Security;
namespace NTumbleBit.BouncyCastle.Crypto.Paddings
{
/**
* A padder that adds Pkcs7/Pkcs5 padding to a block.
*/
internal class Pkcs7Padding
: IBlockCipherPadding
{
/**
* Initialise the padder.
*
* @param random - a SecureRandom if available... | mit | C# |
d0e0090a14921cdfa1dcf4290eb91755f6a5b222 | Update AssemblyInfo.cs | patrickhuber/Pliant | libraries/Pliant/Properties/AssemblyInfo.cs | libraries/Pliant/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("Pliant")]
[assembly: AssemblyDescription("... | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Pliant")]
[assembly: AssemblyDescription("... | mit | C# |
8324ad588d63e5e3933749241ed6aabd67959ee1 | Remove limit check on data extraction queries | SlicingDice/slicingdice-dot-net | Slicer/Utils/Validators/DataExtractionQueryValidator.cs | Slicer/Utils/Validators/DataExtractionQueryValidator.cs | using Slicer.Utils.Exceptions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Slicer.Utils.Validators
{
// Validates data extraction queries
public class DataExtractionQueryValidator
{
Dictionary<string, dynamic> Query;... | using Slicer.Utils.Exceptions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Slicer.Utils.Validators
{
// Validates data extraction queries
public class DataExtractionQueryValidator
{
Dictionary<string, dynamic> Query;... | mit | C# |
208e55634d482a89c53f1e4349218539fb0d7f29 | Add comment at line35 | arobertov/SoftUniExercises | DayofWeek/DayofWeek.cs | DayofWeek/DayofWeek.cs | using System;
namespace DayofWeek
{
//....Add comment ...................//
class DayofWeek
{
static void Main(string[] args)
{
var numDay = int.Parse(Console.ReadLine());
switch (numDay)
{
case 1: Console.WriteLine("Monday");
... | using System;
namespace DayofWeek
{
//....Add comment ...................//
class DayofWeek
{
static void Main(string[] args)
{
var numDay = int.Parse(Console.ReadLine());
switch (numDay)
{
case 1: Console.WriteLine("Monday");
... | mit | C# |
79efec24a259c9c4a7ee11bf344d088506a446eb | Update version number. | Damnae/storybrew | editor/Properties/AssemblyInfo.cs | editor/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("storybrew editor")]
[assembly: AssemblyDe... | using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("storybrew editor")]
[assembly: AssemblyDe... | mit | C# |
1cc812014411ee90170f4df0d8d2d364ced66568 | Fix importer error #555 | dotless/dotless,dotless/dotless | src/dotless.AspNet/HandlerImpl.cs | src/dotless.AspNet/HandlerImpl.cs | namespace dotless.Core
{
using Abstractions;
using Input;
using Response;
public class HandlerImpl
{
public readonly IHttp Http;
public readonly IResponse Response;
public readonly ILessEngine Engine;
public readonly IFileReader FileReader;
public HandlerImp... | namespace dotless.Core
{
using Abstractions;
using Input;
using Response;
public class HandlerImpl
{
public readonly IHttp Http;
public readonly IResponse Response;
public readonly ILessEngine Engine;
public readonly IFileReader FileReader;
public HandlerImp... | apache-2.0 | C# |
a7cb2b8c30f0beb0191a99133d07f094dd2034fa | Update svn properties. | ft-/opensim-optimizations-wip,rryk/omp-server,M-O-S-E-S/opensim,ft-/opensim-optimizations-wip-extras,RavenB/opensim,N3X15/VoxelSim,AlphaStaxLLC/taiga,intari/OpenSimMirror,justinccdev/opensim,OpenSimian/opensimulator,AlexRa/opensim-mods-Alex,BogusCurry/arribasim-dev,N3X15/VoxelSim,QuillLittlefeather/opensim-1,Michelle-A... | OpenSim/Region/Environment/Modules/Terrain/ITerrainModule.cs | OpenSim/Region/Environment/Modules/Terrain/ITerrainModule.cs | namespace OpenSim.Region.Environment.Modules.Terrain
{
public interface ITerrainModule
{
void LoadFromFile(string filename);
void SaveToFile(string filename);
}
} | namespace OpenSim.Region.Environment.Modules.Terrain
{
public interface ITerrainModule
{
void LoadFromFile(string filename);
void SaveToFile(string filename);
}
} | bsd-3-clause | C# |
7bc2d94fd15dd8310912432c6b88dfde2a61c820 | Use types instead of fully qualified names. | GetTabster/Tabster | Tabster.Core/Plugins/ITabsterPlugin.cs | Tabster.Core/Plugins/ITabsterPlugin.cs | using System;
namespace Tabster.Core.Plugins
{
public interface ITabsterPlugin
{
string Name { get; }
string Description { get; }
string Author { get; }
string Version { get; }
Type[] Types { get; }
}
}
| namespace Tabster.Core.Plugins
{
public interface ITabsterPlugin
{
string Name { get; }
string Description { get; }
string Author { get; }
string Version { get; }
string[] PluginClasses { get; }
}
}
| apache-2.0 | C# |
546bdf061850b4a0ab38b915e4b1d9788223593a | remove default value init .-. | smoogipoo/osu,johnneijzen/osu,peppy/osu-new,peppy/osu,ppy/osu,naoey/osu,ZLima12/osu,DrabWeb/osu,smoogipoo/osu,EVAST9919/osu,ppy/osu,DrabWeb/osu,naoey/osu,smoogipoo/osu,johnneijzen/osu,smoogipooo/osu,peppy/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,DrabWeb/osu,ZLima12/osu,UselessToucan/osu,UselessToucan/osu,2yangk23/os... | 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... | // 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... | mit | C# |
dc8a47fa81c90d2e8f2ad3b28d8b9a65618b89fe | Remove unused code. | winddyhe/knight | knight-client/Hotfix/KnightHotfix/Core/GUI/ViewModel.cs | knight-client/Hotfix/KnightHotfix/Core/GUI/ViewModel.cs | using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using UnityEngine.UI;
namespace Knight.Hotfix.Core
{
public class ViewModel
{
public Action<string> PropertyChanged;
public object GetPropValue(string rVaribleName)
{
Type rType = t... | using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using UnityEngine.UI;
namespace Knight.Hotfix.Core
{
public class ViewModel
{
public Action<string> PropertyChanged;
public bool IsOpened;
public bool IsClosed;
... | mit | C# |
57758e322a8436da83d9961541e7266300e5b6aa | Add possibility to register events on App, like we do on HTML DOM | felladrin/unity3d-mvc | Scripts/Application.cs | Scripts/Application.cs | using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
public class Application : MonoBehaviour
{
public ModelContainer Model;
public ControllerContainer Controller;
public ViewContainer View;
private Dictionary<string, UnityEvent> eventDictionary = new Dictionary<string, Unit... | using UnityEngine;
public class Application : MonoBehaviour
{
public ModelContainer Model;
public ControllerContainer Controller;
public ViewContainer View;
} | mit | C# |
3f10a919543432a7ed38422b7b643c536ee8e8bb | enable request tracing when debugger attached | CatenaLogic/JiraCli | src/JiraCli/Actions/ActionBase.cs | src/JiraCli/Actions/ActionBase.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="ActionBase.cs" company="CatenaLogic">
// Copyright (c) 2014 - 2014 CatenaLogic. All rights reserved.
// </copyright>
// ---------------------------------------------------------... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="ActionBase.cs" company="CatenaLogic">
// Copyright (c) 2014 - 2014 CatenaLogic. All rights reserved.
// </copyright>
// ---------------------------------------------------------... | mit | C# |
428095786a3116b4c8f92a5a578860dc8f611c0d | Improve naming of tests to clearly indicate the feature to be tested | oliverzick/Delizious-Filtering | src/Library.Test/LessThanTests.cs | src/Library.Test/LessThanTests.cs | #region Copyright and license
// // <copyright file="LessThanTests.cs" company="Oliver Zick">
// // Copyright (c) 2016 Oliver Zick. All rights reserved.
// // </copyright>
// // <author>Oliver Zick</author>
// // <license>
// // Licensed under the Apache License, Version 2.0 (the "License");
// // you may ... | #region Copyright and license
// // <copyright file="LessThanTests.cs" company="Oliver Zick">
// // Copyright (c) 2016 Oliver Zick. All rights reserved.
// // </copyright>
// // <author>Oliver Zick</author>
// // <license>
// // Licensed under the Apache License, Version 2.0 (the "License");
// // you may ... | apache-2.0 | C# |
4651589b1f43a27640237e502cf61374343625d4 | Fix existing user check | Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training | src/AtomicChessPuzzles/DbRepositories/UserRepository.cs | src/AtomicChessPuzzles/DbRepositories/UserRepository.cs | using MongoDB.Driver;
using AtomicChessPuzzles.Models;
using MongoDB.Bson;
namespace AtomicChessPuzzles.DbRepositories
{
public class UserRepository : IUserRepository
{
MongoSettings settings;
IMongoCollection<User> userCollection;
public UserRepository()
{
setting... | using MongoDB.Driver;
using AtomicChessPuzzles.Models;
using MongoDB.Bson;
namespace AtomicChessPuzzles.DbRepositories
{
public class UserRepository : IUserRepository
{
MongoSettings settings;
IMongoCollection<User> userCollection;
public UserRepository()
{
setting... | agpl-3.0 | C# |
f2a8e7a893a444ce4307859862ea7ba3e501b448 | Fix event name of RequestLog. (#37043) | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Middleware/HttpLogging/src/HttpLoggingExtensions.cs | src/Middleware/HttpLogging/src/HttpLoggingExtensions.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.Extensions.Logging;
namespace Microsoft.AspNetCore.HttpLogging
{
internal static partial class HttpLoggingExtensions
{
public static void RequestLog(... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.Extensions.Logging;
namespace Microsoft.AspNetCore.HttpLogging
{
internal static partial class HttpLoggingExtensions
{
public static void RequestLog(... | apache-2.0 | C# |
06cf3e6e24a30b90c2fcf75729252765cd0d67c5 | Remove duplicate code in CharEnumerator | yizhang82/corert,schellap/corert,manu-silicon/corert,manu-silicon/corert,krytarowski/corert,shrah/corert,sandreenko/corert,schellap/corert,manu-silicon/corert,tijoytom/corert,kyulee1/corert,mjp41/corert,gregkalapos/corert,sandreenko/corert,tijoytom/corert,tijoytom/corert,kyulee1/corert,gregkalapos/corert,gregkalapos/co... | src/System.Private.CoreLib/src/System/CharEnumerator.cs | src/System.Private.CoreLib/src/System/CharEnumerator.cs | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
/*============================================================
**
**
**
** Purpose: Enumerates the characters on a string. skips range
** checks.
**
**
======... | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
/*============================================================
**
**
**
** Purpose: Enumerates the characters on a string. skips range
** checks.
**
**
======... | mit | C# |
39dac47e863cd5f30574a35a0eb2383ef6c90183 | Update the API. | jorik041/maccore,mono/maccore,cwensley/maccore | src/Foundation/NSRunLoop.cs | src/Foundation/NSRunLoop.cs | using System;
using System.Runtime.InteropServices;
namespace MonoMac.Foundation {
public enum NSRunLoopMode {
Default,
Common,
#if MONOMAC
ConnectionReply = 2,
ModalPanel,
EventTracking,
#else
// iOS-specific Enums start in 100 to avoid conflicting with future extensions to MonoMac
UITracking = 100,
#e... | using System;
using System.Runtime.InteropServices;
namespace MonoMac.Foundation {
public enum NSRunLoopMode {
Default,
Common,
#if MONOMAC
ConnectionReply,
ModalPanel,
EventTracking
#endif
}
public partial class NSRunLoop {
static NSString GetRealMode (string mode)
{
if (mode == NSDefaultRunLoo... | apache-2.0 | C# |
4e915a6d1e02d4871d09106895f9f4171d6a5dc1 | add more tests | RevensofT/.Net-Anarchy | Anarchy.Facts/RawCopyFacts.cs | Anarchy.Facts/RawCopyFacts.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
using Anarchy;
using Xunit.Abstractions;
namespace Anarchy.Facts {
public class RawCopyFacts {
private readonly ITestOutputHelper output;
public RawCopyFacts(ITestOutputHelper o... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
using Anarchy;
using Xunit.Abstractions;
namespace Anarchy.Facts {
public class RawCopyFacts {
private readonly ITestOutputHelper output;
public RawCopyFacts(ITestOutputHelper o... | apache-2.0 | C# |
1c05897fa16e0e8633788d2e364db140ca3a4a8b | Delete symlink if it's already there | bitcrazed/CreateSymlinkApp,bitcrazed/CreateSymlinkApp,bitcrazed/CreateSymlinkApp | src/MainPage.xaml.cs | src/MainPage.xaml.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Con... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Con... | mit | C# |
60540f2b95fca15c8014ac5bc66e4823ccf47eb4 | Add proper default constructot to StrengthPotion | manio143/ShadowsOfShadows | src/Items/StrengthPotion.cs | src/Items/StrengthPotion.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace ShadowsOfShadows.Items
{
[ItemType(ItemType.Potion)]
public class StrengthPotion : TimedConsumable
{
[XmlIgnore]
public int A... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace ShadowsOfShadows.Items
{
[ItemType(ItemType.Potion)]
public class StrengthPotion : TimedConsumable
{
[XmlIgnore]
public int A... | mit | C# |
64778fa78b3a4167d89b2af3f36068087a1f0aa8 | Add using Curry | GrahamClark/NRamda | src/NRamdaLib/NRamda.Add.cs | src/NRamdaLib/NRamda.Add.cs | using System;
namespace NRamdaLib
{
public static partial class NRamda
{
public static int Add(int x, int y)
{
return x + y;
}
public static Func<int, int> Add(int x)
{
return Curry<int, int, int>(Add)(x);
}
public static float ... | using System;
namespace NRamdaLib
{
public static partial class NRamda
{
public static int Add(int x, int y)
{
return x + y;
}
public static Func<int, int> Add(int x)
{
return y => x + y;
}
public static float Add(float x, float... | mit | C# |
a5a9197ea9a457613ac31e0afb95bf29053ef00e | Update VehicleType.cs | vivet/GoogleApi | GoogleApi/Entities/Maps/Directions/Response/Enums/VehicleType.cs | GoogleApi/Entities/Maps/Directions/Response/Enums/VehicleType.cs | namespace GoogleApi.Entities.Maps.Directions.Response.Enums
{
/// <summary>
/// VehicleType.
/// </summary>
public enum VehicleType
{
/// <summary>
/// All other vehicles will return this type.
/// </summary>
Other,
/// <summary>
/// Rail.
///... | namespace GoogleApi.Entities.Maps.Directions.Response.Enums
{
/// <summary>
/// VehicleType.
/// </summary>
public enum VehicleType
{
/// <summary>
/// All other vehicles will return this type.
/// </summary>
Other,
/// <summary>
/// Rail.
///... | mit | C# |
4abd29d7b280e236edd0f22804693685b0793695 | Update Feature1.cs | Mattgyver317/GitTest1,Mattgyver317/GitTest1 | ConsoleApp1/ConsoleApp1/Feature1.cs | ConsoleApp1/ConsoleApp1/Feature1.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Feature1
{
public int Add()
{
var x1 = 1;
var x2 = 2;
var sum = x1 + x2;
return sum;
}
}... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Feature1
{
public int Add()
{
int x1 = 1;
int x2 = 2;
int sum = x1 + x2;
return sum;
}
}... | mit | C# |
bccc0db64d0a53ffcdf7f035c44e5e87d56a6b6a | Remove redundant “private” keywords | lou1306/CIV,lou1306/CIV | CIV/Processes/ProcessProxy.cs | CIV/Processes/ProcessProxy.cs | using System;
using System.Collections.Generic;
using static CIV.Ccs.CcsParser;
namespace CIV.Processes
{
public class ProcessProxy : IProcess
{
protected ProcessContext context;
protected ProcessFactory factory;
IProcess _real;
IProcess RealProcess =>
_real ?? (_re... | using System;
using System.Collections.Generic;
using static CIV.Ccs.CcsParser;
namespace CIV.Processes
{
public class ProcessProxy : IProcess
{
protected ProcessContext context;
protected ProcessFactory factory;
private IProcess _real;
private IProcess RealProcess =>
... | mit | C# |
9c388682286b8a778fcfb627c6c717677c11a4c9 | Add missing end parenthesis | momo-the-monster/workshop-trails | Assets/PDXcc/Trails/Code/SetLabelFromBlendmode.cs | Assets/PDXcc/Trails/Code/SetLabelFromBlendmode.cs | using UnityEngine;
using System.Collections;
using UnityEngine.UI;
namespace pdxcc {
[RequireComponent(typeof(Text))]
public class SetLabelFromBlendmode : MonoBehaviour {
internal Text field;
void OnEnable() { MomoMirror.OnSwitched += OnSwitched; }
void OnDisable() { MomoMirror... | using UnityEngine;
using System.Collections;
using UnityEngine.UI;
namespace pdxcc {
[RequireComponent(typeof(Text)]
public class SetLabelFromBlendmode : MonoBehaviour {
internal Text field;
void OnEnable() { MomoMirror.OnSwitched += OnSwitched; }
void OnDisable() { MomoMirror.... | mit | C# |
001c1e5d0fe04323caae7571bc075a61c8fab4bf | Adjust log file path | StefanoFiumara/Harry-Potter-Unity | Assets/Scripts/HarryPotterUnity/Utils/HPLogger.cs | Assets/Scripts/HarryPotterUnity/Utils/HPLogger.cs | using System;
using System.IO;
using UnityEngine;
namespace HarryPotterUnity.Utils
{
public static class HpLogger
{
private static readonly string LogFilePath = Path.Combine(Directory.GetCurrentDirectory(), "HP-TCG.log");
static HpLogger()
{
File.WriteAllText(LogFilePath, ... | using System;
using System.IO;
using UnityEngine;
namespace HarryPotterUnity.Utils
{
public static class HpLogger
{
private static readonly string LogFilePath = Path.Combine(Directory.GetCurrentDirectory(), "HP-TCG-LOG.txt");
static HpLogger()
{
File.WriteAllText(LogFilePa... | mit | C# |
16caec9b6beb823fa33d4b5a71929b10494917d8 | Bump version to 15.2.0.33717 | 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# |
f86641db945bcf9e2f2c7fd8b1079fc2c977e95d | add tests for extra interface aggregates | Pondidum/Ledger,Pondidum/Ledger | Ledger.Tests/AggregateStoreTests.cs | Ledger.Tests/AggregateStoreTests.cs | using System;
using System.Collections.Generic;
using System.Linq;
using Ledger.Acceptance.TestObjects;
using Ledger.Infrastructure;
using Ledger.Stores;
using Shouldly;
using Xunit;
namespace Ledger.Tests
{
public class AggregateStoreTests
{
private readonly InMemoryEventStore<Guid> _backing;
private readonly ... | using System;
using System.Linq;
using Ledger.Acceptance.TestObjects;
using Ledger.Stores;
using Shouldly;
using Xunit;
namespace Ledger.Tests
{
public class AggregateStoreTests
{
private readonly InMemoryEventStore<Guid> _backing;
private readonly AggregateStore<Guid> _store;
public AggregateStoreTests()
... | lgpl-2.1 | C# |
ad0ea92b07b588cf960facaa3b09270fe394e16d | Edit the assembly description and release 2.0.0.0 | bobus15/proshine,Silv3rPRO/proshine,MeltWS/proshine | PROShine/Properties/AssemblyInfo.cs | PROShine/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Resources;
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 with an assembly.
[assembly: As... | using System.Reflection;
using System.Resources;
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 with an assembly.
[assembly: As... | mit | C# |
43a52c414c045e51afe6c531fad1f06f91ed9f5a | Bump version to 1.5.2 | milkshakesoftware/PreMailer.Net,kendallb/PreMailer.Net | PreMailer.Net/GlobalAssemblyInfo.cs | PreMailer.Net/GlobalAssemblyInfo.cs | using System;
using System.Reflection;
using System.Runtime.InteropServices;
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
[assembly: AssemblyProduct("PreMailer.Net")]
[assembly: AssemblyCompany("Milkshake Software")]
[assembly: AssemblyCopyright("Copyright © Milkshake Software 2016")]
[assembly: Ass... | using System;
using System.Reflection;
using System.Runtime.InteropServices;
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
[assembly: AssemblyProduct("PreMailer.Net")]
[assembly: AssemblyCompany("Milkshake Software")]
[assembly: AssemblyCopyright("Copyright © Milkshake Software 2016")]
[assembly: Ass... | mit | C# |
4622de907721385b894c1e85d7694e85748eab9a | change to custom IQueryable interface | YoloDev/elephanet,jmkelly/elephanet,YoloDev/elephanet,jmkelly/elephanet | Elephanet/IDocumentSession.cs | Elephanet/IDocumentSession.cs | using System;
using System.Collections.Generic;
using System.Linq;
namespace Elephanet
{
public interface IDocumentSession : IDisposable
{
void Delete<T>(T entity);
T Load<T>(Guid id);
T[] Load<T>(params Guid[] ids);
T[] Load<T>(IEnumerable<Guid> ids);
IJsonbQueryable<T... | using System;
using System.Collections.Generic;
using System.Linq;
namespace Elephanet
{
public interface IDocumentSession : IDisposable
{
void Delete<T>(T entity);
T Load<T>(Guid id);
T[] Load<T>(params Guid[] ids);
T[] Load<T>(IEnumerable<Guid> ids);
IQueryable<T> Que... | mit | C# |
db2fd22e538b1508ba4c921c406038fb05f2a799 | Add implement class LuryException | lury-lang/lury,nokok/lury,HaiTo/lury | src/Lury/Runtime/Exception/LuryException.cs | src/Lury/Runtime/Exception/LuryException.cs | //
// LuryException.cs
//
// Author:
// Tomona Nanase <nanase@users.noreply.github.com>
//
// The MIT License (MIT)
//
// Copyright (c) 2015 Tomona Nanase
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to... | //
// LuryException.cs
//
// Author:
// Tomona Nanase <nanase@users.noreply.github.com>
//
// The MIT License (MIT)
//
// Copyright (c) 2015 Tomona Nanase
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to... | mit | C# |
e2dec29fad652a19912d0cce4ca364d407dc0960 | Add some exception handling | SteveLasker/AspNetCoreMultiProject,SteveLasker/AspNetCoreMultiProject | src/Web/Controllers/Magic8BallController.cs | src/Web/Controllers/Magic8BallController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using System.Net.Http;
using Newtonsoft.Json;
// For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860
namespace Web.Controllers
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using System.Net.Http;
using Newtonsoft.Json;
// For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860
namespace Web.Controllers
{
... | mit | C# |
c19a9093d62763a463ea1e3f706e5afe8be189ab | Fix out of sync bugs | insthync/LiteNetLibManager,insthync/LiteNetLibManager | Scripts/GameApi/LiteNetLibPlayer.cs | Scripts/GameApi/LiteNetLibPlayer.cs | using System.Collections;
using System.Collections.Generic;
using LiteNetLib;
namespace LiteNetLibHighLevel
{
public class LiteNetLibPlayer
{
public LiteNetLibGameManager Manager { get; protected set; }
public NetPeer Peer { get; protected set; }
public long ConnectId { get { return Pe... | using System.Collections;
using System.Collections.Generic;
using LiteNetLib;
namespace LiteNetLibHighLevel
{
public class LiteNetLibPlayer
{
public LiteNetLibGameManager Manager { get; protected set; }
public NetPeer Peer { get; protected set; }
public long ConnectId { get { return Pe... | mit | C# |
9327a571ac267a38500149ca84f8c419d77e8b84 | Fix string format in error message | ZocDoc/ZocBuild.Database | ZocBuild.Database/Errors/MismatchedSchemaError.cs | ZocBuild.Database/Errors/MismatchedSchemaError.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZocBuild.Database.Errors
{
public class MismatchedSchemaError : BuildErrorBase
{
public MismatchedSchemaError(string objectName, string expected, string actual)
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZocBuild.Database.Errors
{
public class MismatchedSchemaError : BuildErrorBase
{
public MismatchedSchemaError(string objectName, string expected, string actual)
... | mit | C# |
99d769e55753dca3c3a514c4ed9c41ce7d5d10c4 | update to fix test resources tobe found again | ericnewton76/gmaps-api-net | src/Google.Maps.Test/Integrations/HttpGetResponseFromResource.cs | src/Google.Maps.Test/Integrations/HttpGetResponseFromResource.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.IO;
namespace Google.Maps.Test.Integrations
{
public class HttpGetResponseFromResource : Google.Maps.Internal.Http.HttpGetResponse
{
System.Reflection.Assembly S_testAssembly = Assembly.GetA... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.IO;
namespace Google.Maps.Test.Integrations
{
public class HttpGetResponseFromResource : Google.Maps.Internal.Http.HttpGetResponse
{
System.Reflection.Assembly S_testAssembly = Assembly.GetA... | apache-2.0 | C# |
283fc2c21663a00345f9e95981b67265789cceea | Update IQuoteRepository.cs | Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,halitalf/NadekoMods,Youngsie1997/NadekoBot,Nielk1/NadekoBot,miraai/NadekoBot,Taknok/NadekoBot,powered-by-moe/MikuBot,ShadowNoire/NadekoBot,Blacnova/NadekoBot,shikhir-arora/NadekoBot,ScarletKuro/NadekoBot,WoodenGlaze/NadekoBot,Midnight-Myth/Mitternacht-NEW,Prav... | src/NadekoBot/Services/Database/Repositories/IQuoteRepository.cs | src/NadekoBot/Services/Database/Repositories/IQuoteRepository.cs | using NadekoBot.Services.Database.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace NadekoBot.Services.Database.Repositories
{
public interface IQuoteRepository : IRepository<Quote>
{
IEnumerable<Quote> GetAllQuotesByKeyword(ulong guildId, string keyword);
Task<... | using NadekoBot.Services.Database.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace NadekoBot.Services.Database.Repositories
{
public interface IQuoteRepository : IRepository<Quote>
{
IEnumerable<Quote> GetAllQuotesByKeyword(ulong guildId, string keyword);
Task<... | mit | C# |
c45e6b3d58af63299aea992848370fced532c6e8 | Make ConnectHelper.ConnectAsync return ValueTask<Stream> (#24244) | ravimeda/corefx,zhenlan/corefx,Jiayili1/corefx,seanshpark/corefx,ericstj/corefx,shimingsg/corefx,tijoytom/corefx,wtgodbe/corefx,wtgodbe/corefx,wtgodbe/corefx,parjong/corefx,twsouthwick/corefx,ptoonen/corefx,Jiayili1/corefx,Ermiar/corefx,ravimeda/corefx,Ermiar/corefx,axelheer/corefx,ericstj/corefx,axelheer/corefx,ericst... | src/System.Net.Http/src/System/Net/Http/Managed/ConnectHelper.cs | src/System.Net.Http/src/System/Net/Http/Managed/ConnectHelper.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.IO;
using System.Net.Sockets;
using System.Threading.Tasks;
namespace System.Net.Http
{
internal ... | // 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.Net.Sockets;
using System.Threading.Tasks;
namespace System.Net.Http
{
internal static class Conn... | mit | C# |
a827b5583f1a11287f4443ed0adec61fb783cd3d | Fix typo | tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server | src/Tgstation.Server.Host/Database/PostgresSqlDatabaseContext.cs | src/Tgstation.Server.Host/Database/PostgresSqlDatabaseContext.cs | using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using System;
using System.Diagnostics;
using Tgstation.Server.Host.Configuration;
namespace Tgstation.Server.Host.Database
{
/// <summary>
/// <see cref="DatabaseContext{TParentContext}"/> for PostgresSQL.
... | using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using System;
using System.Diagnostics;
using Tgstation.Server.Host.Configuration;
namespace Tgstation.Server.Host.Database
{
/// <summary>
/// <see cref="DatabaseContext{TParentContext}"/> for PostgresSQL.
... | agpl-3.0 | C# |
527ef91396ce2715acf21c7d96e08373bca1f596 | fix #14 | nerai/Unlog | src/Unlog.AdditionalTargets/WpfRtfLogTarget.cs | src/Unlog.AdditionalTargets/WpfRtfLogTarget.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Media;
using Unlog;
using Unlog.Util;
namespace Unlog.AdditionalTargets
{
public class WpfRtfLogTarget : ILogTarget
{
private readonly RichTextB... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Media;
using Unlog;
using Unlog.Util;
namespace Unlog.AdditionalTargets
{
public class WpfRtfLogTarget : ILogTarget
{
private readonly RichTextB... | mit | C# |
dc457a0445cb0c845c2364bce4a7e7b97ee2c425 | Replace test Guid with empty Guid. | WillemRB/serilog-sinks-glip | test/GlipTests.cs | test/GlipTests.cs | using System;
using System.Collections.Generic;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Serilog.Events;
using Serilog.Parsing;
namespace Serilog.Sinks.Glip.Tests
{
[TestClass]
public class GlipTests
{
private ILogger _logger;
[TestInitialize]
public void Initiali... | using System;
using System.Collections.Generic;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Serilog.Events;
using Serilog.Parsing;
namespace Serilog.Sinks.Glip.Tests
{
[TestClass]
public class GlipTests
{
private ILogger _logger;
[TestInitialize]
public void Initiali... | mit | C# |
3e25b24d0196663f6f3788aca7b4dd3e19d62420 | remove unnecessary comment | rvdkooy/BrockAllen.MembershipReboot,tomascassidy/BrockAllen.MembershipReboot,vinneyk/BrockAllen.MembershipReboot,DosGuru/MembershipReboot,brockallen/BrockAllen.MembershipReboot,eric-swann-q2/BrockAllen.MembershipReboot,vankooch/BrockAllen.MembershipReboot,rajendra1809/BrockAllen.MembershipReboot | BrockAllen.MembershipReboot/Models/UserClaim.cs | BrockAllen.MembershipReboot/Models/UserClaim.cs | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BrockAllen.MembershipReboot
{
public class UserClaim
{
[Key]
public vir... | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BrockAllen.MembershipReboot
{
public class UserClaim
{
[Key]
public vir... | bsd-3-clause | C# |
bba57874bceb6fa2d3eaea33448fc4475f0939cd | Put UseServices extension method in Microsoft.AspNet | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Microsoft.AspNet.RequestContainer/ContainerExtensions.cs | src/Microsoft.AspNet.RequestContainer/ContainerExtensions.cs | using System;
using System.Reflection;
using System.Collections.Generic;
using System.Linq;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.DependencyInjection;
using Microsoft.AspNet.DependencyInjection.Fallback;
using Microsoft.AspNet.RequestContainer;
namespace Microsoft.AspNet
{
public static clas... | using System;
using System.Reflection;
using System.Collections.Generic;
using System.Linq;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.DependencyInjection;
using Microsoft.AspNet.DependencyInjection.Fallback;
namespace Microsoft.AspNet.RequestContainer
{
public static class ContainerExtensions
... | apache-2.0 | C# |
098a77a14154666399bcfb46d7eee97df6433e1a | Implement role assignment. | enarod/enarod-web-api,enarod/enarod-web-api,enarod/enarod-web-api | Infopulse.EDemocracy.Web/Auth/AuthRepository.cs | Infopulse.EDemocracy.Web/Auth/AuthRepository.cs | using Infopulse.EDemocracy.Common.Extensions;
using Infopulse.EDemocracy.Web.Auth;
using Infopulse.EDemocracy.Web.Auth.Models;
using Infopulse.EDemocracy.Web.Models;
using Microsoft.AspNet.Identity;
using System;
using System.Data.Entity;
using System.Linq;
using System.Threading.Tasks;
using Infopulse.EDemocracy.Mode... | using Infopulse.EDemocracy.Common.Extensions;
using Infopulse.EDemocracy.Web.Auth;
using Infopulse.EDemocracy.Web.Auth.Models;
using Infopulse.EDemocracy.Web.Models;
using Microsoft.AspNet.Identity;
using System;
using System.Threading.Tasks;
namespace Infopulse.EDemocracy.Data.Repositories
{
public class AuthReposi... | cc0-1.0 | C# |
522b56a017091cc22a6809f76ef78e27bd7ed42b | fix docs | Pathoschild/StardewMods | LookupAnything/Framework/Models/FishData/FishSpawnData.cs | LookupAnything/Framework/Models/FishData/FishSpawnData.cs | using System.Linq;
namespace Pathoschild.Stardew.LookupAnything.Framework.Models.FishData
{
/// <summary>Spawning rules for a fish.</summary>
internal class FishSpawnData
{
/*********
** Accessors
*********/
/// <summary>The fish ID.</summary>
public int FishID { get... | using System.Linq;
namespace Pathoschild.Stardew.LookupAnything.Framework.Models.FishData
{
/// <summary>Spawning rules for a fish.</summary>
internal class FishSpawnData
{
/*********
** Accessors
*********/
/// <summary>The fish ID.</summary>
public int FishID { get... | mit | C# |
555e3fdca7bdec693fc248126c06821406e375a2 | return to good work unit tests for ci on appveyor | wangkanai/Detection | test/DependencyInjection/ApplicationBuilderExtensionsTest.cs | test/DependencyInjection/ApplicationBuilderExtensionsTest.cs | // Copyright (c) 2014-2020 Sarin Na Wangkanai, All Rights Reserved.
// The Apache v2. See License.txt in the project root for license information.
using System;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abs... | // Copyright (c) 2014-2020 Sarin Na Wangkanai, All Rights Reserved.
// The Apache v2. See License.txt in the project root for license information.
using System;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abs... | apache-2.0 | C# |
5dc54ae24c537db2eee5a3c105031014f10ddec5 | Bump version to 0.16.1 | ar3cka/Journalist | src/SolutionInfo.cs | src/SolutionInfo.cs | // <auto-generated/>
using System.Reflection;
[assembly: AssemblyProductAttribute("Journalist")]
[assembly: AssemblyVersionAttribute("0.16.1")]
[assembly: AssemblyInformationalVersionAttribute("0.16.1")]
[assembly: AssemblyFileVersionAttribute("0.16.1")]
[assembly: AssemblyCompanyAttribute("Anton Mednonogov")]
namesp... | // <auto-generated/>
using System.Reflection;
[assembly: AssemblyProductAttribute("Journalist")]
[assembly: AssemblyVersionAttribute("0.16.0")]
[assembly: AssemblyInformationalVersionAttribute("0.16.0")]
[assembly: AssemblyFileVersionAttribute("0.16.0")]
[assembly: AssemblyCompanyAttribute("Anton Mednonogov")]
namesp... | apache-2.0 | C# |
5d1995292c819fb10dd3ddcca3d5238c0080f2ae | Allow to disable the application-starter | csteeg/BoC,RalfvandenBurg/BoC,RvanDalen/BoC,bplasmeijer/BoC,RvanDalen/BoC,RalfvandenBurg/BoC,bplasmeijer/BoC,csteeg/BoC | Src/Commons/Web/ApplicationStarterHttpModule.cs | Src/Commons/Web/ApplicationStarterHttpModule.cs | using System;
using System.Configuration;
using System.Web;
using System.Web.Configuration;
using Microsoft.Web.Infrastructure;
namespace BoC.Web
{
public class ApplicationStarterHttpModule : IHttpModule
{
private static object lockObject = new object();
private static bool startWasCalled = ... | using System.Web;
using Microsoft.Web.Infrastructure;
namespace BoC.Web
{
public class ApplicationStarterHttpModule : IHttpModule
{
private static object lockObject = new object();
private static bool startWasCalled = false;
public static void StartApplication()
{
if (startWasCalled... | mit | C# |
54c9a88171bb561df97562fd26f8a7e9af1ac2d0 | Bump version. | mennowo/Gu.Wpf.DataGrid2D,JohanLarsson/Gu.Wpf.DataGrid2D | Gu.Wpf.DataGrid2D/Properties/AssemblyInfo.cs | Gu.Wpf.DataGrid2D/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows.Markup;
[assembly: AssemblyTitle("Gu.Wpf.DataGrid2D")]
[assembly: AssemblyDescription("Attached properties for DataGrid to enable binding to 2D sources.")]
[assembly: Asse... | using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows.Markup;
[assembly: AssemblyTitle("Gu.Wpf.DataGrid2D")]
[assembly: AssemblyDescription("Attached properties for DataGrid to enable binding to 2D sources.")]
[assembly: Asse... | mit | C# |
2838bec788110a9dcbd9c1a96900ebd3cff2f04f | fix label to invites | prozum/solitude | Solitude.Android/Activities/OfferActivity.cs | Solitude.Android/Activities/OfferActivity.cs | using System;
using System.Collections.Generic;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using System.Threading;
namespace DineWithaDane.Android
{
[Activity(Label = "Invites", Icon = "@drawable/Invitation_Icon")]
public... | using System;
using System.Collections.Generic;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using System.Threading;
namespace DineWithaDane.Android
{
[Activity(Label = "Offer", Icon = "@drawable/Invitation_Icon")]
public c... | mit | C# |
b89a6bea4c4a710bf87ca7a2c95d5872d1e45333 | Make DrawableDate adjustable | ppy/osu,smoogipooo/osu,2yangk23/osu,UselessToucan/osu,naoey/osu,johnneijzen/osu,DrabWeb/osu,smoogipoo/osu,ZLima12/osu,DrabWeb/osu,peppy/osu,ZLima12/osu,NeoAdonis/osu,peppy/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu,EVAST9919/osu,peppy/osu-new,smoogipoo/osu,DrabWeb/osu,NeoAdonis/osu,UselessToucan/osu,johnneijzen/osu,pe... | osu.Game/Graphics/DrawableDate.cs | osu.Game/Graphics/DrawableDate.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 Humanizer;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Cursor;
using osu.Game.Graphics.Sprites;
name... | // 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 Humanizer;
using osu.Framework.Allocation;
using osu.Framework.Graphics.Cursor;
using osu.Game.Graphics.Sprites;
namespace osu.Game.Graphics
{
... | mit | C# |
f75709c1519ec0ac1f52e812cd4132449a663b36 | Bump version to 1.4, since there's new API and stuff | github-for-unity/Unity,github-for-unity/Unity,github-for-unity/Unity | common/SolutionInfo.cs | common/SolutionInfo.cs | #pragma warning disable 436
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyProduct("GitHub for Unity")]
[assembly: AssemblyVersion(System.AssemblyVersionInformation.VersionForAssembly)]
[assembly: AssemblyFileVersion(Sys... | #pragma warning disable 436
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyProduct("GitHub for Unity")]
[assembly: AssemblyVersion(System.AssemblyVersionInformation.VersionForAssembly)]
[assembly: AssemblyFileVersion(Sys... | mit | C# |
fa233fec17d1873ff911d99df18bed8e0f496d7f | test 'getLatestEvents' | Pondidum/Ledger.Stores.Fs,Pondidum/Ledger.Stores.Fs | Ledger.Stores.Fs.Tests/EventSaveLoadTests.cs | Ledger.Stores.Fs.Tests/EventSaveLoadTests.cs | using System;
using System.IO;
using System.Linq;
using NSubstitute;
using Shouldly;
using TestsDomain.Events;
using Xunit;
namespace Ledger.Stores.Fs.Tests
{
public class EventSaveLoadTests : IDisposable
{
private readonly string _root;
public EventSaveLoadTests()
{
_root = Path.Combine(Path.GetTempPath(... | using System;
using System.IO;
using System.Linq;
using NSubstitute;
using Shouldly;
using TestsDomain.Events;
using Xunit;
namespace Ledger.Stores.Fs.Tests
{
public class EventSaveLoadTests : IDisposable
{
private readonly string _root;
public EventSaveLoadTests()
{
_root = Path.Combine(Path.GetTempPath(... | lgpl-2.1 | C# |
9a2d651f180afe465887fa4eb2d13c6e6089b903 | add example to delete a row (PetaPoco) | jgraber/MicroORM_examples,jgraber/MicroORM_examples,jgraber/MicroORM_examples | MicroORM_Dapper/MicroORM_PetaPoco/Program.cs | MicroORM_Dapper/MicroORM_PetaPoco/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MicroORM_Dapper;
using PetaPoco;
namespace MicroORM_PetaPoco
{
class Program
{
static void Main(string[] args)
{
ReadData();
WriteData();
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MicroORM_Dapper;
using PetaPoco;
namespace MicroORM_PetaPoco
{
class Program
{
static void Main(string[] args)
{
ReadData();
WriteData();
... | apache-2.0 | C# |
8c9bba88a2fb9fcbf580d0cf957d59a8b36cf15c | Remove unnecessary debugging code | GeorgeHahn/SOVND | SOVND.Lib/Handlers/SortedPlaylistProvider.cs | SOVND.Lib/Handlers/SortedPlaylistProvider.cs | using System;
using System.Collections.Generic;
using SOVND.Lib.Models;
using System.Linq;
using Anotar.NLog;
using SOVND.Lib.Utils;
namespace SOVND.Lib.Handlers
{
public class SortedPlaylistProvider : PlaylistProviderBase, ISortedPlaylistProvider
{
public List<Song> Songs { get; private set; }
... | using System;
using System.Collections.Generic;
using SOVND.Lib.Models;
using System.Linq;
using Anotar.NLog;
using SOVND.Lib.Utils;
namespace SOVND.Lib.Handlers
{
public class SortedPlaylistProvider : PlaylistProviderBase, ISortedPlaylistProvider
{
public List<Song> Songs { get; private set; }
... | epl-1.0 | C# |
1c8cc5c0b4506e6bf4f0fcd5c5be80d0e47b95dc | Remove max size argument | thedoritos/unimgpicker,thedoritos/unimgpicker,thedoritos/unimgpicker | Assets/Unimgpicker/Scripts/PickerAndroid.cs | Assets/Unimgpicker/Scripts/PickerAndroid.cs | #if UNITY_ANDROID
using UnityEngine;
namespace Kakera
{
internal class PickerAndroid : IPicker
{
private static readonly string PickerClass = "com.kakeragames.unimgpicker.Picker";
public void Show(string title, string outputFileName, int maxSize)
{
using (var picker = new ... | #if UNITY_ANDROID
using UnityEngine;
namespace Kakera
{
internal class PickerAndroid : IPicker
{
private static readonly string PickerClass = "com.kakeragames.unimgpicker.Picker";
public void Show(string title, string outputFileName, int maxSize)
{
using (var picker = new ... | mit | C# |
aceefcdf7061d87ff91e4ebd765ddee9b3d9b1a4 | Rename EmptyServiceProvicer to EmptyServiceProvider | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Http/Http.Abstractions/src/Extensions/EndpointBuilder.cs | src/Http/Http.Abstractions/src/Extensions/EndpointBuilder.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.AspNetCore.Http;
namespace Microsoft.AspNetCore.Builder;
/// <summary>
/// A base class for building an new <see cref="Endpoint"/>.
/// </summary>
public abstract c... | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.AspNetCore.Http;
namespace Microsoft.AspNetCore.Builder;
/// <summary>
/// A base class for building an new <see cref="Endpoint"/>.
/// </summary>
public abstract c... | apache-2.0 | C# |
dde78358898e5be320c36b7a99821abf5641322f | call ExpTest from Main | MattWindsor91/roslyn,CaptainHayashi/roslyn,CaptainHayashi/roslyn,MattWindsor91/roslyn,MattWindsor91/roslyn,CaptainHayashi/roslyn,MattWindsor91/roslyn | concepts/code/BeautifulDifferentiation/Program.cs | concepts/code/BeautifulDifferentiation/Program.cs | using System;
using System.Concepts.Prelude;
/// <summary>
/// Implementation of parts of Conal Elliot's Beautiful Differentiation.
/// </summary>
namespace BeautifulDifferentiation
{
public class Program
{
public static A F<A, implicit FloatA>(A z) where FloatA : Floating<A>
=> Sqrt(F... | using System;
using System.Concepts.Prelude;
/// <summary>
/// Implementation of parts of Conal Elliot's Beautiful Differentiation.
/// </summary>
namespace BeautifulDifferentiation
{
public class Program
{
public static A F<A, implicit FloatA>(A z) where FloatA : Floating<A>
=> Sqrt(F... | apache-2.0 | C# |
a33bb46b045898cfd1c5b20d4e467c7c979ee7cb | Convert to NFluent | dirkrombauts/pickles,irfanah/pickles,picklesdoc/pickles,picklesdoc/pickles,blorgbeard/pickles,blorgbeard/pickles,irfanah/pickles,ludwigjossieaux/pickles,picklesdoc/pickles,magicmonty/pickles,dirkrombauts/pickles,ludwigjossieaux/pickles,ludwigjossieaux/pickles,magicmonty/pickles,magicmonty/pickles,dirkrombauts/pickles,p... | src/Pickles/Pickles.Test/Extensions/StringExtensionsTests.cs | src/Pickles/Pickles.Test/Extensions/StringExtensionsTests.cs | using System;
using NFluent;
using NUnit.Framework;
using PicklesDoc.Pickles.Extensions;
namespace PicklesDoc.Pickles.Test.Extensions
{
[TestFixture]
public class StringExtensionsTests
{
[Test]
public void IsNullOrWhiteSpace_ContentPresent_ReturnsFalse()
{
string s = "s... | using System;
using NUnit.Framework;
using PicklesDoc.Pickles.Extensions;
namespace PicklesDoc.Pickles.Test.Extensions
{
[TestFixture]
public class StringExtensionsTests
{
[Test]
public void IsNullOrWhiteSpace_ContentPresent_ReturnsFalse()
{
string s = "some text";
... | apache-2.0 | C# |
0aee46701a778a6f6044bc53c41fe50c1400f3a8 | Change log lvl for history engine disable logging | delawarePro/sitecore-data-blaster | src/Sitecore.DataBlaster/Load/Processors/SyncHistoryTable.cs | src/Sitecore.DataBlaster/Load/Processors/SyncHistoryTable.cs | using System.Diagnostics;
using Sitecore.Configuration;
using Sitecore.DataBlaster.Load.Sql;
namespace Sitecore.DataBlaster.Load.Processors
{
public class SyncHistoryTable : ISyncInTransaction
{
public void Process(BulkLoadContext loadContext, BulkLoadSqlContext sqlContext)
{
if (!l... | using System.Diagnostics;
using Sitecore.Configuration;
using Sitecore.DataBlaster.Load.Sql;
namespace Sitecore.DataBlaster.Load.Processors
{
public class SyncHistoryTable : ISyncInTransaction
{
public void Process(BulkLoadContext loadContext, BulkLoadSqlContext sqlContext)
{
if (!l... | mit | C# |
195956de122bcb0e5965423ab9969e811036b163 | bump version | Fody/PropertyChanged,0x53A/PropertyChanged,user1568891/PropertyChanged | CommonAssemblyInfo.cs | CommonAssemblyInfo.cs | using System.Reflection;
[assembly: AssemblyTitle("PropertyChanged")]
[assembly: AssemblyProduct("PropertyChanged")]
[assembly: AssemblyVersion("1.46.1")]
[assembly: AssemblyFileVersion("1.46.1")]
| using System.Reflection;
[assembly: AssemblyTitle("PropertyChanged")]
[assembly: AssemblyProduct("PropertyChanged")]
[assembly: AssemblyVersion("1.46.0")]
[assembly: AssemblyFileVersion("1.46.0")]
| mit | C# |
b9f16684affd99c532f67e74341920bb342ad558 | bump version | Fody/MethodTimer | CommonAssemblyInfo.cs | CommonAssemblyInfo.cs | using System.Reflection;
[assembly: AssemblyTitle("MethodTimer")]
[assembly: AssemblyProduct("MethodTimer")]
[assembly: AssemblyVersion("1.19.0")]
[assembly: AssemblyFileVersion("1.19.0")]
| using System.Reflection;
[assembly: AssemblyTitle("MethodTimer")]
[assembly: AssemblyProduct("MethodTimer")]
[assembly: AssemblyVersion("1.18.0")]
[assembly: AssemblyFileVersion("1.18.0")]
| mit | C# |
916b370591003f8f895c795910464b2b11676ae8 | Disable classic MSIE engine. References #220 | rickbeerendonk/React.NET,rickbeerendonk/React.NET,ShikiGami/React.NET,chriscamplejohn/React.NET,reactjs/React.NET,reactjs/React.NET,ShikiGami/React.NET,reactjs/React.NET,chriscamplejohn/React.NET,rickbeerendonk/React.NET,reactjs/React.NET,ShikiGami/React.NET,rickbeerendonk/React.NET,chriscamplejohn/React.NET,reactjs/Re... | src/React.Core/AssemblyRegistration.cs | src/React.Core/AssemblyRegistration.cs | /*
* Copyright (c) 2014-2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
using J... | /*
* Copyright (c) 2014-2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
using J... | bsd-3-clause | C# |
0e7526f647d6a52e45e32bbca11f066f700cfa54 | Use default polling interval | HangfireIO/Hangfire.Highlighter,HangfireIO/Hangfire.Highlighter,HangfireIO/Hangfire.Highlighter | HangFire.Highlighter/Startup.cs | HangFire.Highlighter/Startup.cs | using Hangfire.Dashboard;
using Hangfire.Highlighter;
using Hangfire.Highlighter.Jobs;
using Microsoft.Owin;
using Owin;
[assembly:OwinStartup(typeof(Startup))]
namespace Hangfire.Highlighter
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.MapSignalR();
... | using System;
using Hangfire.Dashboard;
using Hangfire.Highlighter;
using Hangfire.Highlighter.Jobs;
using Hangfire.SqlServer;
using Microsoft.Owin;
using Owin;
[assembly:OwinStartup(typeof(Startup))]
namespace Hangfire.Highlighter
{
public class Startup
{
public void Configuration(IAppBuilder app)
... | mit | C# |
4f83af81d78b6e996ffdf0e286a3ef8e04577ad1 | Update alt text in workgroup. Did say edit/details order, not workgroup. | ucdavis/Purchasing,ucdavis/Purchasing,ucdavis/Purchasing | Purchasing.Web/Views/Workgroup/Index.cshtml | Purchasing.Web/Views/Workgroup/Index.cshtml | @model IEnumerable<Purchasing.Core.Domain.Workgroup>
@{
ViewBag.Title = "Index";
}
@section SubNav
{
<ul class="navigation">
<li>@Html.ActionLink("Create New", "CreateWorkgroup","Wizard", new{} ,new {@class="button"})</li>
</ul>
}
<table class="datatable">
<thead>
<tr>
<th></th>
<th>
Name
</th... | @model IEnumerable<Purchasing.Core.Domain.Workgroup>
@{
ViewBag.Title = "Index";
}
@section SubNav
{
<ul class="navigation">
<li>@Html.ActionLink("Create New", "CreateWorkgroup","Wizard", new{} ,new {@class="button"})</li>
</ul>
}
<table class="datatable">
<thead>
<tr>
<th></th>
<th>
Name
</th... | mit | C# |
0d70429cf04813f571a9cc1b4b05ce5a0d44d15b | Change default background color to be more grey | SteamDatabase/ValveResourceFormat | GUI/Utils/Settings.cs | GUI/Utils/Settings.cs | using System.Collections.Generic;
using System.Drawing;
using System.IO;
namespace GUI.Utils
{
internal static class Settings
{
public static List<string> GameSearchPaths { get; } = new List<string>();
public static Color BackgroundColor { get; set; }
public static void Load()
... | using System.Collections.Generic;
using System.Drawing;
using System.IO;
namespace GUI.Utils
{
internal static class Settings
{
public static List<string> GameSearchPaths { get; } = new List<string>();
public static Color BackgroundColor { get; set; } = Color.Black;
public static voi... | mit | C# |
34ff5016a46fb8e974940a580e4c378f6dc2a885 | add all AQ clauses for swagger | trenoncourt/AutoQueryable | src/AutoQueryable.AspNetCore.Swagger/AutoQueryableOperationFilter.cs | src/AutoQueryable.AspNetCore.Swagger/AutoQueryableOperationFilter.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using AutoQueryable.AspNetCore.Filter.FilterAttributes;
using Microsoft.AspNetCore.Authorization;
using Newtonsoft.Json;
using Swashbuckle.AspNetCore.Swagger;
using Swashbuckle.AspNetCore.SwaggerGen;
namespace AutoQueryable.AspNetCor... | using System.Linq;
using AutoQueryable.AspNetCore.Filter.FilterAttributes;
using Microsoft.AspNetCore.Authorization;
using Swashbuckle.AspNetCore.Swagger;
using Swashbuckle.AspNetCore.SwaggerGen;
namespace AutoQueryable.AspNetCore.Swagger
{
public class AutoQueryableOperationFilter : IOperationFilter
{
... | mit | C# |
5ba07e9d19d1ec1924a832d58424026d2fb1f0ac | use Jil | MaxHorstmann/ArinWhois.NET,keithjjones/ArinWhois.NET | src/Client/ArinClient.cs | src/Client/ArinClient.cs | using System;
using System.Net;
using System.Threading.Tasks;
using ArinWhois.Model;
using Jil;
namespace ArinWhois.Client
{
public class ArinClient
{
private const string BaseUrl = "http://whois.arin.net/rest";
public async Task<Response> QueryNetworkAsync(string ip)
{
us... | using System;
using System.Net;
using System.Threading.Tasks;
using ArinWhois.Model;
namespace ArinWhois.Client
{
public class ArinClient
{
private const string BaseUrl = "http://whois.arin.net/rest";
public async Task<Response> QueryNetworkAsync(string ip)
{
using (var wc... | mit | C# |
5fc2d12c3aee31b292bde4569fccf902b99f4d14 | Fix mail format | christophwille/myhaflinger.com,christophwille/myhaflinger.com,christophwille/myhaflinger.com | site/App_Code/MailManager.cs | site/App_Code/MailManager.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using RazorEngine;
using RazorEngine.Templating;
namespace MyHaflinger
{
public static partial class MailManager
{
public static readonly string AnfrageTemplate = @"<!DOCTYPE html>
<html>
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using RazorEngine;
using RazorEngine.Templating;
namespace MyHaflinger
{
public static partial class MailManager
{
public static readonly string AnfrageTemplate = "Name: @Model.Name\r\nEmail: @Model.Email\r\nBetreff: ... | mit | C# |
31f8d6a7924b97c62a18d3ffcf3b788c2f58d18a | support passing cookies in by header | pshort/nsupertest | NSuperTest/HttpRequestClient.cs | NSuperTest/HttpRequestClient.cs | using System;
using System.Net.Http;
namespace NSuperTest
{
internal class HttpRequestClient : IHttpRequestClient
{
private HttpClientHandler handler;
private HttpClient client;
public HttpRequestClient(string baseUri)
{
handler = new HttpClientHandler {UseCookies =... | using System;
using System.Net.Http;
namespace NSuperTest
{
internal class HttpRequestClient : IHttpRequestClient
{
private HttpClient client;
public HttpRequestClient(string baseUri)
{
client = new HttpClient();
client.BaseAddress = new Uri(baseUri);
}
... | mit | C# |
0d168a662143c4412ab70d2132ee9ee14dc058aa | Install default rules only if no customs are provided | mono/dbus-sharp,openmedicus/dbus-sharp,arfbtwn/dbus-sharp,openmedicus/dbus-sharp,mono/dbus-sharp,arfbtwn/dbus-sharp,Tragetaschen/dbus-sharp,Tragetaschen/dbus-sharp | src/Monitor.cs | src/Monitor.cs | // Copyright 2006 Alp Toker <alp@atoker.com>
// This software is made available under the MIT License
// See COPYING for details
using System;
using System.Collections.Generic;
using NDesk.DBus;
using org.freedesktop.DBus;
public class ManagedDBusTest
{
public static void Main (string[] args)
{
string addr = Addr... | // Copyright 2006 Alp Toker <alp@atoker.com>
// This software is made available under the MIT License
// See COPYING for details
using System;
using System.Collections.Generic;
using NDesk.DBus;
using org.freedesktop.DBus;
public class ManagedDBusTest
{
public static void Main (string[] args)
{
string addr = Addr... | mit | C# |
fb0685dee75cba5cf25b6c4a5971c4b6ad8f8470 | Rollback functionality and hash computing | PowerMogli/Rabbit.Db | src/Micro+/Entity/EntityInfo.cs | src/Micro+/Entity/EntityInfo.cs | using System;
using System.Collections.Generic;
using System.Linq;
using MicroORM.Materialization;
using MicroORM.Reflection;
using MicroORM.Mapping;
namespace MicroORM.Entity
{
internal sealed class EntityInfo
{
internal EntityInfo()
{
this.EntityState = EntityState.None;
... | using System.Collections.Generic;
using System;
namespace MicroORM.Entity
{
internal sealed class EntityInfo
{
internal EntityInfo()
{
this.EntityState = EntityState.None;
this.EntityHashSet = new Dictionary<string, string>();
this.LastCallTime = DateTime.No... | apache-2.0 | C# |
e58e8182a5c4cf8fca874230fe4312dd26222fae | Fix bad propertyname for Watch.Meta in master, relates to #2839 | elastic/elasticsearch-net,elastic/elasticsearch-net | src/Nest/XPack/Watcher/Watch.cs | src/Nest/XPack/Watcher/Watch.cs | using System.Collections.Generic;
using Newtonsoft.Json;
namespace Nest
{
[JsonObject]
public class Watch
{
[JsonProperty("metadata")]
public IReadOnlyDictionary<string, object> Meta { get; internal set; }
[JsonProperty("input")]
public IInputContainer Input { get; internal set; }
[JsonProperty("condit... | using System.Collections.Generic;
using Newtonsoft.Json;
namespace Nest
{
[JsonObject]
public class Watch
{
[JsonProperty("meta")]
public IReadOnlyDictionary<string, object> Meta { get; internal set; }
[JsonProperty("input")]
public IInputContainer Input { get; internal set; }
[JsonProperty("condition"... | apache-2.0 | C# |
f3b8a8a440116bd0153a58dc6c8d2178445bf26c | Format for output window message changed | msawczyn/EFDesigner,msawczyn/EFDesigner,msawczyn/EFDesigner | src/DslPackage/CustomCode/Messages.cs | src/DslPackage/CustomCode/Messages.cs | using System;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.Interop;
namespace Sawczyn.EFDesigner.EFModel
{
internal static class Messages
{
private static readonly string MessagePaneTitle = "Entity Framework Designer";
private static IVsOutputWindow _outputWindow;
pr... | using System;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.Interop;
namespace Sawczyn.EFDesigner.EFModel
{
internal static class Messages
{
private static readonly string MessagePaneTitle = "Entity Framework Designer";
private static IVsOutputWindow _outputWindow;
pr... | mit | C# |
bb491f56c7d21c64afec3d42cea36812f312900b | Fix startup | NSwag/NSwag,quails4Eva/NSwag,quails4Eva/NSwag,RSuter/NSwag,RSuter/NSwag,RSuter/NSwag,NSwag/NSwag,RSuter/NSwag,quails4Eva/NSwag,RSuter/NSwag,quails4Eva/NSwag,NSwag/NSwag,NSwag/NSwag | src/NSwag.Sample.NETCore21/Startup.cs | src/NSwag.Sample.NETCore21/Startup.cs | using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using NSwag.AspNetCore;
namespace NSwag.Sample.NETCore21
{
public class Startup
{
public Startup(IConfigurat... | using System;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using NSwag.AspNetCore;
using NSwag.SwaggerGeneration;
using NSwag.SwaggerGenerat... | mit | C# |
0082d559145649066e3c16370f609f9fc94fef15 | Allow custom date format when displaying published state | rtpHarry/Orchard,omidnasri/Orchard,LaserSrl/Orchard,fassetar/Orchard,OrchardCMS/Orchard,yersans/Orchard,bedegaming-aleksej/Orchard,AdvantageCS/Orchard,gcsuk/Orchard,yersans/Orchard,Serlead/Orchard,ehe888/Orchard,Serlead/Orchard,Dolphinsimon/Orchard,hbulzy/Orchard,AdvantageCS/Orchard,LaserSrl/Orchard,hbulzy/Orchard,fass... | src/Orchard.Web/Core/Common/Shapes.cs | src/Orchard.Web/Core/Common/Shapes.cs | using System;
using System.Web;
using System.Web.Mvc;
using Orchard.DisplayManagement;
using Orchard.DisplayManagement.Descriptors;
using Orchard.Localization;
using Orchard.Mvc.Html;
namespace Orchard.Core.Common {
public class Shapes : IShapeTableProvider {
public Shapes() {
T = NullLocalizer... | using System;
using System.Web;
using System.Web.Mvc;
using Orchard.DisplayManagement;
using Orchard.DisplayManagement.Descriptors;
using Orchard.Localization;
using Orchard.Mvc.Html;
namespace Orchard.Core.Common {
public class Shapes : IShapeTableProvider {
public Shapes() {
T = NullLocalizer... | bsd-3-clause | C# |
5784b8452f0624fefd8e55178b4233a9c33b58ac | Fix suppresion file encoding | John-Hart/autorest,devigned/autorest,Azure/azure-sdk-for-java,devigned/autorest,jhendrixMSFT/autorest,amarzavery/AutoRest,John-Hart/autorest,jianghaolu/AutoRest,tbombach/autorest,Azure/azure-sdk-for-java,Azure/autorest,tbombach/autorest,fhoring/autorest,stankovski/AutoRest,AzCiS/autorest,jhancock93/autorest,garimakhulb... | AutoRest/Generators/Extensions/Azure.Extensions/GlobalSuppressions.cs | AutoRest/Generators/Extensions/Azure.Extensions/GlobalSuppressions.cs | // This file is used by Code Analysis to maintain SuppressMessage
// attributes that are applied to this project.
// Project-level suppressions either have no target or are given
// a specific target and scoped to a namespace, type, member, etc.
//
// To add a suppression to this file, right-click the message in the ... | / / T h i s f i l e i s u s e d b y C o d e A n a l y s i s t o m a i n t a i n S u p p r e s s M e s s a g e
/ / a t t r i b u t e s t h a t a r e a p p l i e d t o t h i s p r o j e c t .
/ / P r o j e c t - l e v e l s u p p r e s s i o n s e i t h e r h a v e n ... | mit | C# |
5f9be0f6f7728439e14bcb26f035ef592faa0902 | Add clipping for Gtk2 context | residuum/xwt,antmicro/xwt,mminns/xwt,TheBrainTech/xwt,akrisiun/xwt,mminns/xwt,sevoku/xwt,iainx/xwt,hwthomas/xwt,mono/xwt,hamekoz/xwt,directhex/xwt,lytico/xwt,steffenWi/xwt,cra0zy/xwt | Xwt.Gtk/Xwt.GtkBackend/CanvasBackendGtk2.cs | Xwt.Gtk/Xwt.GtkBackend/CanvasBackendGtk2.cs | //
// CanvasBackendGtk.cs
//
// Author:
// Vsevolod Kukol <v.kukol@rubologic.de>
//
// Copyright (c) 2014 Vsevolod Kukol
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without re... | //
// CanvasBackendGtk.cs
//
// Author:
// Vsevolod Kukol <v.kukol@rubologic.de>
//
// Copyright (c) 2014 Vsevolod Kukol
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without re... | mit | C# |
9bdf99e28afe5cc35e16cfb60674d3733b1e7dc1 | add space | cartermp/dnx-apps | libs/lib/src/Lib/Lib.cs | libs/lib/src/Lib/Lib.cs | using System;
#if NET40
using System.Net;
#else
using System.Net.Http;
using System.Threading.Tasks;
#endif
using System.Text.RegularExpressions;
namespace Lib
{
public class Library
{
#if NET40
private readonly WebClient _client = new WebClient();
private readonly object _locker = new object... | using System;
#if NET40
using System.Net;
#else
using System.Net.Http;
using System.Threading.Tasks;
#endif
using System.Text.RegularExpressions;
namespace Lib
{
public class Library
{
#if NET40
private readonly WebClient _client = new WebClient();
private readonly object _locker = new object... | mit | C# |
3a7547d2df9fc178c0e62ea0ca4441e6028eba74 | use GetClientCertAsync | MienDev/IdentityServer4,MienDev/IdentityServer4,IdentityServer/IdentityServer4,MienDev/IdentityServer4,IdentityServer/IdentityServer4,MienDev/IdentityServer4,IdentityServer/IdentityServer4,IdentityServer/IdentityServer4 | samples/Clients/src/SampleApi/ConfirmationValidationMiddleware.cs | samples/Clients/src/SampleApi/ConfirmationValidationMiddleware.cs | using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Http;
using Newtonsoft.Json.Linq;
using System;
using System.Threading.Tasks;
namespace SampleApi
{
// this middleware validate the cnf claim (if present) against the thumbprint of the X.509 client certificate for the current client
public ... | using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Http;
using Newtonsoft.Json.Linq;
using System;
using System.Threading.Tasks;
namespace SampleApi
{
// this middleware validate the cnf claim (if present) against the thumbprint of the X.509 client certificate for the current client
public ... | apache-2.0 | C# |
bddd89f9e08728756450804f86b411b4b73e75d2 | disable backup for cache | mgj/fetcher,mgj/fetcher | Fetcher.Touch/Services/FetcherRepositoryStoragePathService.cs | Fetcher.Touch/Services/FetcherRepositoryStoragePathService.cs | using artm.Fetcher.Core.Services;
using Foundation;
using System;
using System.IO;
namespace artm.Fetcher.Touch.Services
{
public class FetcherRepositoryStoragePathService : IFetcherRepositoryStoragePathService
{
public string GetPath(string filename = "fetcher.db3")
{
var document... | using artm.Fetcher.Core.Services;
using System;
using System.IO;
namespace artm.Fetcher.Touch.Services
{
public class FetcherRepositoryStoragePathService : IFetcherRepositoryStoragePathService
{
public string GetPath(string filename = "fetcher.db3")
{
var documents = Environment.Ge... | apache-2.0 | C# |
8824fe2ac60814da50f4afbdabc074c1e00205ea | Fix erros after rebase. #381 | Sitecore/Sitecore-Instance-Manager | src/SIM.Sitecore9Installer/Validation/Validators/BaseValidator.cs | src/SIM.Sitecore9Installer/Validation/Validators/BaseValidator.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Task = SIM.Sitecore9Installer.Tasks.Task;
namespace SIM.Sitecore9Installer.Validation.Validators
{
public abstract class BaseValidator:IValidator
{
public BaseValidator()
{
this.... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Task = SIM.Sitecore9Installer.Tasks.Task;
namespace SIM.Sitecore9Installer.Validation.Validators
{
public abstract class BaseValidator:IValidator
{
public BaseValidator()
{
this.... | mit | C# |
4e1e235aa969422cbae9282035ca4dcb8db1b80a | Add tests | skonves/Konves.ChordPro | tests/Konves.ChordPro.UnitTests/DirectiveComponentsTestFixture.cs | tests/Konves.ChordPro.UnitTests/DirectiveComponentsTestFixture.cs | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Konves.ChordPro.UnitTests
{
[TestClass]
public class DirectiveComponentsTestFixture
{
[TestMethod]
public void TryParseTest()
{
... | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Konves.ChordPro.UnitTests
{
[TestClass]
public class DirectiveComponentsTestFixture
{
[TestMethod]
public void TryParseTest()
{
... | apache-2.0 | C# |
fad460d69e4a133b05de63d502288eca3066a56b | Add ability to save commands mapping | StanislavUshakov/ArduinoWindowsRemoteControl | ArduinoWindowsRemoteControl/Services/RemoteCommandParserService.cs | ArduinoWindowsRemoteControl/Services/RemoteCommandParserService.cs | using Arduino;
using ArduinoWindowsRemoteControl.Repositories;
using Core.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ArduinoWindowsRemoteControl.Services
{
/// <summary>
/// Service that returns parsers for differen... | using Arduino;
using ArduinoWindowsRemoteControl.Repositories;
using Core.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ArduinoWindowsRemoteControl.Services
{
/// <summary>
/// Service that returns parsers for differen... | mit | C# |
c6f89d31a915d25917ae683424ced705d96c21d3 | Rename Url -> QueryString (typo) | erik-kallen/SaltarelleCompiler,drysart/SaltarelleCompiler,ProdigySim/SaltarelleCompiler,Saltarelle/SaltarelleCompiler,ProdigySim/SaltarelleCompiler,enginekit/SaltarelleCompiler,kenneyw/SaltarelleCompiler,jamescourtney/SaltarelleCompiler,ayo10/SaltarelleCompiler,marwijn/SaltarelleCompiler,AstrorEnales/SaltarelleCompiler... | Runtime/src/Libraries/NodeJS/QueryStringModule/QueryString.cs | Runtime/src/Libraries/NodeJS/QueryStringModule/QueryString.cs | using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using System.Text;
namespace NodeJS.QueryStringModule {
[Imported]
[GlobalMethods]
[ModuleName("querystring")]
public static class QueryString {
public static string Stringify(JsDictionary obj) { ret... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using System.Text;
namespace NodeJS.QueryStringModule {
[Imported]
[GlobalMethods]
[ModuleName("querystring")]
public static class Url {
public static string Stringify(JsDictionary obj) { return null... | apache-2.0 | C# |
39b8b77860f7ecb5e548d9ca12140d1834024133 | Update MessagePackSerializer.cs | tiksn/TIKSN-Framework | TIKSN.Core/Serialization/MessagePack/MessagePackSerializer.cs | TIKSN.Core/Serialization/MessagePack/MessagePackSerializer.cs | using System.IO;
using MsgPack.Serialization;
namespace TIKSN.Serialization.MessagePack
{
public class MessagePackSerializer : SerializerBase<byte[]>
{
private readonly SerializationContext _serializationContext;
public MessagePackSerializer(SerializationContext serializationContext) =>
... | using System.IO;
using MsgPack.Serialization;
namespace TIKSN.Serialization.MessagePack
{
public class MessagePackSerializer : SerializerBase<byte[]>
{
private readonly SerializationContext _serializationContext;
public MessagePackSerializer(SerializationContext serializationContext) =>
... | mit | C# |
ec28e9a8a6a86c26913cf6bcf97e011e6d617b69 | Fix build | blebougge/Catel | src/Catel.Core/Catel.Core.Shared/Runtime/Serialization/Models/SerializableKeyValuePair.cs | src/Catel.Core/Catel.Core.Shared/Runtime/Serialization/Models/SerializableKeyValuePair.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="SerializableKeyValuePair.cs" company="Catel development team">
// Copyright (c) 2008 - 2015 Catel development team. All rights reserved.
// </copyright>
// ---------------------... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="SerializableKeyValuePair.cs" company="Catel development team">
// Copyright (c) 2008 - 2015 Catel development team. All rights reserved.
// </copyright>
// ---------------------... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.