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 |
|---|---|---|---|---|---|---|---|---|
764a4c93728ee1ec4033eb1581968f3168accbfb | Allow custom user agent | charlenni/Mapsui,charlenni/Mapsui,pauldendulk/Mapsui | Mapsui/Utilities/OpenStreetMap.cs | Mapsui/Utilities/OpenStreetMap.cs | using BruTile.Predefined;
using BruTile.Web;
using Mapsui.Layers;
namespace Mapsui.Utilities
{
public static class OpenStreetMap
{
private const string DefaultUserAgent = "Default Mapsui user-agent";
private static readonly BruTile.Attribution OpenStreetMapAttribution = new BruTile.Attribution... | using BruTile.Predefined;
using BruTile.Web;
using Mapsui.Layers;
namespace Mapsui.Utilities
{
public static class OpenStreetMap
{
private static readonly BruTile.Attribution OpenStreetMapAttribution = new BruTile.Attribution(
"© OpenStreetMap contributors", "https://www.openstreetmap.org/... | mit | C# |
c88d65d9acca8ff439f5c7480a8bf0bfff901c8b | add diagnositics to sample | mike-ward/Nancy.Pile,mike-ward/Nancy.Pile,mike-ward/Nancy.Pile,mike-ward/Nancy.Pile | Nancy.Pile.Sample/Bootstrapper.cs | Nancy.Pile.Sample/Bootstrapper.cs | using Nancy.Conventions;
using Nancy.Diagnostics;
namespace Nancy.Pile.Sample
{
using Nancy;
public class Bootstrapper : DefaultNancyBootstrapper
{
protected override void ConfigureConventions(NancyConventions nancyConventions)
{
base.ConfigureConventions(nancyConventions);
... | using Nancy.Conventions;
namespace Nancy.Pile.Sample
{
using Nancy;
public class Bootstrapper : DefaultNancyBootstrapper
{
protected override void ConfigureConventions(NancyConventions nancyConventions)
{
base.ConfigureConventions(nancyConventions);
nancyConventio... | mit | C# |
61a140d3f71eb30ed883026a68533379ce18b691 | Change ImageStatus enum | interfax/interfax-dotnet,interfax/interfax-dotnet | InterFAX.Api/ListSortOrder.cs | InterFAX.Api/ListSortOrder.cs | namespace InterFAX.Api
{
public enum ListSortOrder { Ascending, Descending }
public enum ImageStatus
{
READ,
UNREAD,
DONT_EXIST
}
} | namespace InterFAX.Api
{
public enum ListSortOrder { Ascending, Descending }
public enum ImageStatus
{
READ,
UNREAD
}
} | mit | C# |
a41aeb318c78a13d700c8611d879604ea4a65069 | Fix tests | gavazquez/LunaMultiPlayer,DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer | LMP.Tests/MessageStoreTest.cs | LMP.Tests/MessageStoreTest.cs | using LunaCommon.Message;
using LunaCommon.Message.Base;
using LunaCommon.Message.Data.Vessel;
using LunaCommon.Message.Server;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
namespace LMP.Tests
{
[TestClass]
public class MessageStoreTest
{
private static readonly ServerMessageF... | using LunaCommon.Message;
using LunaCommon.Message.Base;
using LunaCommon.Message.Data.Vessel;
using LunaCommon.Message.Server;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
namespace LMP.Tests
{
[TestClass]
public class MessageStoreTest
{
private static readonly ServerMessageF... | mit | C# |
fb7bedeebec4c5e903e60b11cc986b4c98942db3 | Fix bad xml doc comment (#753) | Microsoft/dotnet-apiport,Microsoft/dotnet-apiport,mjrousos/dotnet-apiport,Microsoft/dotnet-apiport,mjrousos/dotnet-apiport | src/lib/Microsoft.Fx.Portability/Utils/JsonConverters/JsonMultiDictionaryConverter.cs | src/lib/Microsoft.Fx.Portability/Utils/JsonConverters/JsonMultiDictionaryConverter.cs | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
namespace Microsoft.Fx.Portability.Utils.JsonConverters
{
/// <summary>
... | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
namespace Microsoft.Fx.Portability.Utils.JsonConverters
{
/// <summary>
... | mit | C# |
77737064457d5f2d30b82f8893cac11cf493558c | remove Result implicit operator | 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# |
8a345a475312f0b4e917c1f275fd9fd89e1f1aa3 | Improve the test in regards to \r\n | SteamDatabase/ValveKeyValue | ValveKeyValue/ValveKeyValue.Test/Text/CommentOnEndOfTheLine.cs | ValveKeyValue/ValveKeyValue.Test/Text/CommentOnEndOfTheLine.cs | using System.Linq;
using System.Text;
using NUnit.Framework;
namespace ValveKeyValue.Test
{
class CommentOnEndOfTheLine
{
[Test]
public void CanHandleCommentOnEndOfTheLine()
{
var text = new StringBuilder();
text.Append(@"""test_kv""" + "\n");
text.A... | using System.Linq;
using System.Text;
using NUnit.Framework;
namespace ValveKeyValue.Test
{
class CommentOnEndOfTheLine
{
[Test]
public void CanHandleCommentOnEndOfTheLine()
{
var text = new StringBuilder();
text.AppendLine(@"""test_kv""");
text.Appe... | mit | C# |
8abaf017b9df162672c05e1a8803916777bc2f25 | Use top-level program | martincostello/adventofcode,martincostello/adventofcode,martincostello/adventofcode,martincostello/adventofcode | tests/AdventOfCode.Benchmarks/Program.cs | tests/AdventOfCode.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.
using BenchmarkDotNet.Running;
using MartinCostello.AdventOfCode.Benchmarks;
BenchmarkRunner.Run<PuzzleBenchmarks>(args: args);
| // 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.
using BenchmarkDotNet.Running;
namespace MartinCostello.AdventOfCode.Benchmarks;
/// <summary>
/// A console application that runs performance... | apache-2.0 | C# |
76bca3de32fcd28792d0630623aed078db9df715 | Fix xaml docs | Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver | src/AsmResolver.PE/DotNet/Metadata/Tables/Rows/PropertyAttributes.cs | src/AsmResolver.PE/DotNet/Metadata/Tables/Rows/PropertyAttributes.cs | using System;
namespace AsmResolver.PE.DotNet.Metadata.Tables.Rows
{
/// <summary>
/// Provides members defining all flags that can be assigned to a property definition.
/// </summary>
[Flags]
public enum PropertyAttributes : ushort
{
/// <summary>
/// The property has no attrib... | using System;
namespace AsmResolver.PE.DotNet.Metadata.Tables.Rows
{
/// <summary>
/// Provides members defining all flags that can be assigned to a property definition.
/// </summary>
[Flags]
public enum PropertyAttributes : ushort
{
/// <summary>
/// Specifies that no attribut... | mit | C# |
d2ddbe3b2ea3e08099e5987bcfa7d68d34bd07ac | Improve test coverage for existing duration JSON converter. | malcolmr/nodatime,zaccharles/nodatime,malcolmr/nodatime,nodatime/nodatime,jskeet/nodatime,zaccharles/nodatime,zaccharles/nodatime,nodatime/nodatime,zaccharles/nodatime,jskeet/nodatime,BenJenkinson/nodatime,malcolmr/nodatime,zaccharles/nodatime,BenJenkinson/nodatime,malcolmr/nodatime,zaccharles/nodatime | src/NodaTime.Serialization.Test/JsonNet/NodaDurationConverterTest.cs | src/NodaTime.Serialization.Test/JsonNet/NodaDurationConverterTest.cs | // Copyright 2012 The Noda Time Authors. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
using NUnit.Framework;
using Newtonsoft.Json;
using NodaTime.Serialization.JsonNet;
namespace NodaTime.Serialization.Test.JsonNet
{
[TestFi... | // Copyright 2012 The Noda Time Authors. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
using NUnit.Framework;
using Newtonsoft.Json;
using NodaTime.Serialization.JsonNet;
namespace NodaTime.Serialization.Test.JsonNet
{
[TestFi... | apache-2.0 | C# |
b6ef95143f32b445191bcbb942894bef80e25945 | Improve xml-doc | DrabWeb/osu-framework,peppy/osu-framework,ZLima12/osu-framework,ppy/osu-framework,ZLima12/osu-framework,paparony03/osu-framework,naoey/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,EVAST9919/osu-framework,Tom94/osu-framework,paparony03/osu-framework,Nabile-Rahmani/osu-framework,smoogipooo/osu-framework,Dr... | osu.Framework/Audio/Track/TrackAmplitudes.cs | osu.Framework/Audio/Track/TrackAmplitudes.cs | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using System;
namespace osu.Framework.Audio.Track
{
public struct TrackAmplitudes
{
public float LeftChannel;
public float R... | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using System;
namespace osu.Framework.Audio.Track
{
public struct TrackAmplitudes
{
public float LeftChannel;
public float R... | mit | C# |
bbad70c3f0101fed3121bb894f28b3d6884a1322 | Fix mod perfect test scenes failing due to null ruleset provided | UselessToucan/osu,smoogipoo/osu,peppy/osu,peppy/osu,ppy/osu,ppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,smoogipooo/osu,smoogipoo/osu,peppy/osu-new,UselessToucan/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,UselessToucan/osu | osu.Game/Tests/Visual/ModPerfectTestScene.cs | osu.Game/Tests/Visual/ModPerfectTestScene.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.Game.Beatmaps;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Objects;
namespace osu.Game.Tests.Visual
{
public abstract cl... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Beatmaps;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Objects;
namespace osu.Game.Tests.Visual
{
public abstract cl... | mit | C# |
96656055f07a385b156eeeb350e604bfc9ceee1f | Remove another unnecessary import | 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;
namespace AeroSuite
{
/// <summary>
/// Provides some methods from the user32 and uxtheme libraries.
/// </summary>
internal static class NativeMethods
{
private cons... | 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# |
627caed3ab17b70815c16d0e434478a3926f5100 | Add SaveOrUpdate | generik0/Smooth.IoC.Dapper.Repository.UnitOfWork,generik0/Smooth.IoC.Dapper.Repository.UnitOfWork | Smoother.IoC.Dapper.FastCRUD.Repository.UnitOfWork/Repo/IRepository.cs | Smoother.IoC.Dapper.FastCRUD.Repository.UnitOfWork/Repo/IRepository.cs | using System.Collections.Generic;
using System.Threading.Tasks;
using Smoother.IoC.Dapper.FastCRUD.Repository.UnitOfWork.Connection;
using Smoother.IoC.Dapper.FastCRUD.Repository.UnitOfWork.UoW;
namespace Smoother.IoC.Dapper.FastCRUD.Repository.UnitOfWork.Repo
{
public interface IRepository<TSession, TEntity, TPk... | using System.Collections.Generic;
using System.Threading.Tasks;
using Smoother.IoC.Dapper.FastCRUD.Repository.UnitOfWork.Connection;
using Smoother.IoC.Dapper.FastCRUD.Repository.UnitOfWork.UoW;
namespace Smoother.IoC.Dapper.FastCRUD.Repository.UnitOfWork.Repo
{
public interface IRepository<TSession, TEntity, in ... | mit | C# |
78dcbbb6badb6e49830794771efadd05decc58f2 | Add public ctor to DirectoryEntry | Priya91/corefx-1,alphonsekurian/corefx,elijah6/corefx,ericstj/corefx,janhenke/corefx,lggomez/corefx,krk/corefx,Petermarcu/corefx,the-dwyer/corefx,nbarbettini/corefx,krytarowski/corefx,ViktorHofer/corefx,richlander/corefx,YoupHulsebos/corefx,rubo/corefx,dsplaisted/corefx,jlin177/corefx,SGuyGe/corefx,shimingsg/corefx,the... | src/System.Reflection.Metadata/src/System/Reflection/PortableExecutable/DirectoryEntry.cs | src/System.Reflection.Metadata/src/System/Reflection/PortableExecutable/DirectoryEntry.cs | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace System.Reflection.PortableExecutable
{
public struct DirectoryEntry
{
public readonly int RelativeVirtualAddress;
public readonly int ... | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace System.Reflection.PortableExecutable
{
public struct DirectoryEntry
{
public readonly int RelativeVirtualAddress;
public readonly int ... | mit | C# |
0d804a4cba8d7ac6d8f87ae6b8d2f58e2676a8eb | set version number in assembly | sebastianhallen/Vostok,sebastianhallen/Vostok | Vostok/Properties/AssemblyInfo.cs | Vostok/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("Vo... | 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("Vo... | mit | C# |
36c7aca0a95b069fb565e140a2f0917e45f68cca | remove array | Appleseed/base,Appleseed/base | Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Model/SolrResponseItem.cs | Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Model/SolrResponseItem.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Appleseed.Base.Alerts.Model
{
class SolrResponseItem
{
public string id { get; set; }
public string item_type { get; set; }
public string address_1 { get; set;... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Appleseed.Base.Alerts.Model
{
class SolrResponseItem
{
public string id { get; set; }
public string item_type { get; set; }
public string address_1 { get; set;... | apache-2.0 | C# |
d361c3a71606580dc6ec0317f9216c6c3dcf8601 | Update `TagHelperSample` conditionalcomment page. | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | samples/TagHelperSample.Web/Views/TagHelper/ConditionalComment.cshtml | samples/TagHelperSample.Web/Views/TagHelper/ConditionalComment.cshtml | @using TagHelperSample.Web
@addTagHelper "*, TagHelperSample.Web"
<iecondition mode="DownlevelRevealed" condition="gt IE 7">
<p>Content visible to all browsers newer than Internet Explorer 7.</p>
</iecondition>
<iecondition mode="DownlevelHidden" condition="IE 7">
<p>Content visible only to Internet Explorer ... | @using TagHelperSample.Web
@addTagHelper "*, TagHelperSample.Web"
<iecondition mode="CommentMode.DownlevelRevealed" condition="gt IE 7">
<p>Content visible to all browsers newer than Internet Explorer 7.</p>
</iecondition>
<iecondition mode="CommentMode.DownlevelHidden" condition="IE 7">
<p>Content visible on... | apache-2.0 | C# |
c4ea36ccdc8607c882c9dc8345eb07d21b300292 | move Other above Tracked, added PositionOnly controller state | killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,vladkol/MixedRealityToolkit-Unity,vladkol/MixedRealityToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,vladkol/MixedRealityToolkit-Unity,StephenHodgson/MixedRealityToolkit-Unity | Assets/MixedRealityToolkit/_Core/Definitions/Devices/ControllerState.cs | Assets/MixedRealityToolkit/_Core/Definitions/Devices/ControllerState.cs | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
namespace Microsoft.MixedReality.Toolkit.Internal.Definitions.Devices
{
/// <summary>
/// The Controller State defines how a controller or headset is current... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
namespace Microsoft.MixedReality.Toolkit.Internal.Definitions.Devices
{
/// <summary>
/// The Controller State defines how a controller or headset is current... | mit | C# |
6da14c506f924f658410b6d1fe3f4ec718c5dcc1 | mark CLS compliant | OBeautifulCode/OBeautifulCode.String | OBeautifulCode.Libs.String/Properties/AssemblyInfo.cs | OBeautifulCode.Libs.String/Properties/AssemblyInfo.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="AssemblyInfo.cs" company="OBeautifulCode">
// Copyright 2014 OBeautifulCode
// </copyright>
// <summary>
// Assembly information.
// </summary>
// ----------------------------... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="AssemblyInfo.cs" company="OBeautifulCode">
// Copyright 2014 OBeautifulCode
// </copyright>
// <summary>
// Assembly information.
// </summary>
// ----------------------------... | mit | C# |
07d01c4672d5afcb5134923b06c201b44b5303a6 | Fix for Ice cream help message being null. | samfun123/KtaneTwitchPlays,CaitSith2/KtaneTwitchPlays | TwitchPlaysAssembly/Src/ComponentSolvers/Modded/Misc/IceCreamConfirm.cs | TwitchPlaysAssembly/Src/ComponentSolvers/Modded/Misc/IceCreamConfirm.cs | using System;
using System.Collections;
using System.Reflection;
using Newtonsoft.Json;
public class IceCreamConfirm : ComponentSolver
{
public IceCreamConfirm(BombCommander bombCommander, BombComponent bombComponent) :
base(bombCommander, bombComponent)
{
_component = bombComponent.GetComponent(_componentType);
... | using System;
using System.Collections;
using System.Reflection;
using Newtonsoft.Json;
public class IceCreamConfirm : ComponentSolver
{
public IceCreamConfirm(BombCommander bombCommander, BombComponent bombComponent) :
base(bombCommander, bombComponent)
{
_component = bombComponent.GetComponent(_componentType);... | mit | C# |
4ba41ddadefef6d0f578dc1e3fca7640c700d3f0 | Add validation implementation in people module. | henrikfroehling/TraktApiSharp | Source/Lib/TraktApiSharp/Modules/TraktPeopleModule.cs | Source/Lib/TraktApiSharp/Modules/TraktPeopleModule.cs | namespace TraktApiSharp.Modules
{
using Objects.Basic;
using Objects.Get.People;
using Objects.Get.People.Credits;
using Requests;
using Requests.WithoutOAuth.People;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
public class TraktPeopleModule : Trak... | namespace TraktApiSharp.Modules
{
using Objects.Basic;
using Objects.Get.People;
using Objects.Get.People.Credits;
using Requests;
using Requests.WithoutOAuth.People;
using System.Collections.Generic;
using System.Threading.Tasks;
public class TraktPeopleModule : TraktBaseModule
{
... | mit | C# |
12f80cf95ab4d4144bf4f801ee016220c8223f05 | Remove unused setters from IMapPresenterModel properties | MHeasell/Mappy,MHeasell/Mappy | Mappy/Models/IMapPresenterModel.cs | Mappy/Models/IMapPresenterModel.cs | namespace Mappy.Models
{
using System.ComponentModel;
using System.Drawing;
public interface IMapPresenterModel : INotifyPropertyChanged
{
IBindingMapModel Map { get; }
bool HeightmapVisible { get; }
bool FeaturesVisible { get; }
bool GridVisible { get; }... | namespace Mappy.Models
{
using System.ComponentModel;
using System.Drawing;
public interface IMapPresenterModel : INotifyPropertyChanged
{
IBindingMapModel Map { get; }
bool HeightmapVisible { get; set; }
bool FeaturesVisible { get; set; }
bool GridVisibl... | mit | C# |
2e3b9efbd58fc7d3ba7b0b97c796ff953d16ece1 | Make NetworkConverter internal | maxmind/GeoIP2-dotnet | MaxMind.GeoIP2/NetworkConverter.cs | MaxMind.GeoIP2/NetworkConverter.cs | using MaxMind.Db;
using Newtonsoft.Json;
using System;
using System.Net;
namespace MaxMind.GeoIP2
{
internal class NetworkConverter : JsonConverter<Network>
{
public override void WriteJson(JsonWriter writer, Network value, JsonSerializer serializer)
{
writer.WriteValue(value.ToStr... | using MaxMind.Db;
using Newtonsoft.Json;
using System;
using System.Net;
namespace MaxMind.GeoIP2
{
class NetworkConverter : JsonConverter<Network>
{
public override void WriteJson(JsonWriter writer, Network value, JsonSerializer serializer)
{
writer.WriteValue(value.ToString());
... | apache-2.0 | C# |
be236da54bfdfdcf3cadf3e025c1819d205caf4b | Remove unused flag | kzu/cecil,ttRevan/cecil,gluck/cecil,sailro/cecil,saynomoo/cecil,cgourlay/cecil,fnajera-rac-de/cecil,joj/cecil,jbevain/cecil,xen2/cecil,furesoft/cecil,mono/cecil,SiliconStudio/Mono.Cecil | Mono.Cecil/MethodImplAttributes.cs | Mono.Cecil/MethodImplAttributes.cs | //
// MethodImplAttributes.cs
//
// Author:
// Jb Evain (jbevain@gmail.com)
//
// Copyright (c) 2008 - 2011 Jb Evain
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restrictio... | //
// MethodImplAttributes.cs
//
// Author:
// Jb Evain (jbevain@gmail.com)
//
// Copyright (c) 2008 - 2011 Jb Evain
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restrictio... | mit | C# |
2b36a3c2cca96a4143cbd2d854db08c9c4dea6f2 | Update UnsignedBigIntegerBinarySerializer.cs | tiksn/TIKSN-Framework | TIKSN.Core/Serialization/Numerics/UnsignedBigIntegerBinarySerializer.cs | TIKSN.Core/Serialization/Numerics/UnsignedBigIntegerBinarySerializer.cs | using System;
using System.Linq;
using System.Numerics;
namespace TIKSN.Serialization.Numerics
{
/// <summary>
/// Custom (specialized or typed) serializer for unsigned <see cref="BigInteger"/>
/// </summary>
public class UnsignedBigIntegerBinarySerializer : ICustomSerializer<byte[], BigInteger>
{... | using System;
using System.Linq;
using System.Numerics;
namespace TIKSN.Serialization.Numerics
{
/// <summary>
/// Custom (specialized or typed) serializer for unsigned <see cref="BigInteger"/>
/// </summary>
public class UnsignedBigIntegerBinarySerializer : ICustomSerializer<byte[], BigInteger>
{... | mit | C# |
390654a8854799eb453d02b56220f580d8facd8f | Remove old ServiceBusConnection declaration | dotnet-architecture/eShopOnContainers,albertodall/eShopOnContainers,andrelmp/eShopOnContainers,albertodall/eShopOnContainers,TypeW/eShopOnContainers,andrelmp/eShopOnContainers,dotnet-architecture/eShopOnContainers,productinfo/eShopOnContainers,albertodall/eShopOnContainers,productinfo/eShopOnContainers,albertodall/eSho... | src/BuildingBlocks/EventBus/EventBusServiceBus/DefaultServiceBusPersisterConnection.cs | src/BuildingBlocks/EventBus/EventBusServiceBus/DefaultServiceBusPersisterConnection.cs | using Microsoft.Azure.ServiceBus;
using Microsoft.Extensions.Logging;
using System;
using System.IO;
namespace Microsoft.eShopOnContainers.BuildingBlocks.EventBusServiceBus
{
public class DefaultServiceBusPersisterConnection :IServiceBusPersisterConnection
{
private readonly ILogger<DefaultServiceBusP... | using Microsoft.Azure.ServiceBus;
using Microsoft.Extensions.Logging;
using System;
using System.IO;
namespace Microsoft.eShopOnContainers.BuildingBlocks.EventBusServiceBus
{
public class DefaultServiceBusPersisterConnection : ServiceBusConnection, IServiceBusPersisterConnection
{
private readonly ILo... | mit | C# |
7bc65ffd5a115da378e8f63d44ceb65f54959231 | Revert "Fix up for 16.11" | KevinRansom/roslyn,eriawan/roslyn,physhi/roslyn,shyamnamboodiripad/roslyn,jasonmalinowski/roslyn,diryboy/roslyn,weltkante/roslyn,physhi/roslyn,jasonmalinowski/roslyn,bartdesmet/roslyn,shyamnamboodiripad/roslyn,AmadeusW/roslyn,mavasani/roslyn,diryboy/roslyn,dotnet/roslyn,wvdd007/roslyn,mavasani/roslyn,mavasani/roslyn,Am... | src/Tools/ExternalAccess/OmniSharp/Internal/PickMembers/OmniSharpPickMembersService.cs | src/Tools/ExternalAccess/OmniSharp/Internal/PickMembers/OmniSharpPickMembersService.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;
using System.Collections.Immutable;
using System.Composition;
using Microsoft.CodeAnalysis.ExternalAc... | // 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;
using System.Collections.Immutable;
using System.Composition;
using Microsoft.CodeAnalysis.ExternalAc... | mit | C# |
42b4d9a54bd1b24ef7cf132b9a9ff0802c2875f5 | Fix bug when trying to create an User to a build that has no triggered by. | skahal/Buildron,skahal/Buildron,skahal/Buildron | src/Buildron/Assets/_Assets/Scripts/Controllers/Users/UsersManager.cs | src/Buildron/Assets/_Assets/Scripts/Controllers/Users/UsersManager.cs | #region Usings
using UnityEngine;
using System.Collections;
using Buildron.Domain;
using Zenject;
using Buildron.Domain.Builds;
using Buildron.Domain.Users;
#endregion
/// <summary>
/// Manages the UserController creations.
/// </summary>
[AddComponentMenu("Buildron/Controllers/UsersManager")]
public class UsersMana... | #region Usings
using UnityEngine;
using System.Collections;
using Buildron.Domain;
using Zenject;
using Buildron.Domain.Builds;
using Buildron.Domain.Users;
#endregion
/// <summary>
/// Manages the UserController creations.
/// </summary>
[AddComponentMenu("Buildron/Controllers/UsersManager")]
public class UsersMana... | mit | C# |
6d9ee1b4931db77219168b20d1b6f502c5fecbb9 | Add missing `Installments` option in `PaymentIntentPaymentMethodOptionsCardOptions` | stripe/stripe-dotnet | src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodOptionsCardOptions.cs | src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodOptionsCardOptions.cs | namespace Stripe
{
using System;
using Newtonsoft.Json;
public class PaymentIntentPaymentMethodOptionsCardOptions : INestedOptions
{
/// <summary>
/// Installment configuration for payments attempted on this PaymentIntent (Mexico Only).
/// </summary>
[JsonProperty("inst... | namespace Stripe
{
using System;
using Newtonsoft.Json;
public class PaymentIntentPaymentMethodOptionsCardOptions : INestedOptions
{
/// <summary>
/// When specified, this parameter indicates that a transaction will be marked as MOTO
/// (Mail Order Telephone Order) and thus out... | apache-2.0 | C# |
f29459b769be09c0d9fe5752e92073b52d1d56fb | Fix lines spaces | zebraxxl/Winium.Desktop,jorik041/Winium.Desktop,2gis/Winium.Desktop | src/Winium.Desktop.Driver/CommandExecutors/GetDataGridCellExecutor.cs | src/Winium.Desktop.Driver/CommandExecutors/GetDataGridCellExecutor.cs | namespace Winium.Desktop.Driver.CommandExecutors
{
#region using
using Winium.Cruciatus.Extensions;
using Winium.StoreApps.Common;
#endregion
internal class GetDataGridCellExecutor : CommandExecutorBase
{
#region Methods
protected override string DoImpl()
{
... | namespace Winium.Desktop.Driver.CommandExecutors
{
#region using
using Winium.Cruciatus.Extensions;
using Winium.StoreApps.Common;
#endregion
internal class GetDataGridCellExecutor : CommandExecutorBase
{
#region Methods
protected override string DoImpl()
{
... | mpl-2.0 | C# |
44c49dea2413243a153dc86200f5b9c367107144 | Add name and value to Bootstrap components | roman-yagodin/R7.Epsilon,roman-yagodin/R7.Epsilon,roman-yagodin/R7.Epsilon | R7.Epsilon/Skins/PopupSkin.ascx.cs | R7.Epsilon/Skins/PopupSkin.ascx.cs | //
// PopupSkin.ascx.cs
//
// Author:
// Roman M. Yagodin <roman.yagodin@gmail.com>
//
// Copyright (c) 2017 Roman M. Yagodin
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Founda... | //
// PopupSkin.ascx.cs
//
// Author:
// Roman M. Yagodin <roman.yagodin@gmail.com>
//
// Copyright (c) 2017 Roman M. Yagodin
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Founda... | agpl-3.0 | C# |
9d8dac9d2e14d0b57f4d7025625eea3eb6d30798 | Add benchmark for formatting a pattern with non-zero tick-of-second (ISO format). | nodatime/nodatime,BenJenkinson/nodatime,malcolmr/nodatime,zaccharles/nodatime,malcolmr/nodatime,zaccharles/nodatime,jskeet/nodatime,nodatime/nodatime,jskeet/nodatime,BenJenkinson/nodatime,zaccharles/nodatime,zaccharles/nodatime,zaccharles/nodatime,malcolmr/nodatime,zaccharles/nodatime,malcolmr/nodatime | src/NodaTime.Benchmarks/NodaTimeTests/Text/InstantPatternBenchmarks.cs | src/NodaTime.Benchmarks/NodaTimeTests/Text/InstantPatternBenchmarks.cs | // Copyright 2013 The Noda Time Authors. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
using System.Globalization;
using NodaTime.Benchmarks.Framework;
using NodaTime.Text;
namespace NodaTime.Benchmarks.NodaTimeTests.Text
{
[... | // Copyright 2013 The Noda Time Authors. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
using System.Globalization;
using NodaTime.Benchmarks.Framework;
using NodaTime.Text;
namespace NodaTime.Benchmarks.NodaTimeTests.Text
{
[... | apache-2.0 | C# |
544a0eb062842d2283272c08393802ebc8f0a189 | fix enemy hp manager | SpanishArmada/shapemate,SpanishArmada/shapemate | Shapemate/Assets/EnemyHPManager.cs | Shapemate/Assets/EnemyHPManager.cs | using UnityEngine;
using System.Collections;
public class EnemyHPManager : MonoBehaviour {
public GameObject enemy;
private int enemyHP;
void Start()
{
enemyHP = 100;
}
// Use this for initialization
void DealDamage (int damage=1) {
enemyHP -= damage;
if(enemyHP... | using UnityEngine;
using System.Collections;
public class EnemyHPManager : MonoBehaviour {
public GameObject enemy;
private int enemyHP;
// Use this for initialization
void DealDamage (int damage=1) {
enemyHP -= damage;
if(enemyHP < 0)
{
Destroy(enemy);
}
}
... | mit | C# |
ad762cf239de0eea44d8fc88f23bfde72db39a11 | Fix back link on payout confirm page | btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver | BTCPayServer/Views/UILightningLikePayout/ConfirmLightningPayout.cshtml | BTCPayServer/Views/UILightningLikePayout/ConfirmLightningPayout.cshtml | @model System.Collections.Generic.List<BTCPayServer.Data.Payouts.LightningLike.UILightningLikePayoutController.ConfirmVM>
@{
Layout = "../Shared/_Layout.cshtml";
ViewData["Title"] = "Confirm Lightning Payout";
var cryptoCode = Context.GetRouteValue("cryptoCode");
}
<h2 class="mt-1 mb-4">@ViewData["Title"]<... | @model System.Collections.Generic.List<BTCPayServer.Data.Payouts.LightningLike.UILightningLikePayoutController.ConfirmVM>
@{
Layout = "../Shared/_Layout.cshtml";
ViewData["Title"] = "Confirm Lightning Payout";
var cryptoCode = Context.GetRouteValue("cryptoCode");
}
<h2 class="mt-1 mb-4">@ViewData["Title"]<... | mit | C# |
876d410fa1bece8a373c99b95d7fc148223c9a30 | Add missing ; | naoey/osu,NeoAdonis/osu,DrabWeb/osu,DrabWeb/osu,ppy/osu,johnneijzen/osu,2yangk23/osu,naoey/osu,EVAST9919/osu,peppy/osu,UselessToucan/osu,peppy/osu,2yangk23/osu,peppy/osu-new,ZLima12/osu,smoogipoo/osu,smoogipooo/osu,ppy/osu,NeoAdonis/osu,naoey/osu,peppy/osu,johnneijzen/osu,smoogipoo/osu,UselessToucan/osu,ZLima12/osu,Dra... | 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# |
7a47b5cf20a3de37529b79e80edff356e67b57b6 | switch expression | ufcpp/UfcppSample,ufcpp/UfcppSample,ufcpp/UfcppSample,ufcpp/UfcppSample,ufcpp/UfcppSample | Demo/2019/SwitchStatementToExpression/SwitchStatementToExpression/Program.cs | Demo/2019/SwitchStatementToExpression/SwitchStatementToExpression/Program.cs | using System;
namespace SwitchStatementToExpression
{
class Program
{
static void Main()
{
Console.WriteLine(M(true));
Console.WriteLine(M(false));
}
static int M(bool x)
=> x switch
{
true => 1,
f... | using System;
namespace SwitchStatementToExpression
{
class Program
{
static void Main()
{
Console.WriteLine(M(true));
Console.WriteLine(M(false));
}
static int M(bool x)
{
switch(x)
{
case true: return 1;... | apache-2.0 | C# |
17eb81bb7640e9e4616648b7d3390fe4445fb904 | Document DrawNode | EVAST9919/osu-framework,RedNesto/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,Tom94/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,default0/osu-framework,Tom94/osu-framework,DrabWeb/osu-framework,paparony03/osu-framework,ppy/osu-framework,peppy/osu-framework,smoogipooo/osu-... | osu.Framework/Graphics/DrawNode.cs | osu.Framework/Graphics/DrawNode.cs | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using osu.Framework.Graphics.OpenGL;
using System;
namespace osu.Framework.Graphics
{
public class DrawNode
{
/// <summary>
... | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using osu.Framework.Graphics.OpenGL;
using System;
namespace osu.Framework.Graphics
{
public class DrawNode
{
public DrawInfo DrawI... | mit | C# |
4cb9563af20b43a6a9e64c1631c1ac2bcdaebfc5 | Use ModelBackedDrawable in UpdateableAvatar | smoogipoo/osu,EVAST9919/osu,NeoAdonis/osu,peppy/osu,ppy/osu,2yangk23/osu,UselessToucan/osu,johnneijzen/osu,peppy/osu-new,UselessToucan/osu,smoogipoo/osu,ppy/osu,UselessToucan/osu,peppy/osu,peppy/osu,NeoAdonis/osu,2yangk23/osu,smoogipooo/osu,smoogipoo/osu,ZLima12/osu,EVAST9919/osu,ppy/osu,ZLima12/osu,johnneijzen/osu,Neo... | osu.Game/Users/UpdateableAvatar.cs | osu.Game/Users/UpdateableAvatar.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.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Users
{
/// <summary>
/// An avatar whi... | // 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.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Users
{
/// <summary>
/// An avatar whi... | mit | C# |
272408c7c9fcbe522bbf529fe8e7919e848bd08b | refactor SingleElementOrThrowOnMultiple | OlegKleyman/Omego.Extensions | core/Omego.Extensions/EnumerableExtensions/SingleElementOrThrowOnMultiple.cs | core/Omego.Extensions/EnumerableExtensions/SingleElementOrThrowOnMultiple.cs | namespace Omego.Extensions.EnumerableExtensions
{
using System;
using System.Collections.Generic;
using Omego.Extensions.Poco;
/// <summary>
/// Contains extension methods for <see cref="IEnumerable{T}" />.
/// </summary>
public static partial class Enumerable
{
/// <summa... | namespace Omego.Extensions.EnumerableExtensions
{
using System;
using System.Collections.Generic;
using Omego.Extensions.Poco;
/// <summary>
/// Contains extension methods for <see cref="IEnumerable{T}" />.
/// </summary>
public static partial class Enumerable
{
/// <summa... | unlicense | C# |
07b738b87f47c6e5ec099f6ccff19768b1c761ad | Update Bootstrapper.cs | ballance/jsmate,ballance/jsmate,ballance/jsmate,ballance/jsmate | JsMate.Api/Bootstrapper.cs | JsMate.Api/Bootstrapper.cs | using Nancy.Bootstrapper;
using Nancy.TinyIoc;
using Newtonsoft.Json;
namespace JsMate.Api
{
using Nancy;
public class Bootstrapper : DefaultNancyBootstrapper
{
protected override void ConfigureApplicationContainer(TinyIoCContainer container)
{
base.ConfigureApplicationContain... | using Nancy.Bootstrapper;
using Nancy.TinyIoc;
using Newtonsoft.Json;
namespace JsMate.Api
{
using Nancy;
public class Bootstrapper : DefaultNancyBootstrapper
{
protected override void ConfigureApplicationContainer(TinyIoCContainer container)
{
base.ConfigureApplicationContain... | mit | C# |
c3e095f5a8cc3abb001fb6d3ffae04c13d923950 | clean usings | JakeLunn/Landmine.Web,JakeLunn/Landmine.Web,JakeLunn/Landmine.Web,JakeLunn/Landmine.Web,akatakritos/Landmine.Web,akatakritos/Landmine.Web,akatakritos/Landmine.Web,akatakritos/Landmine.Web | LandmineWeb/Global.asax.cs | LandmineWeb/Global.asax.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using Autofac;
using Autofac.Integration.Mvc;
using Autofac.Integration.WebApi;
using Landmine.Domain.Concrete;
namespace LandmineWeb
{
public ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using Autofac;
using Autofac.Integration.Mvc;
using Autofac.Integration.WebApi;
using Landmine.Domain.Abstract;
using Landm... | mit | C# |
ae092a411381a9ba7178bcf3a5a8f1628451931e | Bump version | rileywhite/Cilador | src/CommonAssemblyInfo.cs | src/CommonAssemblyInfo.cs | /***************************************************************************/
// Copyright 2013-2014 Riley White
//
// 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.ap... | /***************************************************************************/
// Copyright 2013-2014 Riley White
//
// 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.ap... | apache-2.0 | C# |
a3b75cd1e0ad131003524d1577a223ffaad58117 | 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# |
d1e60e4c014917a73e6a070805ec5e07f3c38620 | Bump version | lukakama/rimworld-mod-real-fow | Properties/AssemblyInfo.cs | Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
// Le informazioni generali relative a un assembly sono controllate dal seguente
// set di attributi. Modificare i valori di questi attributi per modificare le informazioni
// associate a un assembly.
[assembly: AssemblyTitle("RimWorldRealFoWMod")]
[asse... | using System.Reflection;
using System.Runtime.InteropServices;
// Le informazioni generali relative a un assembly sono controllate dal seguente
// set di attributi. Modificare i valori di questi attributi per modificare le informazioni
// associate a un assembly.
[assembly: AssemblyTitle("RimWorldRealFoWMod")]
[asse... | apache-2.0 | C# |
a50bc4bb006d25ec83f539c88c985bcaa3d67e4a | Make IRadio implement IComponent | space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14 | Content.Server/Radio/Components/IRadio.cs | Content.Server/Radio/Components/IRadio.cs | using Robust.Shared.GameObjects;
using System.Collections.Generic;
using Robust.Shared.GameObjects;
namespace Content.Server.Radio.Components
{
public interface IRadio : IComponent
{
IReadOnlyList<int> Channels { get; }
void Receive(string message, int channel, EntityUid speaker);
voi... | using Robust.Shared.GameObjects;
using System.Collections.Generic;
using Robust.Shared.GameObjects;
namespace Content.Server.Radio.Components
{
public interface IRadio
{
IReadOnlyList<int> Channels { get; }
void Receive(string message, int channel, EntityUid speaker);
void Broadcast(s... | mit | C# |
f9b82eab689eb8f76ac9dfdaea1ed8466c612775 | replace redundant code with NotImplementedException | saturn72/saturn72 | src/Core/Saturn72.Core.Services/Localization/LocaleServiceExtensions.cs | src/Core/Saturn72.Core.Services/Localization/LocaleServiceExtensions.cs | using System;
using Saturn72.Extensions;
namespace Saturn72.Core.Services.Localization
{
public static class LocaleServiceExtensions
{
public static string GetLocaleResource(this ILocaleService localeService, string resourceKey)
{
var languageId = 0;
//get language ID f... | using Saturn72.Extensions;
namespace Saturn72.Core.Services.Localization
{
public static class LocaleServiceExtensions
{
public static string GetLocaleResource(this ILocaleService localeService, string resourceKey)
{
var languageId = 0;
//get language ID from user conte... | mit | C# |
60fcbe7b1b79c226a0204cb7c40c9ffd760fcdbd | Work around failure in light bulb controller | shyamnamboodiripad/roslyn,jmarolf/roslyn,agocke/roslyn,nguerrera/roslyn,jasonmalinowski/roslyn,KirillOsenkov/roslyn,brettfo/roslyn,KirillOsenkov/roslyn,reaction1989/roslyn,CyrusNajmabadi/roslyn,nguerrera/roslyn,mgoertz-msft/roslyn,bartdesmet/roslyn,mavasani/roslyn,ErikSchierboom/roslyn,weltkante/roslyn,heejaechang/rosl... | src/VisualStudio/IntegrationTest/TestSetup/TestExtensionErrorHandler.cs | src/VisualStudio/IntegrationTest/TestSetup/TestExtensionErrorHandler.cs | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Composition;
using Microsoft.CodeAnalysis.ErrorReporting;
using Microsoft.VisualStudio.Text;
namespace Microsoft.VisualStudio.Int... | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Composition;
using Microsoft.CodeAnalysis.ErrorReporting;
using Microsoft.VisualStudio.Text;
namespace Microsoft.VisualStudio.Int... | mit | C# |
39d5ac957fe99913b765d36d5d8d379389cc0dc3 | Fix test. | jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Perspex,wieslawsoltes/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,Perspex/Perspex,grokys/Perspex,akrisiun/Perspex,wieslawsoltes/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia,jkoritzinsk... | tests/Avalonia.Visuals.UnitTests/VisualTree/TransformedBoundsTests.cs | tests/Avalonia.Visuals.UnitTests/VisualTree/TransformedBoundsTests.cs | // Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reactive.Linq;
using Avalonia.Controls;
using Avalonia.Controls.Shapes;
us... | // Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reactive.Linq;
using Avalonia.Controls;
using Avalonia.Controls.Shapes;
us... | mit | C# |
58cdff52be21c0a68b4dfd73cfbbedfb4936b766 | add action | uliian/easyRBAC,uliian/easyRBAC,uliian/easyRBAC,uliian/easyRBAC | easyRBAC/src/EasyRbac.Web/Controllers/ApplicationController.cs | easyRBAC/src/EasyRbac.Web/Controllers/ApplicationController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using EasyRbac.Application.Application;
using EasyRbac.Dto;
using EasyRbac.Dto.Application;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace EasyRbac.Web.Controllers
{
[Route("Application")]
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using EasyRbac.Application.Application;
using EasyRbac.Dto;
using EasyRbac.Dto.Application;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace EasyRbac.Web.Controllers
{
[Route("Application")]
... | apache-2.0 | C# |
9c4262d7212a2556dbc5f84881a3a69e68b7c345 | Update assembly info | sakapon/KLibrary.Linq | KLibrary3/Linq/Properties/AssemblyInfo.cs | KLibrary3/Linq/Properties/AssemblyInfo.cs | using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
// アセンブリに関連付けられている情報を変更するには、
// これらの属性値を変更してください。
[assembly: AssemblyTitle("KLibrary.Linq")]
[assembly: AssemblyDescription("The library for LINQ.")]
[ass... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
// アセンブリに関連付けられている情報を変更するには、
// これらの属性値を変更してください。
[assembly: AssemblyTitle("Linq")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly:... | mit | C# |
77c94e5eb30eec95159e99c365196f168e608198 | Fix order of route registration. | puco/WebApiContrib.Formatting.Jsonp,puco/WebApiContrib.Formatting.Jsonp,WebApiContrib/WebApiContrib.Formatting.Jsonp,WebApiContrib/WebApiContrib.Formatting.Jsonp | samples/WebApiContrib.Formatting.Jsonp.SampleWebHost/Global.asax.cs | samples/WebApiContrib.Formatting.Jsonp.SampleWebHost/Global.asax.cs | using System.Net.Http.Formatting;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using WebApiContrib.Formatting.Jsonp;
using WebContribContrib.Formatting.Jsonp.SampleWebHost.App_Start;
namespace WebContr... | using System.Net.Http.Formatting;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using WebApiContrib.Formatting.Jsonp;
using WebContribContrib.Formatting.Jsonp.SampleWebHost.App_Start;
namespace WebContr... | mit | C# |
8f157c1a5b6c043d3b7bd3239f4be075c5d220f3 | Apply visual validation states to Add To-do form | jbrianskog/EventSourcingTodo,jbrianskog/EventSourcingTodo,jbrianskog/EventSourcingTodo | src/EventSourcingTodo/Views/Home/Index.cshtml | src/EventSourcingTodo/Views/Home/Index.cshtml | @model IndexViewModel
@{
ViewData["Title"] = "Home Page";
}
<div class="row">
<div class="col-sm-8">
<form asp-controller="Home" asp-action="AddTodo" method="post" role="form" id="addTodoForm" data-estd-ajax-jqval-submit-on-done="addToDoFormSubmitOnDone">
<div class="form-group" data-estd-f... | @model IndexViewModel
@{
ViewData["Title"] = "Home Page";
}
<div class="row">
<div class="col-sm-8">
<form asp-controller="Home" asp-action="AddTodo" method="post" role="form" id="addTodoForm" data-estd-ajax-jqval-submit-on-done="addToDoFormSubmitOnDone">
<div class="form-group">
... | mit | C# |
86223189bd1427dcaff8515545ab0f96ea793d6f | Update AssemblyInfo.cs | dsarfati/OrleansTestKit | src/OrleansTestKit/Properties/AssemblyInfo.cs | src/OrleansTestKit/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("OrleansTestKit")]
[assembly: AssemblyDesc... | 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("OrleansTestKit")]
[assembly: AssemblyDesc... | mit | C# |
b576f349bbe755f51030b181f5d9e3ecd7b7374d | Tweak in Console VS Project Template. | NaosProject/Naos.Build | Conventions/VisualStudioProjectTemplates/Console/consoleabstraction.cs | Conventions/VisualStudioProjectTemplates/Console/consoleabstraction.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="ConsoleAbstraction.cs" company="Naos Project">
// Copyright (c) Naos Project 2019. All rights reserved.
// </copyright>
// -----------------------------------------------------... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="ConsoleAbstraction.cs" company="Naos Project">
// Copyright (c) Naos Project 2019. All rights reserved.
// </copyright>
// -----------------------------------------------------... | mit | C# |
ae5b87368754d45d18b6ffc235d1f4bf95195485 | Add description constructor rokenrequest (#218) | Viincenttt/MollieApi,Viincenttt/MollieApi | Mollie.Api/Models/Connect/TokenRequest.cs | Mollie.Api/Models/Connect/TokenRequest.cs | using Newtonsoft.Json;
namespace Mollie.Api.Models.Connect {
public class TokenRequest {
/// <param name="code">This can be an authorization code or a refresh token. The correct grant type will be automatically selected</param>
/// <param name="redirectUri">The URL the merchant is sent back to on... | using Newtonsoft.Json;
namespace Mollie.Api.Models.Connect {
public class TokenRequest {
public TokenRequest(string code, string redirectUri) {
if (code.StartsWith("refresh_")) {
this.GrantType = "refresh_token";
this.RefreshToken = code;
}
... | mit | C# |
f2e99a69154232d677170f1cea3aa8b2802c8022 | Update Assets/MixedRealityToolkit.Examples/Demos/HandTracking/Script/ToggleHandVisualisation.cs | killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity | Assets/MixedRealityToolkit.Examples/Demos/HandTracking/Script/ToggleHandVisualisation.cs | Assets/MixedRealityToolkit.Examples/Demos/HandTracking/Script/ToggleHandVisualisation.cs | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using Microsoft.MixedReality.Toolkit.Input;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Examples.Demos
{
public class ToggleHandVisualisation : ... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using Microsoft.MixedReality.Toolkit.Input;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Examples.Demos
{
public class ToggleHandVisualisation : ... | mit | C# |
e67de2e746cab21cae37d9cc84019dd3228f17f1 | Update TestCompositionRootSetup.cs | tiksn/TIKSN-Framework | TIKSN.UnitTests.Shared/DependencyInjection/TestCompositionRootSetup.cs | TIKSN.UnitTests.Shared/DependencyInjection/TestCompositionRootSetup.cs | using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using TIKSN.Analytics.Logging;
using Xunit.Abstractions;
namespace TIKSN.DependencyInjection.Tests
{
public class TestCompositionRootSetup : CompositionRootSetupBase
{
... | using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using System;
using TIKSN.Analytics.Logging;
using Xunit.Abstractions;
namespace TIKSN.DependencyInjection.Tests
{
public class TestCompositionRootSetup : CompositionRootSetupBase
{
private readonly ITestOutputHe... | mit | C# |
41c002fb5e8f887df5f78c614b69e8364343f18a | fix für web | haskox/DotNetSiemensPLCToolBoxLibrary,devolegf/DotNetSiemensPLCToolBoxLibrary,devolegf/DotNetSiemensPLCToolBoxLibrary,dotnetprojects/DotNetSiemensPLCToolBoxLibrary,proemmer/DotNetSiemensPLCToolBoxLibrary,StefanHasensperling/DotNetSiemensPLCToolBoxLibrary,StefanHasensperling/DotNetSiemensPLCToolBoxLibrary,haskox/DotNetS... | DotNetDatenbankProtokollerV2/ProtokollerLibrary/wcfService/ProtocolService.cs | DotNetDatenbankProtokollerV2/ProtokollerLibrary/wcfService/ProtocolService.cs | using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.ServiceModel;
using System.ServiceModel.Activation;
using System.Text;
using DotNetSimaticDatabaseProtokollerLibrary.Databases;
using DotNetSimaticDatabaseProtokollerLibrary.Databases.Interfaces;
using DotNetS... | using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.ServiceModel;
using System.ServiceModel.Activation;
using System.Text;
using DotNetSimaticDatabaseProtokollerLibrary.Databases;
using DotNetSimaticDatabaseProtokollerLibrary.Databases.Interfaces;
using DotNetS... | lgpl-2.1 | C# |
e51d824f89fbc1a3243456527d82326a0b62ebc6 | Use actually GremlinServer... | ExRam/ExRam.Gremlinq | ExRam.Gremlinq.Providers.GremlinServer.Tests/GremlinServerIntegrationTests.cs | ExRam.Gremlinq.Providers.GremlinServer.Tests/GremlinServerIntegrationTests.cs | #if RELEASE && NETCOREAPP3_1
using ExRam.Gremlinq.Core;
using ExRam.Gremlinq.Core.Tests;
using ExRam.Gremlinq.Providers.WebSocket;
using Xunit.Abstractions;
using static ExRam.Gremlinq.Core.GremlinQuerySource;
namespace ExRam.Gremlinq.Providers.GremlinServer.Tests
{
public class GremlinServerIntegrationTests : Qu... | #if RELEASE && NETCOREAPP3_1
using ExRam.Gremlinq.Core;
using ExRam.Gremlinq.Core.Tests;
using ExRam.Gremlinq.Providers.WebSocket;
using Xunit.Abstractions;
using static ExRam.Gremlinq.Core.GremlinQuerySource;
namespace ExRam.Gremlinq.Providers.GremlinServer.Tests
{
public class GremlinServerIntegrationTests : Qu... | mit | C# |
a1794fa476a73400e15a38f33bbcb330f24e7831 | Remove MothershipSessionGuid from NewDiallerCallDto | Paymentsense/Dapper.SimpleSave | PS.Mothership.Core/PS.Mothership.Core.Common/Dto/Dialler/NewDiallerCallDto.cs | PS.Mothership.Core/PS.Mothership.Core.Common/Dto/Dialler/NewDiallerCallDto.cs | using System;
using System.Runtime.Serialization;
using PS.Mothership.Core.Common.Template.Dial;
namespace PS.Mothership.Core.Common.Dto.Dialler
{
[DataContract]
public class NewDiallerCallDto
{
[DataMember]
public Guid SipCallGuid { get; set; }
[DataMember]
public DialCall... | using System;
using System.Runtime.Serialization;
using PS.Mothership.Core.Common.Template.Dial;
namespace PS.Mothership.Core.Common.Dto.Dialler
{
[DataContract]
public class NewDiallerCallDto
{
[DataMember]
public Guid MothershipSessionGuid { get; set; }
[DataMember]
publi... | mit | C# |
3bcfc914368f2cf8cd704d5dcf82d678af30fd4d | Sort usings in gotodef exports. | KevinRansom/roslyn,weltkante/roslyn,gafter/roslyn,dotnet/roslyn,gafter/roslyn,mgoertz-msft/roslyn,bartdesmet/roslyn,physhi/roslyn,mavasani/roslyn,jmarolf/roslyn,abock/roslyn,tannergooding/roslyn,AlekseyTs/roslyn,eriawan/roslyn,dotnet/roslyn,reaction1989/roslyn,wvdd007/roslyn,agocke/roslyn,brettfo/roslyn,sharwell/roslyn... | src/VisualStudio/LiveShare/Impl/GotoDefinitionWithFarHandler.Exports.cs | src/VisualStudio/LiveShare/Impl/GotoDefinitionWithFarHandler.Exports.cs | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.ComponentModel.Composition;
using Microsoft.CodeAnalysis.Editor;
using Microsoft.VisualStudio.LanguageServer.Protocol;
using Micro... | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.ComponentModel.Composition;
using Microsoft.VisualStudio.LiveShare.LanguageServices;
using Microsoft.CodeAnalysis.Editor;
using Microsoft.Visual... | mit | C# |
db6cd70ee61e7217b5dfca4c270bdc9eac9973ea | Update EvaluationOrderAttribute.cs | rmc00/gsf,rmc00/gsf,rmc00/gsf,GridProtectionAlliance/gsf,GridProtectionAlliance/gsf,GridProtectionAlliance/gsf,GridProtectionAlliance/gsf,rmc00/gsf,GridProtectionAlliance/gsf,rmc00/gsf,GridProtectionAlliance/gsf,rmc00/gsf,rmc00/gsf,GridProtectionAlliance/gsf,GridProtectionAlliance/gsf | Source/Libraries/GSF.Core/ComponentModel/EvaluationOrderAttribute.cs | Source/Libraries/GSF.Core/ComponentModel/EvaluationOrderAttribute.cs | //******************************************************************************************************
// EvaluationOrderAttribute.cs - Gbtc
//
// Copyright © 2016, Grid Protection Alliance. All Rights Reserved.
//
// Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements... | //******************************************************************************************************
// EvaluationOrderAttribute.cs - Gbtc
//
// Copyright © 2016, Grid Protection Alliance. All Rights Reserved.
//
// Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements... | mit | C# |
60e718e1fffc6dc16e00e9eca210650547997325 | Hide restore button if user not an administrator. | virtualdreams/notes-core,virtualdreams/notes-core,virtualdreams/notes-core,virtualdreams/notes-core | Views/Revision/View.cshtml | Views/Revision/View.cshtml | @model notes.Models.RevisionViewContainer
@using Microsoft.AspNetCore.Authorization
@inject IAuthorizationService AuthorizationService
@{
ViewBag.Title = $"Revision - ";
}
@functions{
public string FormatDate(DateTime? dt) {
return String.Format(new System.Globalization.CultureInfo("en-US"), "{0:ddd, dd MMM yyyy ... | @model notes.Models.RevisionViewContainer
@{
ViewBag.Title = $"Revision - ";
}
@functions{
public string FormatDate(DateTime? dt) {
return String.Format(new System.Globalization.CultureInfo("en-US"), "{0:ddd, dd MMM yyyy HH:mm:ss}", dt);
}
}
<div class="row">
<div class="col-lg-12">
<div class="pb-2 mt-4 mb-... | mit | C# |
9bb999728867ab9cfc350dc89b1c2a7824c87e3b | Update src/Umbraco.Tests.Integration/Implementations/HostBuilderExtensions.cs | abjerner/Umbraco-CMS,robertjf/Umbraco-CMS,arknu/Umbraco-CMS,dawoe/Umbraco-CMS,KevinJump/Umbraco-CMS,marcemarc/Umbraco-CMS,robertjf/Umbraco-CMS,dawoe/Umbraco-CMS,umbraco/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,arknu/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,umbraco/Umbraco-CMS,umbraco/Umbraco-CMS,abryukhov/Umbraco-CMS... | src/Umbraco.Tests.Integration/Implementations/HostBuilderExtensions.cs | src/Umbraco.Tests.Integration/Implementations/HostBuilderExtensions.cs | using System;
using System.Collections.Generic;
using System.Data.Common;
using System.Data.SqlClient;
using System.IO;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Umbraco.Tests.Integration.Testing;
namespace Umbraco.Tests.Integration.Implementations
{
public static class H... | using System;
using System.Collections.Generic;
using System.Data.Common;
using System.Data.SqlClient;
using System.IO;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Umbraco.Tests.Integration.Testing;
namespace Umbraco.Tests.Integration.Implementations
{
public static class H... | mit | C# |
91c82abf726d8ce2acd5a32a09f30c718595e6ef | remove virtual on Initialize and add InitializeDictionaries | ilyhacker/aspnetboilerplate,luchaoshuai/aspnetboilerplate,luchaoshuai/aspnetboilerplate,ilyhacker/aspnetboilerplate,carldai0106/aspnetboilerplate,carldai0106/aspnetboilerplate,ryancyq/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,carldai0106/aspnetboilerplate,ryancyq/aspnetbo... | src/Abp/Localization/Dictionaries/LocalizationDictionaryProviderBase.cs | src/Abp/Localization/Dictionaries/LocalizationDictionaryProviderBase.cs | using System.Collections.Generic;
namespace Abp.Localization.Dictionaries
{
public abstract class LocalizationDictionaryProviderBase : ILocalizationDictionaryProvider
{
public string SourceName { get; private set; }
public ILocalizationDictionary DefaultDictionary { get; protected set; }
... | using System.Collections.Generic;
namespace Abp.Localization.Dictionaries
{
public abstract class LocalizationDictionaryProviderBase : ILocalizationDictionaryProvider
{
public string SourceName { get; private set; }
public ILocalizationDictionary DefaultDictionary { get; protected set; }
... | mit | C# |
afc4b940f17b8d6c721e141f4cda625b925363c6 | Include a codebase for System.IO.FileSystem | KevinH-MS/roslyn,jamesqo/roslyn,tvand7093/roslyn,tmeschter/roslyn,TyOverby/roslyn,dpoeschl/roslyn,khellang/roslyn,managed-commons/roslyn,jaredpar/roslyn,panopticoncentral/roslyn,yeaicc/roslyn,stephentoub/roslyn,bbarry/roslyn,thomaslevesque/roslyn,mseamari/Stuff,reaction1989/roslyn,srivatsn/roslyn,gafter/roslyn,sharwell... | src/VisualStudio/VisualStudioInteractiveComponents/AssemblyRedirects.cs | src/VisualStudio/VisualStudioInteractiveComponents/AssemblyRedirects.cs | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.VisualStudio.Shell;
using Roslyn.VisualStudio.Setup;
[assembly: ProvideRoslynBindingRedirection("Microsoft.CodeAnalysis.Scripting.dll")]
[as... | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.VisualStudio.Shell;
using Roslyn.VisualStudio.Setup;
[assembly: ProvideRoslynBindingRedirection("Microsoft.CodeAnalysis.Scripting.dll")]
[as... | apache-2.0 | C# |
1c62c1a16ea87dee67383a839413f00038129a25 | Check if using SelectedItem pattern first | 2gis/Winium.Desktop,zebraxxl/Winium.Desktop,jorik041/Winium.Desktop | src/Winium.Desktop.Driver/CommandExecutors/IsElementSelectedExecutor.cs | src/Winium.Desktop.Driver/CommandExecutors/IsElementSelectedExecutor.cs | namespace Winium.Desktop.Driver.CommandExecutors
{
#region using
using System.Windows.Automation;
using Winium.Cruciatus.Exceptions;
using Winium.Cruciatus.Extensions;
using Winium.StoreApps.Common;
#endregion
internal class IsElementSelectedExecutor : CommandExecutorBase
{
... | namespace Winium.Desktop.Driver.CommandExecutors
{
#region using
using System.Windows.Automation;
using Winium.Cruciatus.Exceptions;
using Winium.Cruciatus.Extensions;
using Winium.StoreApps.Common;
#endregion
internal class IsElementSelectedExecutor : CommandExecutorBase
{
... | mpl-2.0 | C# |
06d894f18d918fe8847ebfb49fe10b7ec19d6eea | Update IDeserializer.cs | tiksn/TIKSN-Framework | TIKSN.Core/Serialization/IDeserializer.cs | TIKSN.Core/Serialization/IDeserializer.cs | namespace TIKSN.Serialization
{
/// <summary>
/// Deserializer interface
/// </summary>
/// <typeparam name="TSerial">Type to deserialize from, usually string or byte array</typeparam>
public interface IDeserializer<TSerial> where TSerial : class
{
/// <summary>
/// Deser... | namespace TIKSN.Serialization
{
/// <summary>
/// Deserializer interface
/// </summary>
/// <typeparam name="TSerial">Type to deserialize from, usually string or byte array</typeparam>
public interface IDeserializer<TSerial> where TSerial : class
{
/// <summary>
/// Deser... | mit | C# |
8c31c4344c2f24925b3b2552bf7ee38478b99576 | Update CarroController.cs | cayodonatti/TopGearApi | TopGearApi/Controllers/CarroController.cs | TopGearApi/Controllers/CarroController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using TopGearApi.DataAccess;
using TopGearApi.Domain.Models;
using TopGearApi.Models;
namespace TopGearApi.Controllers
{
public class CarroController : TController<Carro>
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using TopGearApi.DataAccess;
using TopGearApi.Domain.Models;
using TopGearApi.Models;
namespace TopGearApi.Controllers
{
public class CarroController : TController<Carro>
... | mit | C# |
b4f6dbc89d649c396104de59b64d82a8728d964a | Fix typo in content | SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice | src/SFA.DAS.EmployerAccounts.Web/Views/EmployerTeam/CheckFunding.cshtml | src/SFA.DAS.EmployerAccounts.Web/Views/EmployerTeam/CheckFunding.cshtml |
@model SFA.DAS.EmployerAccounts.Web.ViewModels.AccountDashboardViewModel
<h3 class="das-panel__heading">Funding your apprentice's training</h3>
<p>Reserve apprenticeship funding to guarantee you receive funds to pay for your apprentice's training and assessment.</p>
<p><a href="@Url.ReservationsAction("reservations... |
@model SFA.DAS.EmployerAccounts.Web.ViewModels.AccountDashboardViewModel
<h3 class="das-panel__heading">Funding your apprentice's training</h3>
<p>Reserve apprentiship funding to guarantee you receive funds to pay for your apprentice's training and assessment.</p>
<p><a href="@Url.ReservationsAction("reservations")... | mit | C# |
907369a0aecf0dbfe684fd08400d98aa791419b2 | Update _Footer.cshtml | reactiveui/website,reactiveui/website,reactiveui/website,reactiveui/website | input/_Footer.cshtml | input/_Footer.cshtml | <div class="container bottom-footer">
<div class="col-lg-10 col-sm-10 col-xs-12">
<ul class="list-inline">
<li class="list-inline-item">
<a href="/team" target="_blank">Branding</a>
</li>
<li class="list-inline-item">
<a href="/sponsorship" target... | <div class="container bottom-footer">
<div class="col-lg-10 col-sm-10 col-xs-12">
<ul class="list-inline">
<li class="list-inline-item">
<a href="/donate" target="_blank">Donate</a>
</li>
<li class="list-inline-item">
<a href="/sponsorship" target... | mit | C# |
344a91376d95fbb1aba878d06f14df2d6039d4bb | test user svc make more sense | IdentityServer/IdentityServer3,AscendXYZ/Thinktecture.IdentityServer.v3,tbitowner/IdentityServer3,wondertrap/IdentityServer3,openbizgit/IdentityServer3,ryanvgates/IdentityServer3,bodell/IdentityServer3,delloncba/IdentityServer3,jonathankarsh/IdentityServer3,angelapper/IdentityServer3,kouweizhong/IdentityServer3,yanjust... | source/Core.TestServices/TestUserService.cs | source/Core.TestServices/TestUserService.cs | using System;
/*
* Copyright (c) Dominick Baier, Brock Allen. All rights reserved.
* see license
*/
using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using System.Threading.Tasks;
using Thinktecture.IdentityServer.Core;
using Thinktecture.IdentityServer.Core.Services;
namespace Th... | /*
* Copyright (c) Dominick Baier, Brock Allen. All rights reserved.
* see license
*/
using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using System.Threading.Tasks;
using Thinktecture.IdentityServer.Core;
using Thinktecture.IdentityServer.Core.Services;
namespace Thinktecture.Ide... | apache-2.0 | C# |
5b82fa981e65f4986412e0ac67f757c1b659fe28 | 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# |
6b5387940be512290ae404e9297e0500b230f1fa | 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# |
72d77482e35775380c62423d4488276f0796e0de | 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# |
13456088b859fb0c2ac60aaba6915db5614539b3 | 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# |
a261684395ec709876a5f53400452dafcdd97e90 | Add Exception handling when source .mkdb file not found | advasoft/scafftools | src/win/scafftools/makedb/Program.cs | src/win/scafftools/makedb/Program.cs | /* Copyright (C) Advasoft Development 2015
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
* software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation the rights
* to use, copy, modify, merg... | /* Copyright (C) Advasoft Development 2015
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
* software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation the rights
* to use, copy, modify, merg... | mit | C# |
9a59f0ea311d19d1b41690d407c94f3ba5511788 | Remove meaningless check | 2gis/Winium.Desktop,zebraxxl/Winium.Desktop,jorik041/Winium.Desktop | src/Winium.Desktop.Driver/CommandExecutors/IsElementSelectedExecutor.cs | src/Winium.Desktop.Driver/CommandExecutors/IsElementSelectedExecutor.cs | namespace Winium.Desktop.Driver.CommandExecutors
{
#region using
using System.Windows.Automation;
using Winium.Cruciatus.Exceptions;
using Winium.Cruciatus.Extensions;
using Winium.StoreApps.Common;
#endregion
internal class IsElementSelectedExecutor : CommandExecutorBase
{
... | namespace Winium.Desktop.Driver.CommandExecutors
{
#region using
using System.Windows.Automation;
using Winium.Cruciatus.Exceptions;
using Winium.Cruciatus.Extensions;
using Winium.StoreApps.Common;
#endregion
internal class IsElementSelectedExecutor : CommandExecutorBase
{
... | mpl-2.0 | C# |
50da773bf5fe3aaba44edb78f4d85446399966ba | Fix draw ellipse | wieslawsoltes/Draw2D,wieslawsoltes/Draw2D,wieslawsoltes/Draw2D | src/PathDemo/Controls/Renderer/LineHelper.cs | src/PathDemo/Controls/Renderer/LineHelper.cs | using System.Windows.Media;
using Draw2D.Models.Renderers;
using Draw2D.Models.Shapes;
using Draw2D.Models.Style;
namespace PathDemo.Controls
{
public class CommonHelper
{
public static EllipseShape Ellipse = new EllipseShape(new PointShape(-4, -4, null), new PointShape(4, 4, null))
{
... | using System.Windows.Media;
using Draw2D.Models.Renderers;
using Draw2D.Models.Shapes;
using Draw2D.Models.Style;
namespace PathDemo.Controls
{
public class CommonHelper
{
public static EllipseShape Ellipse = new EllipseShape(new PointShape(-4, -4, null), new PointShape(4, 4, null))
{
... | mit | C# |
0231d3c28b82f17778a9358a5e7fb15e3680a634 | rework of ValueSyntax, final refactoring | hahoyer/reni.cs,hahoyer/reni.cs,hahoyer/reni.cs | src/ReniUI/Classification/WhiteSpaceToken.cs | src/ReniUI/Classification/WhiteSpaceToken.cs | using System.Collections.Generic;
using hw.Scanner;
using Reni.Parser;
namespace ReniUI.Classification
{
sealed class WhiteSpaceToken : Token
{
internal override Helper.Syntax Syntax { get; }
readonly IItem Item;
internal WhiteSpaceToken(IItem item, Helper.Syntax parent)
{
... | using System.Collections.Generic;
using hw.Scanner;
using Reni.Parser;
using ReniUI.Helper;
namespace ReniUI.Classification
{
sealed class WhiteSpaceToken : Token
{
readonly IItem _item;
internal WhiteSpaceToken(IItem item, Helper.Syntax parent)
{
_item = item;
... | mit | C# |
c1cc76521485931a0cd6bffdb276c28b37140159 | Change contact drop-down options | MarioZisov/Baskerville,MarioZisov/Baskerville,MarioZisov/Baskerville | BaskervilleWebsite/Baskerville.Models/ViewModels/ContactViewModel.cs | BaskervilleWebsite/Baskerville.Models/ViewModels/ContactViewModel.cs | namespace Baskerville.Models.ViewModels
{
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;
public class ContactViewModel
{
#region English Properties
public readonly IEnumerable<SelectListItem> SubjectsEn = new List<SelectL... | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web.Mvc;
namespace Baskerville.Models.ViewModels
{
public class ContactViewModel
{
#region English Properties
pub... | apache-2.0 | C# |
38cd5c2e6071f15a1ca7ecced6a84d6e32df976b | Update Metatogger default install path | luminescence-software/scripts | .intellisense.csx | .intellisense.csx | #r "C:\Program Files (x86)\Luminescence Software\Metatogger 5.9\Metatogger.exe"
using System.Collections.Generic;
using Metatogger.Data;
IEnumerable<AudioFile> files = new List<AudioFile>(); // list of checked audio files in the workspace | #r "C:\Program Files (x86)\Luminescence Software\Metatogger 5.8\Metatogger.exe"
using System.Collections.Generic;
using Metatogger.Data;
IEnumerable<AudioFile> files = new List<AudioFile>(); // list of checked audio files in the workspace | mpl-2.0 | C# |
54c0bdf7d3174ec1b6ee5ba61abf096492d7fa2c | Fix PlaylistLoungeTestScene appearing very narrow | NeoAdonis/osu,smoogipoo/osu,peppy/osu-new,smoogipoo/osu,ppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,peppy/osu,UselessToucan/osu,smoogipooo/osu,smoogipoo/osu | osu.Game.Tests/Visual/Playlists/TestScenePlaylistsLoungeSubScreen.cs | osu.Game.Tests/Visual/Playlists/TestScenePlaylistsLoungeSubScreen.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.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Screens;
using osu.Framework.Testing;
using os... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Linq;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Screens;
using osu.Framework.Testing;
using os... | mit | C# |
550f8a4d07ca2d7f620a6e5416d178a9429ce489 | Set version to 0.0.0.0 | jammycakes/dolstagis.web,jammycakes/dolstagis.web,jammycakes/dolstagis.web | src/.version/DefaultVersionInfo.cs | src/.version/DefaultVersionInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Num... | using System.Reflection;
using System.Runtime.InteropServices;
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Num... | mit | C# |
f2d80de343e74702ffb75ef82b430bd0def6ef5e | Fix error with RequirePermission precondition | LassieME/Discord.Net,RogueException/Discord.Net,Confruggy/Discord.Net,AntiTcb/Discord.Net | src/Discord.Net.Commands/Attributes/Preconditions/RequirePermission.cs | src/Discord.Net.Commands/Attributes/Preconditions/RequirePermission.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Discord.Commands.Attributes.Preconditions
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true, Inherited = true)]
public class RequirePermission : PreconditionAttribu... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Discord.Commands.Attributes.Preconditions
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true, Inherited = true)]
public class RequirePermission : RequireGuildAttribu... | mit | C# |
0b48051ce9fb5e3128de19ec3c73cc8e2b059699 | Fix what I like to call the Kiesza bug | Brijen/lastfm,realworld666/lastfm | src/IF.Lastfm.Core/Api/Commands/ArtistApi/GetArtistTopAlbumsCommand.cs | src/IF.Lastfm.Core/Api/Commands/ArtistApi/GetArtistTopAlbumsCommand.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using IF.Lastfm.Core.Api.Enums;
using IF.Lastfm.Core.Api.Helpers;
using IF.Lastfm.Core.Objects;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace IF.Lastfm.Core.Api.Com... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using IF.Lastfm.Core.Api.Enums;
using IF.Lastfm.Core.Api.Helpers;
using IF.Lastfm.Core.Objects;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace IF.Lastfm.Core.Api.Com... | mit | C# |
82229564ffbbf9901203a00560f2c1a0bcc96c0d | remove unused using | tynor88/Topshelf.SimpleInjector | Source/Topshelf.SimpleInjector.Quartz/SimpleInjectorScheduleJobServiceConfiguratorExtensions.cs | Source/Topshelf.SimpleInjector.Quartz/SimpleInjectorScheduleJobServiceConfiguratorExtensions.cs | using System;
using System.Linq;
using System.Reflection;
using Quartz;
using Quartz.Impl;
using Quartz.Spi;
using SimpleInjector;
using Topshelf.Logging;
using Topshelf.SimpleInjector.Quartz.Factory;
namespace Topshelf.SimpleInjector.Quartz
{
internal static class SimpleInjectorScheduleJobServiceConfiguratorExte... | using System;
using System.Linq;
using System.Reflection;
using Quartz;
using Quartz.Impl;
using Quartz.Spi;
using SimpleInjector;
using Topshelf.Logging;
using Topshelf.ServiceConfigurators;
using Topshelf.SimpleInjector.Quartz.Factory;
namespace Topshelf.SimpleInjector.Quartz
{
public static class SimpleInjecto... | mit | C# |
d7cc1b5f07cee1b8e38c046b7f916eb17c33208b | Add Tag property to Node, for user data. | drewnoakes/boing | Boing/Node.cs | Boing/Node.cs | namespace Boing
{
public sealed class Node
{
private Vector2f _acceleration;
public string Id { get; private set; }
public float Mass { get; set; }
public float Damping { get; set; }
public bool IsPinned { get; set; }
public object Tag { get; set; }
publi... | namespace Boing
{
public sealed class Node
{
private Vector2f _acceleration;
public string Id { get; private set; }
public float Mass { get; set; }
public float Damping { get; set; }
public bool IsPinned { get; set; }
public Vector2f Position { get; private set; ... | apache-2.0 | C# |
72b45be365c802d6b71507ea1d6e9cf0bc0ebc71 | Fix unit test | jeroenverh/teamleader-dotnet | src/TeamleaderDotNet.Tests/ThrottlerTests.cs | src/TeamleaderDotNet.Tests/ThrottlerTests.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using TeamleaderDotNet.Common;
namespace TeamleaderDotNet.Tests
{
[TestClass]
public class ThrottlerTests
{
[TestMethod]
p... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using TeamleaderDotNet.Common;
namespace TeamleaderDotNet.Tests
{
[TestClass]
public class ThrottlerTests
{
[TestMethod]
p... | mit | C# |
9252aaa9f989b389446fad9495a2af758c7606bc | Remove unnecessary property initialization. | Cimpress-MCP/dotnet-core-httputils | src/Cimpress.Extensions.Http.Caching.Abstractions/CacheData.cs | src/Cimpress.Extensions.Http.Caching.Abstractions/CacheData.cs | using System.Collections.Generic;
using System.Net.Http;
namespace Cimpress.Extensions.Http.Caching.Abstractions
{
/// <summary>
/// The data object that is used to put into the cache.
/// </summary>
public class CacheData
{
public CacheData(byte[] data, HttpResponseMessage cachableResponse... | using System.Collections.Generic;
using System.Net.Http;
namespace Cimpress.Extensions.Http.Caching.Abstractions
{
/// <summary>
/// The data object that is used to put into the cache.
/// </summary>
public class CacheData
{
public CacheData(byte[] data, HttpResponseMessage cachableResponse... | apache-2.0 | C# |
e3e29a9c3d4a8346a60fc6cff9ae7009fe990ad8 | Fix bug: Searching too fast in dialog returns no results when enter is pressed Work items: 598 | mdavid/nuget,mdavid/nuget | src/Dialog/PackageManagerUI/BaseProvider/PackagesSearchNode.cs | src/Dialog/PackageManagerUI/BaseProvider/PackagesSearchNode.cs | using System;
using System.Linq;
using Microsoft.VisualStudio.ExtensionsExplorer;
namespace NuGet.Dialog.Providers {
internal class PackagesSearchNode : PackagesTreeNodeBase {
private string _searchText;
private readonly PackagesTreeNodeBase _baseNode;
public PackagesTreeNodeB... | using System;
using System.Linq;
using Microsoft.VisualStudio.ExtensionsExplorer;
namespace NuGet.Dialog.Providers {
internal class PackagesSearchNode : PackagesTreeNodeBase {
private string _searchText;
private readonly PackagesTreeNodeBase _baseNode;
public PackagesTreeNodeB... | apache-2.0 | C# |
bce7d84906325e9c5a26039ebe3f94c9dcea22c8 | Fix cart count when the same album is added to the cart multiple times (#765) | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | samples/MusicStore/Components/CartSummaryComponent.cs | samples/MusicStore/Components/CartSummaryComponent.cs | using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using MusicStore.Models;
namespace MusicStore.Components
{
[ViewComponent(Name = "CartSummary")]
public class CartSummaryComponent : ViewComponent
{
public CartSummaryComponent(MusicSt... | using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using MusicStore.Models;
namespace MusicStore.Components
{
[ViewComponent(Name = "CartSummary")]
public class CartSummaryComponent : ViewComponent
{
public CartSummaryComponent(MusicSt... | apache-2.0 | C# |
9692ca37e696c3fa2c97222d27e28a6e6ffd2e6b | fix build | furore-fhir/spark,furore-fhir/spark,furore-fhir/spark | src/Spark/App_Start/UnityConfig.cs | src/Spark/App_Start/UnityConfig.cs | using Hl7.Fhir.Model;
using Microsoft.Practices.Unity;
using Spark.Controllers;
using Spark.Core;
using Spark.Engine.Core;
using Spark.Models;
using Spark.Mongo.Search.Common;
using Spark.Service;
using Spark.Store.Mongo;
using System.Web.Http;
using System.Web.Mvc;
using Microsoft.AspNet.SignalR;
using Unity.WebApi;
... | using Hl7.Fhir.Model;
using Microsoft.Practices.Unity;
using Spark.Controllers;
using Spark.Core;
using Spark.Engine.Core;
using Spark.Models;
using Spark.Mongo.Search.Common;
using Spark.Service;
using Spark.Store.Mongo;
using System.Web.Http;
using System.Web.Mvc;
using Microsoft.AspNet.SignalR;
using Unity.WebApi;
... | bsd-3-clause | C# |
82556adb7148d5bb83061953b0d15fae84cf1d8e | Make generic for local and production | Azure/azure-webjobs-sdk,Azure/azure-webjobs-sdk | src/Microsoft.Azure.WebJobs.Extensions.Storage/StorageAccountProvider.cs | src/Microsoft.Azure.WebJobs.Extensions.Storage/StorageAccountProvider.cs | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System;
using Microsoft.Azure.WebJobs.Host;
using Microsoft.Extensions.Configuration;
namespace Microsoft.Azure.WebJobs
{
/// <summary>
/// Abstraction ... | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System;
using Microsoft.Azure.WebJobs.Host;
using Microsoft.Extensions.Configuration;
namespace Microsoft.Azure.WebJobs
{
/// <summary>
/// Abstraction ... | mit | C# |
64b51a0a2e23b31cf49d1b93ca58a0c95cae3069 | Update AssemblyInfoCommon.cs | ABTSoftware/SciChart.Xamarin.Examples | AssemblyInfoCommon.cs | AssemblyInfoCommon.cs | // *************************************************************************************
// SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved.
//
// Web: http://www.scichart.com
// Support: support@scichart.com
// Sales: sales@scichart.com
//
// AssemblyInfoCommon.cs is part of SCICHART®, High ... | // *************************************************************************************
// SCICHART® Copyright SciChart Ltd. 2011-2017. All rights reserved.
//
// Web: http://www.scichart.com
// Support: support@scichart.com
// Sales: sales@scichart.com
//
// AssemblyInfoCommon.cs is part of SCICHART®, High ... | mit | C# |
775749c535e6bb8352ec6db1864131336b39c023 | Fix grammar in documentation | ashfordl/cards | CardGames/GameInfo.cs | CardGames/GameInfo.cs | // GameInfo.cs
// <copyright file="GameInfo.cs"> This code is protected under the MIT License. </copyright>
using System.Collections.Generic;
using CardsLibrary;
namespace CardGames
{
/// <summary>
/// An object to represent game data to pass to player classes.
/// </summary>
public class GameInfo
... | // GameInfo.cs
// <copyright file="GameInfo.cs"> This code is protected under the MIT License. </copyright>
using System.Collections.Generic;
using CardsLibrary;
namespace CardGames
{
/// <summary>
/// An object to represent game data to pass to player classes.
/// </summary>
public class GameInfo
... | mit | C# |
fc7152bf25ad3862e22f604f98acaedbf7caf55f | Add new file Droid/MainActivity.cs | ArcanaMagus/userAuth.cpl,ArcanaMagus/userAuth.cpl,ArcanaMagus/userAuth.cpl,ArcanaMagus/userAuth.cpl | Droid/MainActivity.cs | Droid/MainActivity.cs |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
namespace userAuth.cpl.Droid
{
[Activity (Label = "userAuth.cpl.Droid", Icon = "@drawable/icon", MainLa... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
namespace userAuth.cpl.Droid
{
[Activity (Label = "userAuth.cpl.Droid", Icon = "@drawable/icon", MainLa... | mit | C# |
b34752e67dda31acb2c8a04a133127d2ed68d998 | make all route params required | 0xFireball/KQAnalytics3,0xFireball/KQAnalytics3,0xFireball/KQAnalytics3 | KQAnalytics3/src/KQAnalytics3/Modules/Api/Query/TagRequestQueryModule.cs | KQAnalytics3/src/KQAnalytics3/Modules/Api/Query/TagRequestQueryModule.cs | using KQAnalytics3.Configuration.Access;
using KQAnalytics3.Services.Authentication;
using KQAnalytics3.Services.Authentication.Security;
using KQAnalytics3.Services.DataCollection;
using KQAnalytics3.Utilities;
using Nancy;
namespace KQAnalytics3.Modules.Api.Query
{
public class TagRequestQueryModule : NancyModu... | using KQAnalytics3.Configuration.Access;
using KQAnalytics3.Services.Authentication;
using KQAnalytics3.Services.Authentication.Security;
using KQAnalytics3.Services.DataCollection;
using KQAnalytics3.Utilities;
using Nancy;
namespace KQAnalytics3.Modules.Api.Query
{
public class TagRequestQueryModule : NancyModu... | agpl-3.0 | C# |
29c723ebc94814d68d050c06f5a6233d732c0800 | Allow PlatformSpecific on a class | weshaggard/buildtools,karajas/buildtools,ianhays/buildtools,FiveTimesTheFun/buildtools,MattGal/buildtools,joperezr/buildtools,maririos/buildtools,karajas/buildtools,joperezr/buildtools,maririos/buildtools,tarekgh/buildtools,alexperovich/buildtools,schaabs/buildtools,roncain/buildtools,roncain/buildtools,roncain/buildto... | src/xunit.netcore.extensions/Attributes/PlatformSpecificAttribute.cs | src/xunit.netcore.extensions/Attributes/PlatformSpecificAttribute.cs | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using Xunit.Sdk;
namespace Xunit
{
/// <summary>
/// Apply this attribute to your test method to specify this is a platform specific test.
/... | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using Xunit.Sdk;
namespace Xunit
{
/// <summary>
/// Apply this attribute to your test method to specify this is a platform specific test.
/... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.