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 |
|---|---|---|---|---|---|---|---|---|
acea76b7b8feb31c00dd86d3222ff9382773d859 | Fix SO | zooba/PTVS,int19h/PTVS,zooba/PTVS,zooba/PTVS,int19h/PTVS,huguesv/PTVS,Microsoft/PTVS,Microsoft/PTVS,zooba/PTVS,int19h/PTVS,huguesv/PTVS,int19h/PTVS,huguesv/PTVS,int19h/PTVS,Microsoft/PTVS,zooba/PTVS,Microsoft/PTVS,zooba/PTVS,int19h/PTVS,Microsoft/PTVS,huguesv/PTVS,Microsoft/PTVS,huguesv/PTVS,huguesv/PTVS | Python/Product/Analysis/Infrastructure/EnumerableExtensions.cs | Python/Product/Analysis/Infrastructure/EnumerableExtensions.cs | // Python Tools for Visual Studio
// Copyright(c) Microsoft Corporation
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the License); you may not use
// this file except in compliance with the License. You may obtain a copy of the
// License at http://www.apache.org/licenses/LICENSE-2.0
/... | // Python Tools for Visual Studio
// Copyright(c) Microsoft Corporation
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the License); you may not use
// this file except in compliance with the License. You may obtain a copy of the
// License at http://www.apache.org/licenses/LICENSE-2.0
/... | apache-2.0 | C# |
03e6330e88e955f9cd938ff2b619a023dffe0439 | Add comment that design time data does not work with {x:Bind} | jbe2277/waf | src/NewsReader/NewsReader.Presentation/DesignData/SampleFeedItemListViewModel.cs | src/NewsReader/NewsReader.Presentation/DesignData/SampleFeedItemListViewModel.cs | using Jbe.NewsReader.Applications.ViewModels;
using Jbe.NewsReader.Applications.Views;
namespace Jbe.NewsReader.Presentation.DesignData
{
public class SampleFeedItemListViewModel : FeedItemListViewModel
{
public SampleFeedItemListViewModel() : base(new MockFeedItemListView(), null)
{
... | using Jbe.NewsReader.Applications.ViewModels;
using Jbe.NewsReader.Applications.Views;
namespace Jbe.NewsReader.Presentation.DesignData
{
public class SampleFeedItemListViewModel : FeedItemListViewModel
{
public SampleFeedItemListViewModel() : base(new MockFeedItemListView(), null)
{
... | mit | C# |
082b07614c6ac224eac53e4e15c8f75f53f0a95c | use Task.Delay for timeout | tim-hoff/Xamarin.Plugins,labdogg1003/Xamarin.Plugins,LostBalloon1/Xamarin.Plugins,JC-Chris/Xamarin.Plugins,monostefan/Xamarin.Plugins,predictive-technology-laboratory/Xamarin.Plugins,jamesmontemagno/Xamarin.Plugins | Geolocator/Geolocator/Geolocator.Plugin.WindowsPhone81/Timeout.cs | Geolocator/Geolocator/Geolocator.Plugin.WindowsPhone81/Timeout.cs | //
// Copyright 2011-2013, Xamarin Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by appl... | //
// Copyright 2011-2013, Xamarin Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by appl... | mit | C# |
6efa18aa9ed26b01362a4346ae81c060830857c3 | fix StringReader returning -1 instead of 0 on end-of-stream | dot42/api | System/IO/StringReader.cs | System/IO/StringReader.cs | // Copyright (C) 2014 dot42
//
// Original filename: StringReader.cs
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
//... | // Copyright (C) 2014 dot42
//
// Original filename: StringReader.cs
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
//... | apache-2.0 | C# |
a4af9232893879de24b9f5310f5cea0861efd164 | add pathway to fix test build issue | SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice | src/SFA.DAS.EmployerApprenticeshipsService.Domain/Models/Payments/PaymentTransactionLine.cs | src/SFA.DAS.EmployerApprenticeshipsService.Domain/Models/Payments/PaymentTransactionLine.cs | using System;
using System.Collections.Generic;
using System.Linq;
using SFA.DAS.EAS.Domain.Models.Transaction;
namespace SFA.DAS.EAS.Domain.Models.Payments
{
public class PaymentTransactionLine : TransactionLine
{
public Guid? PaymentId { get; set; }
public long UkPrn { get; set; }
pu... | using System;
using System.Collections.Generic;
using System.Linq;
using SFA.DAS.EAS.Domain.Models.Transaction;
namespace SFA.DAS.EAS.Domain.Models.Payments
{
public class PaymentTransactionLine : TransactionLine
{
public Guid? PaymentId { get; set; }
public long UkPrn { get; set; }
pu... | mit | C# |
9759ad83911da143912adbacec1c3936facaf520 | Add async Main snippet | lerthe61/Snippets,lerthe61/Snippets | dotNet/Tasks/AsyncMain.cs | dotNet/Tasks/AsyncMain.cs | class Program
{
static void Main(string[] args)
{
Task.Run(async () =>
{
// Do any async anything you need here without worry
}).GetAwaiter().GetResult();
}
}
// OR
private static int Main(string[] args)
{
var cts = new CancellationTokenSource();
... | class Program
{
static void Main(string[] args)
{
Task.Run(async () =>
{
// Do any async anything you need here without worry
}).GetAwaiter().GetResult();
}
} | unlicense | C# |
0f8cc9d9968baa029716bfed5ef39ccd3ad85482 | test commit for merge understanding | lukevp/CSharpBoy,lukevp/CSharpBoy | CSharpBoy/GPU.cs | CSharpBoy/GPU.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharpBoy
{
class GPU
{/*
TODO: IMPLEMENT THE GPU HERE.......
This is totally new block of comments */
byte[] RAM = new byte[0x2000];
int[][] screen = new int [... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharpBoy
{
class GPU
{
/* GB GPU
* VRAM: 8K */
byte[] RAM = new byte[0x2000];
int[][] screen = new int [144][];
}
}
| mit | C# |
68a81e0eb0f813fc3710ea09aa273d75ac2b8671 | Fix follow point transforms not working after rewind | smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,johnneijzen/osu,NeoAdonis/osu,ppy/osu,peppy/osu-new,smoogipooo/osu,UselessToucan/osu,peppy/osu,peppy/osu,NeoAdonis/osu,ppy/osu,EVAST9919/osu,johnneijzen/osu,UselessToucan/osu,2yangk23/osu,smoogipoo/osu,UselessToucan/osu,2yangk23/osu,EVAST9919/osu,ppy/osu,peppy/osu | osu.Game.Rulesets.Osu/Objects/Drawables/Connections/FollowPoint.cs | osu.Game.Rulesets.Osu/Objects/Drawables/Connections/FollowPoint.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 osuTK;
using osuTK.Graphics;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Fram... | // 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 osuTK;
using osuTK.Graphics;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Fram... | mit | C# |
920bc1f3f8cf8066abbb2fdab1efe8520a162d9a | Add FileSystemProvider xUnit test for issue 120 | JamesWTruher/PowerShell-1,TravisEz13/PowerShell,kmosher/PowerShell,kmosher/PowerShell,PaulHigin/PowerShell,PaulHigin/PowerShell,bingbing8/PowerShell,KarolKaczmarek/PowerShell,KarolKaczmarek/PowerShell,daxian-dbw/PowerShell,bingbing8/PowerShell,bmanikm/PowerShell,KarolKaczmarek/PowerShell,jsoref/PowerShell,TravisEz13/Po... | test/csharp/test_FileSystemProvider.cs | test/csharp/test_FileSystemProvider.cs | using Xunit;
using System;
using System.Collections.ObjectModel;
using System.IO;
using System.Management.Automation;
using System.Management.Automation.Provider;
using Microsoft.PowerShell.Commands;
namespace PSTests
{
[Collection("AssemblyLoadContext")]
public static class FileSystemProviderTests
{
... | using Xunit;
using System;
using System.Management.Automation;
using Microsoft.PowerShell.Commands;
namespace PSTests
{
[Collection("AssemblyLoadContext")]
public static class FileSystemProviderTests
{
[Fact]
public static void TestCreateJunctionFails()
{
Assert.False(In... | mit | C# |
1963060edc26ca2d32d531c75257d4b197b325ad | Update annotations for types implementing IDiscardSymbol | shyamnamboodiripad/roslyn,agocke/roslyn,eriawan/roslyn,diryboy/roslyn,heejaechang/roslyn,weltkante/roslyn,panopticoncentral/roslyn,abock/roslyn,genlu/roslyn,brettfo/roslyn,davkean/roslyn,KevinRansom/roslyn,davkean/roslyn,sharwell/roslyn,aelij/roslyn,stephentoub/roslyn,tmat/roslyn,AlekseyTs/roslyn,ErikSchierboom/roslyn,... | src/Compilers/CSharp/Portable/Symbols/PublicModel/DiscardSymbol.cs | src/Compilers/CSharp/Portable/Symbols/PublicModel/DiscardSymbol.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.
#nullable enable
using System.Diagnostics.CodeAnalysis;
using System.Threading;
using Roslyn.Utilities;
namespace Microsoft.CodeAnalysis.CSharp.Symbols.Pub... | // 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.Diagnostics;
using System.Threading;
namespace Microsoft.CodeAnalysis.CSharp.Symbols.PublicModel
{
internal sealed class DiscardSymbol : Sy... | mit | C# |
07210adb0ac1f873912b250029665dcec55b9d01 | Fix looking up referenced mechanics | HearthSim/HearthDb | HearthDb/Card.cs | HearthDb/Card.cs | #region
using System;
using System.Linq;
using HearthDb.CardDefs;
using HearthDb.Enums;
using static HearthDb.Enums.GameTag;
#endregion
namespace HearthDb
{
public class Card
{
internal Card(Entity entity)
{
Entity = entity;
}
public Entity Entity { get; }
public string Id => Entity.CardId;
publi... | #region
using System;
using System.Linq;
using HearthDb.CardDefs;
using HearthDb.Enums;
using static HearthDb.Enums.GameTag;
#endregion
namespace HearthDb
{
public class Card
{
internal Card(Entity entity)
{
Entity = entity;
}
public Entity Entity { get; }
public string Id => Entity.CardId;
publi... | mit | C# |
abc278c0a59380970a3bd3c11347eaa81335722e | Fix spinner | cra0zy/xwt,mono/xwt,hwthomas/xwt,hamekoz/xwt,mminns/xwt,steffenWi/xwt,residuum/xwt,sevoku/xwt,TheBrainTech/xwt,mminns/xwt,directhex/xwt,lytico/xwt,antmicro/xwt,iainx/xwt,akrisiun/xwt | Xwt.Gtk/Xwt.GtkBackend/SpinnerBackend.cs | Xwt.Gtk/Xwt.GtkBackend/SpinnerBackend.cs | //
// SpinnerBackend.cs
//
// Author:
// Jérémie Laval <jeremie.laval@xamarin.com>
//
// Copyright (c) 2012 Xamarin, Inc.
using System;
using System.Runtime.InteropServices;
using Xwt.Backends;
namespace Xwt.GtkBackend
{
public class SpinnerBackend : WidgetBackend, ISpinnerBackend
{
public SpinnerBackend ()... | //
// SpinnerBackend.cs
//
// Author:
// Jérémie Laval <jeremie.laval@xamarin.com>
//
// Copyright (c) 2012 Xamarin, Inc.
using System;
using System.Runtime.InteropServices;
using Xwt.Backends;
namespace Xwt.GtkBackend
{
public class SpinnerBackend : WidgetBackend, ISpinnerBackend
{
public SpinnerBackend ()... | mit | C# |
29903cd6265968b24f687766bed9ed033b7bc27a | Update AssemblyInfo.cs | justinyoo/EntityFramework.Testing,scott-xu/EntityFramework.Testing,justinyoo/EntityFramework.Testing | src/EntityFramework.Testing.Moq.Ninject/Properties/AssemblyInfo.cs | src/EntityFramework.Testing.Moq.Ninject/Properties/AssemblyInfo.cs | //-----------------------------------------------------------------------------------------------------
// <copyright file="AssemblyInfo.cs" company="Scott Xu">
// Copyright (c) 2014 Scott Xu.
// </copyright>
//-----------------------------------------------------------------------------------------------------
usi... | //-----------------------------------------------------------------------------------------------------
// <copyright file="AssemblyInfo.cs" company="Scott Xu">
// Copyright (c) 2014 Scott Xu.
// </copyright>
//-----------------------------------------------------------------------------------------------------
usi... | apache-2.0 | C# |
0b1bdce92cd1fd24365dfdb32f9a03d4ee7ccddd | Fix part of serialization issue with 0x07 block list packet | HelloKitty/Booma.Proxy | src/Booma.Proxy.Packets.ShipServer/Payloads/Server/ShipBlockListEventPayload.cs | src/Booma.Proxy.Packets.ShipServer/Payloads/Server/ShipBlockListEventPayload.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using FreecraftCore.Serializer;
namespace Booma.Proxy
{
//TODO: Sometimes A0 is used and sometimes 07 is used. We should create a DTO for both.
/// <summary>
/// Contains the block list for menu rend... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using FreecraftCore.Serializer;
namespace Booma.Proxy
{
//TODO: Sometimes A0 is used and sometimes 07 is used. We should create a DTO for both.
/// <summary>
/// Contains the block list for menu rend... | agpl-3.0 | C# |
b57ed808ceb0b3637865a70ae01402ecf296baef | Rename method to get semaphore | justinjstark/Verdeler,justinjstark/Delivered | Verdeler/ConcurrencyLimiter.cs | Verdeler/ConcurrencyLimiter.cs | using System;
using System.Collections.Concurrent;
using System.Threading;
using System.Threading.Tasks;
namespace Verdeler
{
internal class ConcurrencyLimiter<TSubject>
{
private readonly Func<TSubject, object> _subjectReductionMap;
private readonly int _concurrencyLimit;
private re... | using System;
using System.Collections.Concurrent;
using System.Threading;
using System.Threading.Tasks;
namespace Verdeler
{
internal class ConcurrencyLimiter<TSubject>
{
private readonly Func<TSubject, object> _subjectReductionMap;
private readonly int _concurrencyLimit;
private re... | mit | C# |
c7287b43cb52060b5467aad229983f0ab693a57a | Use Task.CompletedTask to reduce allocations (#3243) | IdentityServer/IdentityServer4,IdentityServer/IdentityServer4,IdentityServer/IdentityServer4,MienDev/IdentityServer4,IdentityServer/IdentityServer4,MienDev/IdentityServer4,MienDev/IdentityServer4,MienDev/IdentityServer4 | src/AspNetIdentity/src/SecurityStampValidatorCallback.cs | src/AspNetIdentity/src/SecurityStampValidatorCallback.cs | // Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
using Microsoft.AspNetCore.Identity;
using System.Threading.Tasks;
using System.Linq;
namespace IdentityServer4.AspNetIdentity
{
/// <su... | // Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
using Microsoft.AspNetCore.Identity;
using System.Threading.Tasks;
using System.Linq;
namespace IdentityServer4.AspNetIdentity
{
/// <su... | apache-2.0 | C# |
239befd6a051924074ff1838294d4d61c172f3aa | Set assembly description to GitHub repo. | ASOIU/GitHub2FAuth | GitHub2FAuth/Properties/AssemblyInfo.cs | GitHub2FAuth/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated ... | using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated ... | mit | C# |
7602cd269e265c1e7327a487a4aacc859e182a40 | remove ticks | jefking/King.Service.ServiceBus | King.Service.ServiceBus/Timing/Sleep.cs | King.Service.ServiceBus/Timing/Sleep.cs | namespace King.Service.ServiceBus.Timing
{
using System;
using System.Threading;
/// <summary>
/// Sleep
/// </summary>
public class Sleep : ISleep
{
#region Methods
/// <summary>
/// Until
/// </summary>
/// <param name="time">Time</param>
p... | namespace King.Service.ServiceBus.Timing
{
using System;
using System.Threading;
/// <summary>
/// Sleep
/// </summary>
public class Sleep : ISleep
{
#region Methods
/// <summary>
/// Until
/// </summary>
/// <param name="time">Time</param>
p... | mit | C# |
a3ad9686d6cfd0afd5b12ac4d7acf0f102d01919 | Remove reference to Nullables | fredericDelaporte/nhibernate-core,livioc/nhibernate-core,livioc/nhibernate-core,RogerKratz/nhibernate-core,ngbrown/nhibernate-core,alobakov/nhibernate-core,hazzik/nhibernate-core,RogerKratz/nhibernate-core,livioc/nhibernate-core,gliljas/nhibernate-core,nkreipke/nhibernate-core,fredericDelaporte/nhibernate-core,gliljas/... | src/NHibernate.UserTypes.Tests/SerializabilityFixture.cs | src/NHibernate.UserTypes.Tests/SerializabilityFixture.cs | using System;
using System.Reflection;
using NHibernate.Type;
using NHibernate.UserTypes.SqlTypes;
using NUnit.Framework;
namespace NHibernate.UserTypes.Tests
{
[TestFixture]
public class SerializabilityFixture
{
public static void CheckITypesInAssembly(Assembly assembly)
{
foreach (System.T... | using System;
using System.Reflection;
using NHibernate.Type;
using NHibernate.UserTypes.SqlTypes;
using Nullables.NHibernate;
using NUnit.Framework;
namespace NHibernate.UserTypes.Tests
{
[TestFixture]
public class SerializabilityFixture
{
public static void CheckITypesInAssembly(Assembly assem... | lgpl-2.1 | C# |
6ceb7253e2685e039e446787cb6f8c1162dff327 | Use "error: path" in the ToString method of ChildSchemaValidationError too. | NJsonSchema/NJsonSchema,RSuter/NJsonSchema | src/NJsonSchema/Validation/ChildSchemaValidationError.cs | src/NJsonSchema/Validation/ChildSchemaValidationError.cs | //-----------------------------------------------------------------------
// <copyright file="ChildSchemaValidationError.cs" company="NJsonSchema">
// Copyright (c) Rico Suter. All rights reserved.
// </copyright>
// <license>https://github.com/rsuter/NJsonSchema/blob/master/LICENSE.md</license>
// <author>Ri... | //-----------------------------------------------------------------------
// <copyright file="ChildSchemaValidationError.cs" company="NJsonSchema">
// Copyright (c) Rico Suter. All rights reserved.
// </copyright>
// <license>https://github.com/rsuter/NJsonSchema/blob/master/LICENSE.md</license>
// <author>Ri... | mit | C# |
b5bb1fdb261656c9af69da03274a051f28c5a3ba | bump version number | martin2250/OpenCNCPilot | OpenCNCPilot/Properties/AssemblyInfo.cs | OpenCNCPilot/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("OpenCNCPilot")]
[as... | using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("OpenCNCPilot")]
[as... | mit | C# |
d5acbd9fa7e17f286152e0b031e5263eb0d19bda | make select editor non-abstract | WasimAhmad/Serenity,linpiero/Serenity,TukekeSoft/Serenity,dfaruque/Serenity,dfaruque/Serenity,linpiero/Serenity,TukekeSoft/Serenity,volkanceylan/Serenity,dfaruque/Serenity,rolembergfilho/Serenity,volkanceylan/Serenity,rolembergfilho/Serenity,WasimAhmad/Serenity,WasimAhmad/Serenity,volkanceylan/Serenity,TukekeSoft/Seren... | Serenity.Script.UI/Editor/SelectEditor.cs | Serenity.Script.UI/Editor/SelectEditor.cs | using jQueryApi;
using Serenity.ComponentModel;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace Serenity
{
[Editor, DisplayName("Açılır Liste"), OptionsType(typeof(SelectEditorOptions))]
[Element("<input type=\"hidden\"/>"... | using jQueryApi;
using Serenity.ComponentModel;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace Serenity
{
[Editor, DisplayName("Açılır Liste"), OptionsType(typeof(SelectEditorOptions))]
[Element("<input type=\"hidden\"/>"... | mit | C# |
42b50bdaad6bea615f4ca9a478af27da99ca9051 | Upgrade version to 1.3.4 | tangxuehua/equeue,tangxuehua/equeue,tangxuehua/equeue,Aaron-Liu/equeue,geffzhang/equeue,geffzhang/equeue,Aaron-Liu/equeue | src/EQueue/Properties/AssemblyInfo.cs | src/EQueue/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过以下
// 特性集控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("EQueue")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyPro... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过以下
// 特性集控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("EQueue")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyPro... | mit | C# |
dfa066dca9be9f0797de42f459293c67c612fb1f | Add doc comments for `DiffLine` | github/VisualStudio,github/VisualStudio,github/VisualStudio | src/GitHub.Exports/Models/DiffLine.cs | src/GitHub.Exports/Models/DiffLine.cs | using System;
namespace GitHub.Models
{
public class DiffLine
{
/// <summary>
/// Was the line added, deleted or unchanged.
/// </summary>
public DiffChangeType Type { get; set; }
/// <summary>
/// Gets the old 1-based line number.
/// </summary>
... | using System;
namespace GitHub.Models
{
public class DiffLine
{
public DiffChangeType Type { get; set; }
public int OldLineNumber { get; set; } = -1;
public int NewLineNumber { get; set; } = -1;
public int DiffLineNumber { get; set; } = -1;
public string Content { get; ... | mit | C# |
6452cc632aac0a99e34ad369cd5c539f01423010 | Add registration to the serive | zanetdev/Glimpse.Prototype,zanetdev/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,Glimpse/Glimpse.Prototype,pranavkm/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,pranavkm/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,Glimpse/Glimpse.Prototy... | src/Glimpse.Common/GlimpseServices.cs | src/Glimpse.Common/GlimpseServices.cs | using Glimpse;
using Microsoft.Framework.ConfigurationModel;
using Microsoft.Framework.DependencyInjection;
using System.Collections.Generic;
namespace Glimpse
{
public class GlimpseServices
{
public static IEnumerable<IServiceDescriptor> GetDefaultServices()
{
return GetDefaultSer... | using Glimpse;
using Microsoft.Framework.ConfigurationModel;
using Microsoft.Framework.DependencyInjection;
using System.Collections.Generic;
namespace Glimpse
{
public class GlimpseServices
{
public static IEnumerable<IServiceDescriptor> GetDefaultServices()
{
return GetDefaultSer... | mit | C# |
040f5c41caf12484ec32c357c2dfb2d6af46233a | Add Get in FibonachiGenerator | prifio/Assignment2 | Assignment2Application/Assignment2Application/FibonacciGenerator.cs | Assignment2Application/Assignment2Application/FibonacciGenerator.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assignment2Application
{
public class FibonacciGenerator
{
/// <summary>
/// Return n-th Fibonacci number.
/// </summary>
/// <param name="n"></param>
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assignment2Application
{
public class FibonacciGenerator
{
/// <summary>
/// Return n-th Fibonacci number.
/// </summary>
/// <param name="n"></param>
... | mit | C# |
a32855838c3931d463eb0e50f6f5523aa50e4296 | Remove reference to old library name. | christophediericx/ArduinoSketchUploader | Source/ArduinoSketchUploader/Program.cs | Source/ArduinoSketchUploader/Program.cs | using ArduinoUploader;
namespace ArduinoSketchUploader
{
/// <summary>
/// The ArduinoSketchUploader can upload a compiled (Intel) HEX file directly to an attached Arduino.
/// </summary>
internal class Program
{
private static void Main(string[] args)
{
var commandLine... | using ArduinoUploader;
namespace ArduinoSketchUploader
{
/// <summary>
/// The ArduinoLibCSharp SketchUploader can upload a compiled (Intel) HEX file directly to an attached Arduino.
/// </summary>
internal class Program
{
private static void Main(string[] args)
{
var c... | mit | C# |
f8417df6a8b33c876fe21ac0816dfbfebcc26b67 | Update 103_Resolving_base_class_dependencies.cs | z4kn4fein/stashbox | test/IssueTests/103_Resolving_base_class_dependencies.cs | test/IssueTests/103_Resolving_base_class_dependencies.cs | using Stashbox.Attributes;
using Xunit;
namespace Stashbox.Tests.IssueTests
{
public class A
{ }
public class B
{ }
public class BaseClass
{
[Dependency]
public A A { get; set; }
public bool DoneA { get; set; }
[InjectionMethod]
public void InjectA()
... | using Stashbox.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
namespace Stashbox.Tests.IssueTests
{
public class A
{ }
public class B
{ }
public class BaseClass
{
[Dependency]
public A... | mit | C# |
d64b6ff2276eda8703181deecb3e0ecd6b18c87a | Fix merge conflict | BitSetsNet/BitSetsNet | Source/Utility.cs | Source/Utility.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BitsetsNET
{
class Utility
{
public static short GetHighBits(int x)
{
uint u = (uint)(x);
return (short) (u >> 16);
}
public st... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BitsetsNET
{
class Utility
{
public static short GetHighBits(int x)
{
uint u = (uint)(x);
return (short) (u >> 16);
}
public st... | apache-2.0 | C# |
ba477c5b6648ae5cab39928c20e1680c3a23fc24 | Update detection of the peverify.exe executable | jorisvergeer/Envify,Fody/Stamp | Tests/Verifier.cs | Tests/Verifier.cs | using System;
using System.Diagnostics;
using System.IO;
using System.Text.RegularExpressions;
using NUnit.Framework;
public static class Verifier
{
public static void Verify(string beforeAssemblyPath, string afterAssemblyPath)
{
var before = Validate(beforeAssemblyPath);
var after = Validate(... | using System;
using System.Diagnostics;
using System.IO;
using System.Text.RegularExpressions;
using NUnit.Framework;
public static class Verifier
{
public static void Verify(string beforeAssemblyPath, string afterAssemblyPath)
{
var before = Validate(beforeAssemblyPath);
var after = Validate(... | mit | C# |
93361a75f007b87d39a0678e59b5f75d8f2f28e5 | remove double | 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# |
628c9ac5ed6fd92ed67fb5add64e629111ffb45a | remove code that causes bug where eg ViewBag.Title conflicts with property Title of model being rendered | mcintyre321/FormFactory,mcintyre321/FormFactory,mcintyre321/FormFactory | FormFactory.Templates/Views/Shared/FormFactory/Form.Property.cshtml | FormFactory.Templates/Views/Shared/FormFactory/Form.Property.cshtml | @using System.ComponentModel.DataAnnotations
@using FormFactory
@model PropertyVm
@{
var dataAttributes = Model.GetCustomAttributes().OfType<DataTypeAttribute>();
if (dataAttributes.Any(da => da.CustomDataType == "Hidden"))
{
<input name="@Model.Name" type="hidden" value="@Model.Value" />
... | @using System.ComponentModel.DataAnnotations
@using FormFactory
@model PropertyVm
@{
var dataAttributes = Model.GetCustomAttributes().OfType<DataTypeAttribute>();
if (dataAttributes.Any(da => da.CustomDataType == "Hidden"))
{
<input name="@Model.Name" type="hidden" value="@Model.Value" />
}
els... | mit | C# |
221ef2e2a7e3e7eff46643e78f3411c347ec1fea | Update Naos.Recipes.ItsDomain.Authorization with auto generated info and other stuff to play nice as an injected file as well as making internal. | NaosProject/Naos.Recipes | Naos.Recipes.ItsDomain.Authorization/.Naos.Recipes/Authorization.cs | Naos.Recipes.ItsDomain.Authorization/.Naos.Recipes/Authorization.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="Authorization.cs" company="Naos">
// Copyright 2015 Naos
// </copyright>
// <auto-generated>
// Sourced from NuGet package. Will be overwritten with package update except in Na... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="Authorization.cs" company="Naos">
// Copyright 2015 Naos
// </copyright>
// ------------------------------------------------------------------------------------------------------... | mit | C# |
48afbd6bc10deece1ef98c1f93e05b50c77c61f7 | Update database table size analysis report test to abstract report test | ChristopherJennings/KInspector,Kentico/KInspector,Kentico/KInspector,Kentico/KInspector,ChristopherJennings/KInspector,Kentico/KInspector,ChristopherJennings/KInspector,ChristopherJennings/KInspector | KenticoInspector.Reports.Tests/DatabaseTableSizeAnalysisTest.cs | KenticoInspector.Reports.Tests/DatabaseTableSizeAnalysisTest.cs | using KenticoInspector.Core.Constants;
using KenticoInspector.Reports.DatabaseTableSizeAnalysis;
using KenticoInspector.Reports.DatabaseTableSizeAnalysis.Models;
using KenticoInspector.Reports.Tests.Helpers;
using NUnit.Framework;
using System.Collections.Generic;
namespace KenticoInspector.Reports.Tests
{
[TestF... | using KenticoInspector.Core.Constants;
using KenticoInspector.Core.Models;
using KenticoInspector.Core.Services.Interfaces;
using KenticoInspector.Reports.DatabaseTableSizeAnalysis;
using KenticoInspector.Reports.DatabaseTableSizeAnalysis.Models;
using KenticoInspector.Reports.Tests.Helpers;
using Moq;
using NUnit.Fra... | mit | C# |
7a728edddc07db0c527d556152ed049403eb10b4 | rename list_counter | bitzhuwei/CSharpGL,bitzhuwei/CSharpGL,bitzhuwei/CSharpGL | Demos/OrderIndependentTransparency/OITNode.build_lists.cs | Demos/OrderIndependentTransparency/OITNode.build_lists.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSharpGL;
namespace OrderIndependentTransparency
{
public partial class OITNode : PickableNode
{
private const string buildListsVert = @"#version 330
in vec3 inPosition;
in vec3 inNormal;
uniform mat4 mvpMatr... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSharpGL;
namespace OrderIndependentTransparency
{
public partial class OITNode : PickableNode
{
private const string buildListsVert = @"#version 330
in vec3 inPosition;
in vec3 inNormal;
uniform mat4 mvpMatr... | mit | C# |
ea3deb024c84e2e680d4809e60fde5c75db2a495 | include default assets | Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen | Dashen/View.cs | Dashen/View.cs | using System.Collections.Generic;
using System.Linq;
using System.Text;
using Dashen.Assets;
using Dashen.Infrastructure;
namespace Dashen
{
public class View
{
private readonly List<AssetInfo> _assets;
public View()
{
_assets = new List<AssetInfo>();
_assets.Add(new JavaScriptAssetInfo("static/js/rea... | using System.Collections.Generic;
using System.Linq;
using System.Text;
using Dashen.Infrastructure;
namespace Dashen
{
public class View
{
private readonly List<AssetInfo> _assets;
public View()
{
_assets = new List<AssetInfo>();
}
public void AddAsset(AssetInfo asset)
{
_assets.Add(asset);
}... | lgpl-2.1 | C# |
0de4018e88ca2762f88389c79ec1535b0407781d | Modify ILogger.cs for sytlecop compliance. | dingjimmy/primer | Primer/ILogger.cs | Primer/ILogger.cs | //-----------------------------------------------------------------------
// <copyright file="ILogger.cs" company="James Dingle">
// Copyright (c) James Dingle
// </copyright>
//-----------------------------------------------------------------------
namespace Primer
{
using System;
/// <summary>
/// ... | // Copyright (c) James Dingle
using System;
namespace Primer
{
public interface ILogger
{
void Trace(int eventId, object state, Exception ex);
//void Trace(int eventId, object state, Exception ex, Func<object, Exception, string> formatter);
void Debug(int eventId, object state, Exce... | mit | C# |
79ed3318b58816eda84d27ae720c0aeb8fddf404 | Update NDemo.csx | demigor/nreact | NReact.Demo.Wpf/Components/NDemo.csx | NReact.Demo.Wpf/Components/NDemo.csx | #if NETFX_CORE
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media;
#else
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
#endif
namespace NReact
{
public partial class NDemo
{
public override NElement Render()
{
return
<Stack... | #if NETFX_CORE
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media;
#else
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
#endif
namespace NReact
{
public partial class NDemo
{
public override NElement Render()
{
return
<Stack... | mit | C# |
2765546fd331cc05a37d346145cfa34d284e6a14 | Add flag 0x20 to PacketFlags | MrSwiss/PolarisServer,cyberkitsune/PolarisServer,PolarisTeam/PolarisServer,Dreadlow/PolarisServer,lockzag/PolarisServer | PolarisServer/Models/FixedPackets.cs | PolarisServer/Models/FixedPackets.cs | using System;
using System.Runtime.InteropServices;
using PolarisServer.Models;
namespace PolarisServer.Models
{
public struct PacketHeader
{
public UInt32 Size;
public byte Type;
public byte Subtype;
public byte Flags1;
public byte Flags2;
public PacketHeader(... | using System;
using System.Runtime.InteropServices;
using PolarisServer.Models;
namespace PolarisServer.Models
{
public struct PacketHeader
{
public UInt32 Size;
public byte Type;
public byte Subtype;
public byte Flags1;
public byte Flags2;
public PacketHeader(... | agpl-3.0 | C# |
6f03e71ae0bea53e5b8f2b72bb7c5d96908852fa | Update variable naming. | AkshayHarshe/arcgis-runtime-samples-dotnet,Esri/arcgis-runtime-samples-dotnet,sharifulgeo/arcgis-runtime-samples-dotnet,Esri/arcgis-runtime-samples-dotnet,Arc3D/arcgis-runtime-samples-dotnet,Esri/arcgis-runtime-samples-dotnet | src/Desktop/ArcGISRuntimeSamplesDesktop/Samples/Scene/FeatureLayerFromLocalGeodatabase3d.xaml.cs | src/Desktop/ArcGISRuntimeSamplesDesktop/Samples/Scene/FeatureLayerFromLocalGeodatabase3d.xaml.cs | using Esri.ArcGISRuntime.Controls;
using Esri.ArcGISRuntime.Data;
using Esri.ArcGISRuntime.Geometry;
using Esri.ArcGISRuntime.Layers;
using System;
using System.Windows;
using System.Windows.Controls;
namespace ArcGISRuntime.Samples.Desktop
{
/// <summary>
/// This sample shows how to add a FeatureLayer ... | using Esri.ArcGISRuntime.Controls;
using Esri.ArcGISRuntime.Data;
using Esri.ArcGISRuntime.Geometry;
using Esri.ArcGISRuntime.Layers;
using System;
using System.Windows;
using System.Windows.Controls;
namespace ArcGISRuntime.Samples.Desktop
{
/// <summary>
/// This sample shows how to add a FeatureLayer ... | apache-2.0 | C# |
15b29e191c969719ce4dba36683c99900dc6e75c | Update TestFederatedPegBlockDefinition.cs (#3366) | bokobza/StratisBitcoinFullNode,fassadlr/StratisBitcoinFullNode,mikedennis/StratisBitcoinFullNode,fassadlr/StratisBitcoinFullNode,Neurosploit/StratisBitcoinFullNode,stratisproject/StratisBitcoinFullNode,bokobza/StratisBitcoinFullNode,Neurosploit/StratisBitcoinFullNode,mikedennis/StratisBitcoinFullNode,bokobza/StratisBit... | src/Stratis.Features.FederatedPeg.IntegrationTests/Utils/TestFederatedPegBlockDefinition.cs | src/Stratis.Features.FederatedPeg.IntegrationTests/Utils/TestFederatedPegBlockDefinition.cs | using Microsoft.Extensions.Logging;
using NBitcoin;
using Stratis.Bitcoin.Consensus;
using Stratis.Bitcoin.Features.Consensus.CoinViews;
using Stratis.Bitcoin.Features.MemoryPool;
using Stratis.Bitcoin.Features.MemoryPool.Interfaces;
using Stratis.Bitcoin.Features.Miner;
using Stratis.Bitcoin.Features.SmartContracts;
... | using Microsoft.Extensions.Logging;
using NBitcoin;
using Stratis.Bitcoin.Configuration;
using Stratis.Bitcoin.Consensus;
using Stratis.Bitcoin.Features.Consensus.CoinViews;
using Stratis.Bitcoin.Features.MemoryPool;
using Stratis.Bitcoin.Features.MemoryPool.Interfaces;
using Stratis.Bitcoin.Features.SmartContracts;
u... | mit | C# |
23f0f196d362cbc00a36401e08119a581c5a7ee0 | Update WebApiConfig.cs | cayodonatti/TopGearApi | TopGearApi/App_Start/WebApiConfig.cs | TopGearApi/App_Start/WebApiConfig.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http;
namespace TopGearApi
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
// Web API configuration and services
// Web API rou... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http;
namespace TopGearApi
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
// Web API configuration and services
// Web API routes
... | mit | C# |
bcf529d1c3e0945db12274ca1cba7d640dadf354 | Remove EN-us culture from assembly attributes. | provisiondata/Provision.AspNet.Identity.PlainSql | src/Provision.AspNet.Identity.PlainSql/Properties/AssemblyInfo.cs | src/Provision.AspNet.Identity.PlainSql/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Provision.AspNet.Identity.PlainSql")]
[assembly: AssemblyDescription("ASP.NET Identity provider for SQL databases")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Provision Data Systems Inc.")]
[assembly: Asse... | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Provision.AspNet.Identity.PlainSql")]
[assembly: AssemblyDescription("ASP.NET Identity provider for SQL databases")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Provision Data Systems Inc.")]
[assembly: Asse... | mit | C# |
284b86ef5c9f8c63efee2e0c0bcda68b303e4f0c | use Path.Combine(...) in place of hard-coded path separators | mrward/monodevelop-nuget-addin | src/MonoDevelop.PackageManagement/MonoDevelop.PackageManagement/NuGetPackageRestoreCommandLine.cs | src/MonoDevelop.PackageManagement/MonoDevelop.PackageManagement/NuGetPackageRestoreCommandLine.cs | //
// NuGetPackageRestoreCommandLine.cs
//
// Author:
// Matt Ward <ward.matt@gmail.com>
//
// Copyright (C) 2013 Matthew Ward
//
// 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 So... | //
// NuGetPackageRestoreCommandLine.cs
//
// Author:
// Matt Ward <ward.matt@gmail.com>
//
// Copyright (C) 2013 Matthew Ward
//
// 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 So... | mit | C# |
0ba6b7246e63a3fd8ab1d1c530be7f5a4b26523f | Rework extension to spend less time on UI thread | killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity | Assets/MixedRealityToolkit.Providers/WindowsMixedReality/Extensions/InteractionSourceExtensions.cs | Assets/MixedRealityToolkit.Providers/WindowsMixedReality/Extensions/InteractionSourceExtensions.cs | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
#if WINDOWS_UWP
using Microsoft.MixedReality.Toolkit.Windows.Utilities;
using System;
using System.Collections.Generic;
using UnityEngine.XR.WSA.Input;
using Windows... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
#if WINDOWS_UWP
using Microsoft.MixedReality.Toolkit.Windows.Utilities;
using System;
using System.Collections.Generic;
using UnityEngine.XR.WSA.Input;
using Windows... | mit | C# |
ae016b271bae94d0b4d20ccae76dd1e8d773f405 | use 32bit index by default on Unity 2017 or newer | unity3d-jp/AlembicImporter,unity3d-jp/AlembicImporter,unity3d-jp/AlembicImporter | AlembicImporter/Assets/UTJ/Alembic/Scripts/Importer/AlembicSettings.cs | AlembicImporter/Assets/UTJ/Alembic/Scripts/Importer/AlembicSettings.cs | using UnityEngine;
namespace UTJ.Alembic
{
[System.Serializable]
public class AlembicStreamSettings
{
[SerializeField] public AbcAPI.aiNormalsMode normalsMode = AbcAPI.aiNormalsMode.ComputeIfMissing;
[SerializeField] public AbcAPI.aiTangentsMode tangentsMode = AbcAPI.aiTangentsMode.Smooth;
... | using UnityEngine;
namespace UTJ.Alembic
{
[System.Serializable]
public class AlembicStreamSettings
{
[SerializeField] public AbcAPI.aiNormalsMode normalsMode = AbcAPI.aiNormalsMode.ComputeIfMissing;
[SerializeField] public AbcAPI.aiTangentsMode tangentsMode = AbcAPI.aiTangentsMode.Smooth;
... | mit | C# |
29d47fdfa9eafa7b048546a967c27098b6947c5e | Fix tests failing | hmemcpy/AgentMulder | src/AgentMulder.ReSharper.Tests/ReSharperTestEnvironmentAssembly.cs | src/AgentMulder.ReSharper.Tests/ReSharperTestEnvironmentAssembly.cs | using System;
using JetBrains.Application.BuildScript.Application.Zones;
using JetBrains.ReSharper.TestFramework;
using JetBrains.TestFramework;
using JetBrains.TestFramework.Application.Zones;
using NUnit.Framework;
[assembly: RequiresSTA]
/// <summary>
/// Test environment. Must be in the global ... | using System;
using System.Collections.Generic;
using JetBrains.Application;
using JetBrains.Application.BuildScript.Application;
using JetBrains.Application.BuildScript.Application.Zones;
using JetBrains.Application.BuildScript.PackageSpecification;
using JetBrains.Application.BuildScript.Solution;
usi... | mit | C# |
11ab042c70906072bc88da453d787daa45980413 | improve code style. | Faithlife/FaithlifeUtility | src/Faithlife.Utility/ByteUtility.cs | src/Faithlife.Utility/ByteUtility.cs | using System;
namespace Faithlife.Utility
{
/// <summary>
/// Provides helper methods for working with <see cref="byte"/>.
/// </summary>
public static class ByteUtility
{
/// <summary>
/// Converts the specified string representation of bytes into a byte array.
/// </summary>
/// <param name="value">The ... | using System;
namespace Faithlife.Utility
{
/// <summary>
/// Provides helper methods for working with <see cref="byte"/>.
/// </summary>
public static class ByteUtility
{
/// <summary>
/// Converts the specified string representation of bytes into a byte array.
/// </summary>
/// <param name="value">The ... | mit | C# |
b005dc3756b3d8c09dbba6f2152847b0e97f83b0 | add in virtual to be nice | AnthonySteele/SevenDigital.Api.Wrapper,actionshrimp/SevenDigital.Api.Wrapper,danhaller/SevenDigital.Api.Wrapper,minkaotic/SevenDigital.Api.Wrapper,gregsochanik/SevenDigital.Api.Wrapper,emashliles/SevenDigital.Api.Wrapper,bnathyuw/SevenDigital.Api.Wrapper,raoulmillais/SevenDigital.Api.Wrapper,luiseduardohdbackup/SevenDi... | src/SevenDigital.Api.Wrapper/EndpointResolution/EndpointResolver.cs | src/SevenDigital.Api.Wrapper/EndpointResolution/EndpointResolver.cs | using System;
using SevenDigital.Api.Wrapper.EndpointResolution.OAuth;
using SevenDigital.Api.Wrapper.Utility.Http;
using System.Collections.Generic;
namespace SevenDigital.Api.Wrapper.EndpointResolution
{
public class EndpointResolver : IEndpointResolver
{
private readonly IUrlResolver _urlResolver;
... | using System;
using SevenDigital.Api.Wrapper.EndpointResolution.OAuth;
using SevenDigital.Api.Wrapper.Utility.Http;
using System.Collections.Generic;
namespace SevenDigital.Api.Wrapper.EndpointResolution
{
public class EndpointResolver : IEndpointResolver
{
private readonly IUrlResolver _urlResolver;
... | mit | C# |
295729fb7bd23e592560e408b62771b5b1f8d3f1 | Make sure Issues are at correct index | furore-fhir/spark,furore-fhir/spark,furore-fhir/spark | src/Spark.Engine.Test/Extensions/OperationOutcomeInnerErrorsTest.cs | src/Spark.Engine.Test/Extensions/OperationOutcomeInnerErrorsTest.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Hl7.Fhir.Model;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Spark.Engine.Extensions;
namespace Spark.Engine.Test.Extensions
{
[TestClass]
public class OperationOutcomeInnerEr... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Hl7.Fhir.Model;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Spark.Engine.Extensions;
namespace Spark.Engine.Test.Extensions
{
[TestClass]
public class OperationOutcomeInnerEr... | bsd-3-clause | C# |
47255667cfbb4b26c01bb9cf2294079f9b2509cb | Rename method | CyrusNajmabadi/roslyn,CyrusNajmabadi/roslyn,dotnet/roslyn,bartdesmet/roslyn,jasonmalinowski/roslyn,bartdesmet/roslyn,shyamnamboodiripad/roslyn,CyrusNajmabadi/roslyn,mavasani/roslyn,dotnet/roslyn,shyamnamboodiripad/roslyn,jasonmalinowski/roslyn,mavasani/roslyn,shyamnamboodiripad/roslyn,jasonmalinowski/roslyn,bartdesmet/... | src/Workspaces/Core/Portable/Workspace/Host/HostSolutionServices.cs | src/Workspaces/Core/Portable/Workspace/Host/HostSolutionServices.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.Generic;
namespace Microsoft.CodeAnalysis.Host
{
// TODO(cyrusn): Make ... | // 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.Generic;
namespace Microsoft.CodeAnalysis.Host
{
// TODO(cyrusn): Make ... | mit | C# |
2833365c54033311e18ccd7472c18ad23e1f6086 | Change interface Tick() signature to match implementation (#33) | Mpdreamz/shellprogressbar | src/ShellProgressBar/IProgressBar.cs | src/ShellProgressBar/IProgressBar.cs | using System;
namespace ShellProgressBar
{
public interface IProgressBar : IDisposable
{
ChildProgressBar Spawn(int maxTicks, string message, ProgressBarOptions options = null);
void Tick(string message = null);
int MaxTicks { get; set; }
string Message { get; set; }
double Percentage { get; }
int Cur... | using System;
namespace ShellProgressBar
{
public interface IProgressBar : IDisposable
{
ChildProgressBar Spawn(int maxTicks, string message, ProgressBarOptions options = null);
void Tick(string message = "");
int MaxTicks { get; set; }
string Message { get; set; }
double Percentage { get; }
int Curre... | mit | C# |
8e8797e0d8620576955eaeb7dc7f16c4808b33c4 | Update test | DaveSenn/Extend | .Src/Extend.Testing/System.Assembly/Assembly.GetDefinedTypes.Test.cs | .Src/Extend.Testing/System.Assembly/Assembly.GetDefinedTypes.Test.cs | #region Usings
using System;
using System.Linq;
using System.Reflection;
using FluentAssertions;
using Xunit;
#endregion
namespace Extend.Testing
{
public partial class AssemblyExTest
{
[Fact]
public void GetDefinedTypesNullValueTest()
{
Assembly assembly = null;
... | #region Usings
using System;
using System.Linq;
using System.Reflection;
using FluentAssertions;
using Xunit;
#endregion
namespace Extend.Testing
{
public partial class AssemblyExTest
{
[Fact]
public void GetDefinedTypesNullValueTest()
{
Assembly assembly = null;
... | mit | C# |
6a43ac1b2cd2bbfe048b85de04c0dde5920e69ce | fix tabs | QuinntyneBrown/ContactService,QuinntyneBrown/ContactService,QuinntyneBrown/ContactService,QuinntyneBrown/ContactService | src/ContactService/Data/Model/ContactRequest.cs | src/ContactService/Data/Model/ContactRequest.cs | using System;
using System.Collections.Generic;
using ContactService.Data.Helpers;
using System.ComponentModel.DataAnnotations.Schema;
namespace ContactService.Data.Model
{
[SoftDelete("IsDeleted")]
public class ContactRequest: ILoggable
{
public int Id { get; set; }
[ForeignKey("T... | using System;
using System.Collections.Generic;
using ContactService.Data.Helpers;
using System.ComponentModel.DataAnnotations.Schema;
namespace ContactService.Data.Model
{
[SoftDelete("IsDeleted")]
public class ContactRequest: ILoggable
{
public int Id { get; set; }
[ForeignKey("Tenant"... | mit | C# |
6d64ed8894a6e8692b889b4f93e65d0f2523770c | Bump version to 1.0.2 | Ky7m/Roslyn.Utilities | src/Roslyn.Utilities/Properties/AssemblyInfo.cs | src/Roslyn.Utilities/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyTitle("Roslyn.Utilities")]
[assembly: AssemblyProduct("Roslyn.Utilities")]
[assembly: AssemblyVersion("1.0.2")]
[assembly: AssemblyFileVersion("1.0.2")]
[assembly: InternalsVisibleTo("Roslyn.Utilities.Tests")] | using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyTitle("Roslyn.Utilities")]
[assembly: AssemblyProduct("Roslyn.Utilities")]
[assembly: AssemblyVersion("1.0.1")]
[assembly: AssemblyFileVersion("1.0.1")]
[assembly: InternalsVisibleTo("Roslyn.Utilities.Tests")] | apache-2.0 | C# |
d31ef0fa0b2296de177d4ce23b5d66a67010d3ae | Bump Cake.Recipe from 2.1.0 to 2.2.0 | agc93/Cake.BuildSystems.Module,agc93/Cake.BuildSystems.Module | recipe.cake | recipe.cake | #load nuget:?package=Cake.Recipe&version=2.2.0
Environment.SetVariableNames();
var standardNotificationMessage = "Version {0} of {1} has just been released, this will be available here https://www.nuget.org/packages/{1}, once package indexing is complete.";
BuildParameters.SetParameters(
context: Context,
buildS... | #load nuget:?package=Cake.Recipe&version=2.1.0
Environment.SetVariableNames();
var standardNotificationMessage = "Version {0} of {1} has just been released, this will be available here https://www.nuget.org/packages/{1}, once package indexing is complete.";
BuildParameters.SetParameters(
context: Context,
buildS... | mit | C# |
cc273aea8fe8fdabfdb68ae3a3f6f308947ea0ad | hide cursor | bschug/CLaUn.vs.SnaKe | Assets/Scripts/Metagame/Intro.cs | Assets/Scripts/Metagame/Intro.cs | using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class Intro : SingletonMonoBehaviour<Intro> {
public GameObject SplashScreen;
GameObject LittleClown { get { return PlayerRegistry.Instance.LittleClown; } }
GameObject BigClown { get { return PlayerRegistry.Instance.BigClown; }... | using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class Intro : SingletonMonoBehaviour<Intro> {
public GameObject SplashScreen;
GameObject LittleClown { get { return PlayerRegistry.Instance.LittleClown; } }
GameObject BigClown { get { return PlayerRegistry.Instance.BigClown; }... | mit | C# |
503fe7a02d53c0dcaec68914a4f2f4fe967f166e | fix for WCF serialization not supporting properties with no setter | keith-hall/Showcase_CSharp_MunicipalityTaxSchedule | MunicipalityTaxes/MunicipalityTaxes/Entities/TaxScheduleActionResult.cs | MunicipalityTaxes/MunicipalityTaxes/Entities/TaxScheduleActionResult.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace MunicipalityTaxes
{
[DataContract]
public class TaxScheduleActionResult<T>
{
[DataMember]
public TaxScheduleValidationResult Val... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace MunicipalityTaxes
{
[DataContract]
public class TaxScheduleActionResult<T>
{
[DataMember]
public TaxScheduleValidationResult Val... | mit | C# |
b737644208e0008eae06bdbe3a03b5ff9a527d1a | Add mania statistics | ppy/osu,smoogipoo/osu,NeoAdonis/osu,ZLima12/osu,UselessToucan/osu,NeoAdonis/osu,johnneijzen/osu,peppy/osu,peppy/osu,UselessToucan/osu,naoey/osu,2yangk23/osu,naoey/osu,EVAST9919/osu,johnneijzen/osu,peppy/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,ZLima12/osu,EVAST9919/osu,smoogipooo/osu,DrabWeb/osu,naoey/osu,DrabWeb/osu,2y... | osu.Game.Rulesets.Mania/Beatmaps/ManiaBeatmap.cs | osu.Game.Rulesets.Mania/Beatmaps/ManiaBeatmap.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.Collections.Generic;
using System.Linq;
using osu.Game.Beatmaps;
using osu.Game.Graphics;
using osu.Game.Rulesets.Mania.Objects;
using osu.Game.Rulesets.Ma... | // 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.Collections.Generic;
using System.Linq;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Mania.Objects;
using osu.Game.Rulesets.Mania.UI;
namespace osu.Ga... | mit | C# |
e5b34aa64159b82d26234643731ae28791d70132 | integrate open browser backend | Azure-Samples/MyDriving,Azure-Samples/MyDriving,Azure-Samples/MyDriving | XamarinApp/MyTrips/MyTrips.UWP/Views/SettingsView.xaml.cs | XamarinApp/MyTrips/MyTrips.UWP/Views/SettingsView.xaml.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xam... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xam... | mit | C# |
917032abc0ca2f8ef6d49f511a9e1e90c22803dc | Update LevelTests.cs | HQC-Team-Minesweeper-5/Minesweeper | tests/Minesweeper.Tests/LevelTests.cs | tests/Minesweeper.Tests/LevelTests.cs | namespace Minesweeper.Tests
{
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Minesweeper.Utils;
[TestClass]
public class LevelTests
{
private readonly int numberOfRows = 5;
private readonly int numberOfCols = 5;
private readonly int numberOfMine... | namespace Minesweeper.Tests
{
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Minesweeper.Utils;
[TestClass]
public class LevelTests
{
[TestMethod]
public void CreateLevelShouldCreateNewLevel()
{
var newLevel = new Level(3, 4, 1);
... | mit | C# |
6e418e3506682046bf47c50c458cd895f0e2533d | Use TryParseExact instead of ParseExact. Better performance. | arkivverket/arkade5,arkivverket/arkade5,arkivverket/arkade5 | src/Arkivverket.Arkade/Core/Addml/Definitions/DataTypes/DateDataType.cs | src/Arkivverket.Arkade/Core/Addml/Definitions/DataTypes/DateDataType.cs | using System;
using System.Collections.Generic;
using System.Globalization;
namespace Arkivverket.Arkade.Core.Addml.Definitions.DataTypes
{
public class DateDataType : DataType
{
private readonly string _dateTimeFormat;
private readonly string _fieldFormat;
public DateDataType(string ... | using System;
using System.Collections.Generic;
using System.Globalization;
namespace Arkivverket.Arkade.Core.Addml.Definitions.DataTypes
{
public class DateDataType : DataType
{
private readonly string _dateTimeFormat;
private readonly string _fieldFormat;
public DateDataType(string ... | agpl-3.0 | C# |
8ea253560663e26a496f271c385601967d754b2b | add optional param to interface | crdschurch/crds-signin-checkin,crdschurch/crds-signin-checkin,crdschurch/crds-signin-checkin,crdschurch/crds-signin-checkin | SignInCheckIn/MinistryPlatform.Translation/Repositories/Interfaces/IEventRepository.cs | SignInCheckIn/MinistryPlatform.Translation/Repositories/Interfaces/IEventRepository.cs | using System;
using System.Collections.Generic;
using MinistryPlatform.Translation.Models.DTO;
namespace MinistryPlatform.Translation.Repositories.Interfaces
{
public interface IEventRepository
{
List<MpEventDto> GetEvents(DateTime startDate, DateTime endDate, int site, bool? includeSubevents);
... | using System;
using System.Collections.Generic;
using MinistryPlatform.Translation.Models.DTO;
namespace MinistryPlatform.Translation.Repositories.Interfaces
{
public interface IEventRepository
{
List<MpEventDto> GetEvents(DateTime startDate, DateTime endDate, int site);
MpEventDto GetEventByI... | bsd-2-clause | C# |
157da86cc1c677e5005e44f2fc72f128a5a817dc | disable graphical representation for local players | bddckr/VRTK-PUN-NetworkTest | Assets/Scripts/CameraRigSyncingSetup.cs | Assets/Scripts/CameraRigSyncingSetup.cs | namespace NetworkTest
{
using UnityEngine;
using VRTK;
public sealed class CameraRigSyncingSetup : MonoBehaviour
{
public GameObject HeadsetNetworkRepresentation;
public GameObject LeftControllerNetworkRepresentation;
public GameObject RightControllerNetworkRepresentation;
... | namespace NetworkTest
{
using UnityEngine;
using VRTK;
public sealed class CameraRigSyncingSetup : MonoBehaviour
{
public GameObject HeadsetNetworkRepresentation;
public GameObject LeftControllerNetworkRepresentation;
public GameObject RightControllerNetworkRepresentation;
... | mit | C# |
a0aeccf2322d06c782c9fc15d5eda86d1b15df6b | Fix fallback to default combo colours not working | smoogipooo/osu,2yangk23/osu,2yangk23/osu,smoogipoo/osu,smoogipoo/osu,ppy/osu,peppy/osu-new,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,ZLima12/osu,smoogipoo/osu,UselessToucan/osu,johnneijzen/osu,peppy/osu,ZLima12/osu,EVAST9919/osu,UselessToucan/osu,johnneijzen/osu,EVAST9919/osu,peppy/osu,peppy/o... | osu.Game/Skinning/DefaultSkin.cs | osu.Game/Skinning/DefaultSkin.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using osu.Framework.Audio.Sample;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Textures;
u... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Audio.Sample;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Textures;
using osu.Game.Audio;
namespace os... | mit | C# |
6312b56988e0333409e6a5092af3ffc27faedbe4 | fix hardcoded blob path in theme | Wyamio/Wyam,Wyamio/Wyam,Wyamio/Wyam | themes/Docs/Samson/_BlogLayout.cshtml | themes/Docs/Samson/_BlogLayout.cshtml | @{
Layout = "/_Layout.cshtml";
}
@section Sidebar {
<li class="header"><i class="fa fa-bookmark"></i> Categories</li>
@foreach(string category in Documents[Docs.BlogPosts]
.Select(x => x.String(DocsKeys.Category))
.Distinct()
.OrderBy(x => x))
{
string link =... | @{
Layout = "/_Layout.cshtml";
}
@section Sidebar {
<li class="header"><i class="fa fa-bookmark"></i> Categories</li>
@foreach(string category in Documents[Docs.BlogPosts]
.Select(x => x.String(DocsKeys.Category))
.Distinct()
.OrderBy(x => x))
{
string link =... | mit | C# |
9b02656c607af9235ff80c5f4488be9be55638ab | Update MandatoryConfigurationValidationStrategy.cs | tiksn/TIKSN-Framework | TIKSN.Core/Configuration/ValidationStrategy/MandatoryConfigurationValidationStrategy.cs | TIKSN.Core/Configuration/ValidationStrategy/MandatoryConfigurationValidationStrategy.cs | using System;
using Microsoft.Extensions.DependencyInjection;
using TIKSN.Configuration.Validator;
namespace TIKSN.Configuration.ValidationStrategy
{
public class MandatoryConfigurationValidationStrategy<T> : ConfigurationValidationStrategyBase<T>
{
public MandatoryConfigurationValidationStrategy(ISer... | using Microsoft.Extensions.DependencyInjection;
using System;
using TIKSN.Configuration.Validator;
namespace TIKSN.Configuration.ValidationStrategy
{
public class MandatoryConfigurationValidationStrategy<T> : ConfigurationValidationStrategyBase<T>
{
public MandatoryConfigurationValidationStrategy(ISer... | mit | C# |
9fd15bcf32a646e1564a79a21b1917f2d33ca740 | change assembly info | hyonholee/azure-sdk-for-net,nathannfan/azure-sdk-for-net,yaakoviyun/azure-sdk-for-net,jhendrixMSFT/azure-sdk-for-net,samtoubia/azure-sdk-for-net,AzureAutomationTeam/azure-sdk-for-net,AzureAutomationTeam/azure-sdk-for-net,samtoubia/azure-sdk-for-net,JasonYang-MSFT/azure-sdk-for-net,ScottHolden/azure-sdk-for-net,olydis/a... | src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Properties/AssemblyInfo.cs | src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/Properties/AssemblyInfo.cs | //
// Copyright (c) Microsoft. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable la... | //
// Copyright (c) Microsoft. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable la... | mit | C# |
fe24d414dc914368def2781073c62e8e8641dc25 | Migrate GPSTracker sample to WebApplicationBuilder (#7869) | ibondy/orleans,ElanHasson/orleans,dotnet/orleans,hoopsomuah/orleans,dotnet/orleans,waynemunro/orleans,ElanHasson/orleans,hoopsomuah/orleans,waynemunro/orleans,ibondy/orleans | samples/GPSTracker/GPSTracker.Service/Program.cs | samples/GPSTracker/GPSTracker.Service/Program.cs | using Orleans.Hosting;
using GPSTracker;
using System.Net;
var builder = WebApplication.CreateBuilder(args);
builder.Host.UseOrleans((ctx, siloBuilder) => {
// In order to support multiple hosts forming a cluster, they must listen on different ports.
// Use the --InstanceId X option to launch subsequent hosts... | using Orleans.Hosting;
using GPSTracker;
using System.Net;
await Host.CreateDefaultBuilder(args)
.UseOrleans((ctx, siloBuilder) =>
{
// In order to support multiple hosts forming a cluster, they must listen on different ports.
// Use the --InstanceId X option to launch subsequent hosts.
... | mit | C# |
c47c9124de5612f86e5dcc11a79db173ce7e4e0b | Bump assembly version to v2.0.1.0 | bcemmett/SurveyMonkeyApi | SurveyMonkey/Properties/AssemblyInfo.cs | SurveyMonkey/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("Su... | 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("Su... | mit | C# |
65888d26240fa056613b12405f2a22e1ad20bcad | add some more suppressbecuse | OBeautifulCode/OBeautifulCode.Build | Analyzers/analyzers/SuppressBecause.cs | Analyzers/analyzers/SuppressBecause.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="SuppressBecause.cs" company="OBeautifulCode">
// Copyright (c) OBeautifulCode 2018. All rights reserved.
// </copyright>
// <auto-generated>
// Sourced from NuGet package. Wil... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="SuppressBecause.cs" company="OBeautifulCode">
// Copyright (c) OBeautifulCode 2018. All rights reserved.
// </copyright>
// <auto-generated>
// Sourced from NuGet package. Wil... | mit | C# |
96d6f1ba7943ad9f2585786c9c66d25ce58990cf | prepare next version | maxlmo/outlook-matters,makmu/outlook-matters,maxlmo/outlook-matters,makmu/outlook-matters | GlobalAssemblyInfo.cs | GlobalAssemblyInfo.cs | using System.Reflection;
[assembly: AssemblyCompany("outlook-matters project")]
[assembly: AssemblyProduct("OutlookMatters Addin")]
[assembly: AssemblyDescription("An Outlook-Mattermost Bridge")]
[assembly: AssemblyCopyright("Copyright © 2016 by the outlook-matters developers")]
[assembly: AssemblyTrademark("This app... | using System.Reflection;
[assembly: AssemblyCompany("outlook-matters project")]
[assembly: AssemblyProduct("OutlookMatters Addin")]
[assembly: AssemblyDescription("An Outlook-Mattermost Bridge")]
[assembly: AssemblyCopyright("Copyright © 2016 by the outlook-matters developers")]
[assembly: AssemblyTrademark("This app... | mit | C# |
d237241a931273584d8b728d1ba5e2abb00af94d | fix product filter script rendering | Kentico/cloud-sample-app-net,Kentico/cloud-sample-app-net,Kentico/Deliver-Dancing-Goat-.NET-MVC,Kentico/Deliver-Dancing-Goat-.NET-MVC,Kentico/cloud-sample-app-net | DancingGoat/Views/Coffees/Index.cshtml | DancingGoat/Views/Coffees/Index.cshtml | @model DancingGoat.Models.CoffeesViewModel
@{
Layout = "~/Views/Shared/_StoreLayout.cshtml";
ViewBag.Title = Localizer["Coffees"];
}
<div class="product-page row">
<div class="flex">
<aside class="col-md-4 col-lg-3 product-filter">
@using (Html.BeginForm("Filter", "Coffees"))
... | @model DancingGoat.Models.CoffeesViewModel
@{
Layout = "~/Views/Shared/_StoreLayout.cshtml";
ViewBag.Title = Localizer["Coffees"];
}
<div class="product-page row">
<div class="flex">
<aside class="col-md-4 col-lg-3 product-filter">
@using (Html.BeginForm("Filter", "Coffees"))
... | mit | C# |
c02c41dced73796bf9938c28df0d9aaad4368d19 | Add a HTML title to error view | Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training | src/AtomicChessPuzzles/Views/Shared/Error.cshtml | src/AtomicChessPuzzles/Views/Shared/Error.cshtml | @model AtomicChessPuzzles.HttpErrors.HttpError
@section Title{@Model.StatusCode @Model.StatusText}
<h1>@Model.StatusCode - @Model.StatusText</h1>
<p>@Model.Description</p> | @model AtomicChessPuzzles.HttpErrors.HttpError
<h1>@Model.StatusCode - @Model.StatusText</h1>
<p>@Model.Description</p> | agpl-3.0 | C# |
4f578b0082055423f7237d1aeacf9a5f9bd3d443 | Update Utility.cs | DarkGamer67/ChessWarrior | Assets/Scripts/Utility.cs | Assets/Scripts/Utility.cs | using System;
using UnityEngine;
/*
*
* Copyright 2016 Utku Pazarci
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requi... | using System;
using UnityEngine;
public static class Utility
{
public static T[] ShuffleArray<T>(T[] arrayToShuffle, int seed)
{
System.Random random = new System.Random(seed);
for(int i = 0; i < arrayToShuffle.Length - 1; i++)
{
int randomNumber = random.Next(i, arrayToShu... | apache-2.0 | C# |
83a334fd249ef0a6bbfa3480223a7605d3ccef64 | Add ColumnInfo.Write() method | kiootic/dnlib,yck1509/dnlib,picrap/dnlib,ZixiangBoy/dnlib,Arthur2e5/dnlib,jorik041/dnlib,ilkerhalil/dnlib,0xd4d/dnlib,modulexcite/dnlib | src/DotNet/MD/ColumnInfo.cs | src/DotNet/MD/ColumnInfo.cs | using System;
using System.Diagnostics;
using System.IO;
using dot10.IO;
namespace dot10.DotNet.MD {
/// <summary>
/// Info about one column in a MD table
/// </summary>
[DebuggerDisplay("{offset} {size} {name}")]
public sealed class ColumnInfo {
byte offset;
ColumnSize columnSize;
byte size;
string name... | using System;
using System.Diagnostics;
using System.IO;
using dot10.IO;
namespace dot10.DotNet.MD {
/// <summary>
/// Info about one column in a MD table
/// </summary>
[DebuggerDisplay("{offset} {size} {name}")]
public sealed class ColumnInfo {
byte offset;
ColumnSize columnSize;
byte size;
string name... | mit | C# |
899be9dfc87592aeb311021d71ae4b76f007328f | Add method overload to Schema.Deserialize() | Ackara/Mockaroo.NET | src/Mockaroo.Core/Schema.cs | src/Mockaroo.Core/Schema.cs | using Gigobyte.Mockaroo.Fields;
using Gigobyte.Mockaroo.Serialization;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
namespace Gigobyte.Mockaroo
{
[JsonArray]
public class Schema : List<IField>, ISerializable
{
#region Static Members
public static... | using Gigobyte.Mockaroo.Fields;
using Gigobyte.Mockaroo.Serialization;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
namespace Gigobyte.Mockaroo
{
[JsonArray]
public class Schema : List<IField>, ISerializable
{
#region Static Members
public static... | mit | C# |
e3c3a2ef6be8a2e4ac1eede62db5b86e7fe615cb | build bug fix | kirillkostrov/andrule | android/Andrule/Andrule/MainActivity.cs | android/Andrule/Andrule/MainActivity.cs | using System;
using Android.App;
using Android.Content;
using Android.Widget;
using Android.OS;
using Andrule.Views;
namespace Andrule
{
[Activity(Label = "Andrule", MainLauncher = true, ScreenOrientation = Android.Content.PM.ScreenOrientation.Landscape)]
public class MainActivity : TabActivity
{
... | using System;
using Android.App;
using Android.Content;
using Android.Widget;
using Android.OS;
using Andrule.Views;
namespace Andrule
{
[Activity(Label = "Andrule", MainLauncher = true, ScreenOrientation = Android.Content.PM.ScreenOrientation.Landscape)]
public class MainActivity : TabActivity
{
... | apache-2.0 | C# |
a147a374a10f01ea21e26b9768703fbff8ff3edc | Add comment for SpaFallbackMiddleware | bradyholt/aspnet-core-react-template,bradyholt/aspnet-core-react-template,bradyholt/aspnet-core-react-template,bradyholt/aspnet-core-react-template,bradyholt/aspnet-core-react-template | api/Middleware/SpaFallbackMiddleware.cs | api/Middleware/SpaFallbackMiddleware.cs | using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
namespace aspnetCoreReactTemplate
{
/*
Middleware that will rewrite (not redirect!) nested SPA page requests to the SPA root path.
For SPA apps that are using clien... | using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
namespace aspnetCoreReactTemplate
{
public class SpaFallbackMiddleware
{
private readonly RequestDelegate _next;
private readonly ILogger _logger;
priva... | mit | C# |
2607d0951a63b88d543c38201e223b26f3d1025e | remove redundant param | adamralph/xbehave.net,xbehave/xbehave.net | src/Xbehave.Execution/ScenarioOutlineTestCase.cs | src/Xbehave.Execution/ScenarioOutlineTestCase.cs | namespace Xbehave.Execution
{
using System;
using System.ComponentModel;
using System.Threading;
using System.Threading.Tasks;
using Xunit.Abstractions;
using Xunit.Sdk;
public class ScenarioOutlineTestCase : XunitTestCase
{
public ScenarioOutlineTestCase(
... | namespace Xbehave.Execution
{
using System;
using System.ComponentModel;
using System.Threading;
using System.Threading.Tasks;
using Xunit.Abstractions;
using Xunit.Sdk;
public class ScenarioOutlineTestCase : XunitTestCase
{
public ScenarioOutlineTestCase(
... | mit | C# |
ad8417087abddeaf44f947a733fa2f7edb3af271 | Add new repo (fixed) and re-apply ExampleSpawner changes | erebuswolf/LockstepFramework,yanyiyun/LockstepFramework,SnpM/Lockstep-Framework | Example/ExampleSpawner.cs | Example/ExampleSpawner.cs | using UnityEngine;
using System.Collections;
namespace Lockstep.Example
{
public class ExampleSpawner : BehaviourHelper
{
public override ushort ListenInput {
get {
return InputCodeManager.GetCodeID("Spawn");
}
}
/*
* Command com = new Command (InputCodeManager.GetCodeID ("Spawn"));
... | using UnityEngine;
using System.Collections;
namespace Lockstep.Example
{
public class ExampleSpawner : BehaviourHelper
{
public override ushort ListenInput {
get {
return InputCodeManager.GetCodeID("Spawn");
}
}
/*
* Command com = new Command (InputCodeManager.GetCodeID ("Spawn"));
... | mit | C# |
078aa0a8fe90bfcab69bcf916edc3b14874e1ce0 | Modify case handling of entry types | githubpermutation/Flirper | Flirper/ImageListEntry.cs | Flirper/ImageListEntry.cs | using System;
using System.IO;
namespace Flirper
{
public class ImageListEntry
{
public string uri;
public string title;
public string author;
public string extraInfo;
public ImageListEntry (string uri, string title, string author, string extraInfo)
{
... | using System;
using System.IO;
namespace Flirper
{
public class ImageListEntry
{
public string uri;
public string title;
public string author;
public string extraInfo;
public ImageListEntry (string uri, string title, string author, string extraInfo)
{
... | mit | C# |
f141e98a4ef02eb3ce41c06b53180e541257a01e | implement unit tests for block parsing | instilledbee/PSXCardReader.NET | PSXCardPOC/Program.cs | PSXCardPOC/Program.cs | using PSXMMCLibrary;
using System;
using System.IO;
using System.Text;
namespace PSXCardPOC
{
class Program
{
static void Main(string[] args)
{
MemoryCard mc = new MemoryCard("ctr.mcr");
Encoding shiftJisEncoding = Encoding.GetEncoding(932);
byte[] mBlock =... | using PSXMMCLibrary;
using System;
using System.IO;
using System.Text;
namespace PSXCardPOC
{
class Program
{
static void Main(string[] args)
{
MemoryCard mc = new MemoryCard("ctr.mcr");
Encoding shiftJisEncoding = Encoding.GetEncoding(932);
byte[] mBlock =... | mit | C# |
c373ca920e137ea196f437f717d17cbeb9a31f08 | switch GetGrantedScopes to call Scope.TryParse for now | Brightspace/D2L.Security.OAuth2 | src/D2L.Security.OAuth2.WebApi/Extensions/System.Security.Claims.ClaimsPrincipal.Extensions.cs | src/D2L.Security.OAuth2.WebApi/Extensions/System.Security.Claims.ClaimsPrincipal.Extensions.cs | using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using D2L.Security.OAuth2.Scopes;
namespace D2L.Security.OAuth2 {
internal static partial class WebApiExtensionMethods {
internal static IEnumerable<Scope> GetGrantedScopes( this ClaimsPrincipal principal ) {
IEnumerabl... | using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using D2L.Security.OAuth2.Scopes;
namespace D2L.Security.OAuth2 {
internal static partial class WebApiExtensionMethods {
internal static IEnumerable<Scope> GetGrantedScopes( this ClaimsPrincipal principal ) {
IEnumerabl... | apache-2.0 | C# |
0ba1eef298e70d4ff7b18c6c78e656f345d919ae | bump version | Dalet/140-speedrun-timer,Dalet/140-speedrun-timer,Dalet/140-speedrun-timer | SharedAssemblyInfo.cs | SharedAssemblyInfo.cs | using System.Reflection;
[assembly: AssemblyVersion("0.6.1.5")]
[assembly: AssemblyFileVersion("0.6.1.5")]
| using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyVersion("0.6.1.4")]
[assembly: AssemblyFileVersion("0.6.1.4")]
| unlicense | C# |
cb9300263ce4c3f39595b92a5abbcde418f239f7 | Add array test | DotNetCross/Memory.Unsafe | src/DotNetCross.Memory.Unsafe.Tests/Unsafe.AsRefAtByteOffset.Test.cs | src/DotNetCross.Memory.Unsafe.Tests/Unsafe.AsRefAtByteOffset.Test.cs | using Xunit;
namespace DotNetCross.Memory.Tests
{
public class Unsafe_AsRefAtByteOffset_Test
{
public class ObjectValue
{
public int Value = 42;
}
[Fact]
public static unsafe void AsRefAtByteOffset_Object()
{
var obj = new ObjectValue();
... | using Xunit;
namespace DotNetCross.Memory.Tests
{
public class Unsafe_AsRefAtByteOffset_Test
{
public class ObjectValue
{
public int Value = 42;
}
[Fact]
public static unsafe void AsRefAtByteOffset()
{
var obj = new ObjectValue();
... | mit | C# |
6f1df96d23c9e2489972ffd48914f8a00f56bff1 | Update CommonAssemblyInfo.cs | atata-framework/atata-sample-app-tests | src/CommonAssemblyInfo.cs | src/CommonAssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Yevgeniy Shunevych")]
[assembly: AssemblyProduct("Atata Framework")]
[assembly: AssemblyCopyright("© Yevgeniy Shunevych 2018")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("1... | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Yevgeniy Shunevych")]
[assembly: AssemblyProduct("Atata Framework")]
[assembly: AssemblyCopyright("Copyright © Yevgeniy Shunevych 2017")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Assembly... | apache-2.0 | C# |
278475fdce4d709076f51c0ffd3891b96c490e7a | Update IncrementalTestsOnCultureSpecificResource.cs | gkhanna79/cli,weshaggard/cli,AbhitejJohn/cli,weshaggard/cli,marono/cli,schellap/cli,dasMulli/cli,schellap/cli,borgdylan/dotnet-cli,blackdwarf/cli,borgdylan/dotnet-cli,gkhanna79/cli,MichaelSimons/cli,jkotas/cli,Faizan2304/cli,Faizan2304/cli,ravimeda/cli,MichaelSimons/cli,johnbeisner/cli,anurse/Cli,schellap/cli,EdwardBla... | test/dotnet-build.Tests/IncrementalTestsOnCultureSpecificResource.cs | test/dotnet-build.Tests/IncrementalTestsOnCultureSpecificResource.cs | // Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.IO;
using Microsoft.DotNet.Tools.Test.Utilities;
using Xunit;
namespace Microsoft.DotNet.Tools.Builder.Tests
{
p... | // Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.IO;
using Microsoft.DotNet.Tools.Test.Utilities;
using Xunit;
namespace Microsoft.DotNet.Tools.Builder.Tests
{
p... | mit | C# |
161edc8788596b9b64f9c08dc0e703b0877a34e5 | add sentiment fields to aggregate dto | Redcley/iot-insider-lab,Redcley/iot-insider-lab | Argonne/Api/ArgonneWebApi/Models/Datastore/CampaignAdAggregateData.cs | Argonne/Api/ArgonneWebApi/Models/Datastore/CampaignAdAggregateData.cs | using System;
namespace ArgonneWebApi.Models.Datastore
{
internal class CampaignAdAggregateData
{
public Guid CampaignId { get; set; }
public string CampaignName { get; set; }
public Guid DisplayedAdId { get; set; }
public string AdName { get; set; }
public int? TotalFa... | using System;
namespace ArgonneWebApi.Models.Datastore
{
internal class CampaignAdAggregateData
{
public Guid CampaignId { get; set; }
public string CampaignName { get; set; }
public Guid DisplayedAdId { get; set; }
public string AdName { get; set; }
public int? TotalFa... | mit | C# |
6068d384a4af225b79833962e5cab9a96167bd5a | fix missing bundle tag helper | btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver | BTCPayServer/_ViewImports.cshtml | BTCPayServer/_ViewImports.cshtml | @using Microsoft.AspNetCore.Identity
@using BTCPayServer
@using BTCPayServer.Views
@using BTCPayServer.Models
@using BTCPayServer.Models.AccountViewModels
@using BTCPayServer.Models.InvoicingModels
@using BTCPayServer.Models.ManageViewModels
@using BTCPayServer.Models.StoreViewModels
@using BTCPayServer.Data
@using Mic... | @using Microsoft.AspNetCore.Identity
@using BTCPayServer
@using BTCPayServer.Views
@using BTCPayServer.Models
@using BTCPayServer.Models.AccountViewModels
@using BTCPayServer.Models.InvoicingModels
@using BTCPayServer.Models.ManageViewModels
@using BTCPayServer.Models.StoreViewModels
@using BTCPayServer.Data
@using Mic... | mit | C# |
301b4a35af57dbd23b4f14300a056a439574a288 | Fix the type of the tilt surface, the previous case was invalide because CreateSimilar didn't have the proper format and data keys set. | GNOME/f-spot,mono/f-spot,NguyenMatthieu/f-spot,nathansamson/F-Spot-Album-Exporter,nathansamson/F-Spot-Album-Exporter,dkoeb/f-spot,mono/f-spot,nathansamson/F-Spot-Album-Exporter,Sanva/f-spot,NguyenMatthieu/f-spot,mans0954/f-spot,Yetangitu/f-spot,mans0954/f-spot,Yetangitu/f-spot,mans0954/f-spot,mono/f-spot,Yetangitu/f-sp... | src/Filters/TiltFilter.cs | src/Filters/TiltFilter.cs | /*
* Filters/TiltFilter.cs
*
* Author(s)
*
* Larry Ewing <lewing@novell.com>
*
* This is free software. See COPYING for details
*
*/
using System;
using System.IO;
using FSpot;
using FSpot.Widgets;
using Cairo;
using Gdk;
#if ENABLE_NUNIT
using NUnit.Framework;
#endif
namespace FSpot.Filters {
public cla... | /*
* Filters/TiltFilter.cs
*
* Author(s)
*
* Larry Ewing <lewing@novell.com>
*
* This is free software. See COPYING for details
*
*/
using System;
using System.IO;
using FSpot;
using FSpot.Widgets;
using Cairo;
using Gdk;
#if ENABLE_NUNIT
using NUnit.Framework;
#endif
namespace FSpot.Filters {
public cla... | mit | C# |
27055b7244055bd3cbc7e08deb0454f67a6ccac1 | change to property | marihachi/MSharp2 | src/MSharp.Core/Config.cs | src/MSharp.Core/Config.cs | using System;
namespace MSharp.Core
{
public class Config
{
public string SessionKeyName { get; set; } = "hmsk";
public Uri Url { get; set; } = new Uri("https://misskey.xyz");
public Uri LoginUrl { get; set; } = new Uri("https://login.misskey.xyz");
public Uri ApiUrl { get; set; } = new Uri("https://himasak... | using System;
namespace MSharp.Core
{
public class Config
{
public string SessionKeyName = "hmsk";
public Uri Url { get; set; } = new Uri("https://misskey.xyz");
public Uri LoginUrl { get; set; } = new Uri("https://login.misskey.xyz");
public Uri ApiUrl { get; set; } = new Uri("https://himasaku.misskey.xyz"... | mit | C# |
9fd747bda46d461b15066e41f37f4a370bd9e838 | Fix DelegatingHandler.Combine | yufeih/Common | src/HttpHelper.cs | src/HttpHelper.cs | namespace System.Net.Http
{
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
static class HttpHelper
{
public static string ValidatePath(string path)
{
if (path == null) throw new ArgumentNullException(nameof(path));
... | namespace System.Net.Http
{
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
static class HttpHelper
{
public static string ValidatePath(string path)
{
if (path == null) throw new ArgumentNullException(nameof(path));
... | mit | C# |
cd6ea4f89ca7148c3e144ce36b3491af3f74431f | Add Bigsby Gates was here | Bigsby/NetCore,Bigsby/NetCore,Bigsby/NetCore | consoleApp/Program.cs | consoleApp/Program.cs | using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World, I was created by my father, Bigsby, in an unidentified evironment!");
Console.WriteLine("Bigsby Gates was here!");
}
... | using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World, I was created by my father, Bigsby, in an unidentified evironment!");
}
}
}
| apache-2.0 | C# |
687135d55f7e64e39e2c4516bbd45a9907b73846 | Make backward compatible. | Eusth/IPA | IllusionInjector/Bootstrapper.cs | IllusionInjector/Bootstrapper.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
namespace IllusionInjector
{
class Bootstrapper : MonoBehaviour
{
public event Action Destroyed = delegate {};
void Start()
{
Destroy(gameObject);
}
voi... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
namespace IllusionInjector
{
class Bootstrapper : MonoBehaviour
{
public event Action Destroyed = delegate {};
void OnDestroy()
{
Destroyed();
}
}
}
| mit | C# |
b6322a1b8f841fe17621de979995eb2113d64655 | change type of Id in WateringValue model | MCeddy/IoT-core | IoT-Core/Models/WateringValue.cs | IoT-Core/Models/WateringValue.cs | using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace IoT_Core.Models
{
public class WateringValue
{
public ObjectId Id { get; set; }
[BsonDateTimeOptions(Kind = DateTimeKind.... | using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace IoT_Core.Models
{
public class WateringValue
{
public int Id { get; set; }
[BsonDateTimeOptions(Kind = DateTimeKind.Local... | mit | C# |
d5e29755ecaa72a339e0b09ca1b644758b5ac926 | Update AssemblyInfo.cs | yaakoviyun/azure-sdk-for-net,jamestao/azure-sdk-for-net,jamestao/azure-sdk-for-net,AsrOneSdk/azure-sdk-for-net,stankovski/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,shahabhijeet/azure-sdk-for-net,yugangw-msft/azure-sdk-for-net,markcowl/azure-sdk-for-net,shahabhijeet/azure-sdk-for-net,ayeletshpigelman/azure-sdk-fo... | src/SDKs/CognitiveServices/dataPlane/Language/SpellCheck/BingSpellCheck/Properties/AssemblyInfo.cs | src/SDKs/CognitiveServices/dataPlane/Language/SpellCheck/BingSpellCheck/Properties/AssemblyInfo.cs | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System.Reflection;
using System.Resources;
[assembly: AssemblyTitle("Microsoft Azure Cognitive Services SpellCheck Client Library")]
[assembly: AssemblyDes... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System.Reflection;
using System.Resources;
[assembly: AssemblyTitle("Microsoft Azure Cognitive Services SpellCheck Client Library")]
[assembly: AssemblyDes... | mit | C# |
97bcc683aabb8c376c29bcd70b5e813fdcbedb7d | fix typo | frispgames/frisp-ads-unity-asset,frispgames/frisp-ads-unity-asset,frispgames/frisp-ads-unity-asset | Assets/Extensions/FrispAds/FrispAd.cs | Assets/Extensions/FrispAds/FrispAd.cs | using UnityEngine;
using System.Collections;
namespace FrispAds {
using AdUnit = AdUnits.AdUnit;
using Admob = AdUnits.Admob;
using AppleAd = AdUnits.AppleAd;
using FakeAdUnit = AdUnits.FakeAdUnit;
public class FrispAd : MonoBehaviour {
private static AdUnit iAdBanner = null;
private static AdUnit adMobBann... | using UnityEngine;
using System.Collections;
namespace FrispAds {
using AdUnit = FrispAds.AdUnits.AdUnit;
using Admob = FrispAds.AdUnits.Admob;
using AppleAd = FrispAds.AdUnits.AppleAd;
using FakeAdUnit = FrispAds.AdUnits.FakeAdUnit;
public class FrispAd : MonoBehaviour {
private static AdUnit iAdBanner = nul... | mit | C# |
6a0ae855d0cba1fd9249b0c9fe04d2dcec9d0758 | Update Facede method | vivet/GoogleApi | GoogleApi/GoogleSearch.cs | GoogleApi/GoogleSearch.cs | using GoogleApi.Entities.Search;
using GoogleApi.Entities.Search.Image.Request;
using GoogleApi.Entities.Search.Video.Request;
using GoogleApi.Entities.Search.Video.Response;
using GoogleApi.Entities.Search.Web.Request;
namespace GoogleApi
{
/// <summary>
/// The JSON/Atom Custom Search API lets you develop w... | using GoogleApi.Entities.Search;
using GoogleApi.Entities.Search.Image.Request;
using GoogleApi.Entities.Search.Web.Request;
namespace GoogleApi
{
/// <summary>
/// The JSON/Atom Custom Search API lets you develop websites and applications to retrieve and display search results from Google Custom Search progr... | mit | C# |
8c9e06664a6f38de6c34bb62bdb8c9a09ca7de26 | Return 400 instead of 500 if no login/password | joinrpg/joinrpg-net,leotsarev/joinrpg-net,kirillkos/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net,kirillkos/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net | Joinrpg/App_Start/ApiSignInProvider.cs | Joinrpg/App_Start/ApiSignInProvider.cs | using System.Threading.Tasks;
using JoinRpg.Web.Helpers;
using Microsoft.Owin.Security.OAuth;
namespace JoinRpg.Web
{
internal class ApiSignInProvider : OAuthAuthorizationServerProvider
{
private ApplicationUserManager Manager { get; }
public ApiSignInProvider(ApplicationUserManager manager)
{
... | using System.Data.Entity;
using System.Threading.Tasks;
using JoinRpg.Web.Helpers;
using Microsoft.Owin.Security.OAuth;
namespace JoinRpg.Web
{
internal class ApiSignInProvider : OAuthAuthorizationServerProvider
{
private ApplicationUserManager Manager { get; }
public ApiSignInProvider(ApplicationUserMan... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.