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 |
|---|---|---|---|---|---|---|---|---|
a358a30583d61c8f75b66f21106145efb3af068f | Stop mouse cursor disappearing when input is restored with Esc button | CaitSith2/ktanemod-twitchplays,ashbash1987/ktanemod-twitchplays | Assets/Scripts/Helpers/InputInterceptor.cs | Assets/Scripts/Helpers/InputInterceptor.cs | using System;
using UnityEngine;
public static class InputInterceptor
{
static InputInterceptor()
{
Type abstractControlsType = ReflectionHelper.FindType("AbstractControls");
_inputSystems = Resources.FindObjectsOfTypeAll(abstractControlsType);
}
public static void EnableInput()
{... | using System;
using UnityEngine;
public static class InputInterceptor
{
static InputInterceptor()
{
Type abstractControlsType = ReflectionHelper.FindType("AbstractControls");
_inputSystems = Resources.FindObjectsOfTypeAll(abstractControlsType);
}
public static void EnableInput()
{... | mit | C# |
9310226fd30e52c50c263a28b5ce291cf371536c | Fix BuildPipeline.BuildPlayer path issue | GoCarrot/teak-unity,GoCarrot/teak-unity,GoCarrot/teak-unity,GoCarrot/teak-unity,GoCarrot/teak-unity | Assets/Teak/Editor/TeakPostProcessBuild.cs | Assets/Teak/Editor/TeakPostProcessBuild.cs | #region License
/* Teak -- Copyright (C) 2016 GoCarrot 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 a... | #region License
/* Teak -- Copyright (C) 2016 GoCarrot 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 a... | apache-2.0 | C# |
96be7f370dd3a83ac9cad8aa62858c187e81dbb9 | Set interval of CPRDirectPersonConverter to (BatchSize) seconds | OS2CPRbroker/cprbroker,magenta-aps/cprbroker,OS2CPRbroker/cprbroker,magenta-aps/cprbroker,magenta-aps/cprbroker | PART/Source/EventBroker/EventBroker/Notifications/CPRDirectPersonConverter.cs | PART/Source/EventBroker/EventBroker/Notifications/CPRDirectPersonConverter.cs | /* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (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.mozilla.org/M... | /* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (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.mozilla.org/M... | mpl-2.0 | C# |
957ac3742a3b571098e85ab32e4e84a57c6b0c1c | Add method for rounding decimals. | mattgwagner/CertiPay.Payroll.Common | CertiPay.Payroll.Common/ExtensionMethods.cs | CertiPay.Payroll.Common/ExtensionMethods.cs | using System;
using System.ComponentModel;
using System.Reflection;
namespace CertiPay.Payroll.Common
{
public static class ExtensionMethods
{
/// <summary>
/// Round the decimal to the given number of decimal places using the given method of rounding.
/// By default, this is 2 decimal... | using System;
using System.ComponentModel;
using System.Reflection;
namespace CertiPay.Payroll.Common
{
public static class ExtensionMethods
{
/// <summary>
/// Returns the display name from the description attribute on the enumeration, if available.
/// Otherwise returns the ToString(... | mit | C# |
d290cd08a8e97cc6eb7ae3296cf3b26c57e8bef6 | Upgrade version to 0.88.0 and add AssemblyInformationalVersion attribute ( https://docs.microsoft.com/en-us/nuget/create-packages/prerelease-packages ) | igitur/ClosedXML,JavierJJJ/ClosedXML,ClosedXML/ClosedXML,b0bi79/ClosedXML,jongleur1983/ClosedXML | ClosedXML/Properties/AssemblyVersionInfo.cs | ClosedXML/Properties/AssemblyVersionInfo.cs | using System.Reflection;
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
[assembly: AssemblyVersion("0.88.0.0")]
[assembly: AssemblyFileVersion("0.88.0.0")]
[assembly: AssemblyInformationalVersion("0.8... | using System.Reflection;
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
[assembly: AssemblyVersion("0.80.0.0")]
[assembly: AssemblyFileVersion("0.80.0.0")]
| mit | C# |
50a505e29bb6c44935bcc9210704182d672497b9 | make sure I'm pushing to master | JediMindtrick/AngularTheBasics-Demo,JediMindtrick/AngularTheBasics-Demo | DemoAngularJS/Controllers/HomeController.cs | DemoAngularJS/Controllers/HomeController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace DemoAngularJS.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
//comment to make sure
Response.Redirect("SPA/LOBApp... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace DemoAngularJS.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
Response.Redirect("SPA/LOBApp/lob.html", true);
retu... | mit | C# |
b9f5c06b11321fd7bab3d1f7982afacf3d5e5849 | use "almost" virtual time manager for real MIDI outputs. | atsushieno/managed-midi | Commons.Music.Midi.Tests/MidiPlayerTest.cs | Commons.Music.Midi.Tests/MidiPlayerTest.cs | using System;
using System.Reflection;
using System.Threading;
using NUnit.Framework;
namespace Commons.Music.Midi.Tests
{
[TestFixture]
public class MidiPlayerTest
{
[Test]
public void PlaySimple ()
{
var stream = GetType ().Assembly.GetManifestResourceStream ("Commons.Music.Midi.Tests.Resources.testmidi... | using System;
using System.Reflection;
using NUnit.Framework;
namespace Commons.Music.Midi.Tests
{
[TestFixture]
public class MidiPlayerTest
{
[Test]
public void PlaySimple ()
{
var stream = GetType ().Assembly.GetManifestResourceStream ("Commons.Music.Midi.Tests.Resources.testmidi.mid");
var vt = new ... | mit | C# |
e4297ffeaded24ea61f8fd188e7fb92215d70674 | Hide HUD in a better way | peppy/osu,UselessToucan/osu,2yangk23/osu,ppy/osu,smoogipoo/osu,EVAST9919/osu,NeoAdonis/osu,2yangk23/osu,UselessToucan/osu,NeoAdonis/osu,ppy/osu,johnneijzen/osu,EVAST9919/osu,smoogipoo/osu,johnneijzen/osu,peppy/osu,peppy/osu-new,ppy/osu,smoogipoo/osu,smoogipooo/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu | osu.Game/Rulesets/Mods/ModCinema.cs | osu.Game/Rulesets/Mods/ModCinema.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.UI;
using osu.Game.Screens.Play;
namespace osu.Ga... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.UI;
using osu.Game.Screens.Play;
namespace osu.Ga... | mit | C# |
cfe44c640de8f732fd9a7a0573e42e9f2036d266 | Change field name to "_logDir" | Marc3842h/Titan,Marc3842h/Titan,Marc3842h/Titan | Titan/Logging/LogCreator.cs | Titan/Logging/LogCreator.cs | using System;
using System.Diagnostics;
using System.IO;
using System.Threading;
using Serilog;
using Serilog.Core;
namespace Titan.Logging
{
public class LogCreator
{
private static DirectoryInfo _logDir = new DirectoryInfo(Environment.CurrentDirectory +
... | using System;
using System.Diagnostics;
using System.IO;
using System.Threading;
using Serilog;
using Serilog.Core;
namespace Titan.Logging
{
public class LogCreator
{
public static DirectoryInfo LogDirectory = new DirectoryInfo(Environment.CurrentDirectory +
... | mit | C# |
339e6f3cd34b96d68be91f73a1ff40cdbf27a48e | Make DocumentTypeInfo cacheable | roman-yagodin/R7.University,roman-yagodin/R7.University,roman-yagodin/R7.University | R7.University/entities/DocumentTypeInfo.cs | R7.University/entities/DocumentTypeInfo.cs | //
// DocumentTypeInfo.cs
//
// Author:
// Roman M. Yagodin <roman.yagodin@gmail.com>
//
// Copyright (c) 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 ... | //
// DocumentTypeInfo.cs
//
// Author:
// Roman M. Yagodin <roman.yagodin@gmail.com>
//
// Copyright (c) 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 ... | agpl-3.0 | C# |
5a6a3b63d9cb1164b63156b8b40a37cc4e345257 | Increase version # | rpaquay/mtsuite | src/shared/VersionNumber.cs | src/shared/VersionNumber.cs | // Copyright 2015 Renaud Paquay 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... | // Copyright 2015 Renaud Paquay 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... | apache-2.0 | C# |
2479494d5a4243d1d0bbbf638d215800637696a4 | Allow using F11 to toggle fullscreen | smoogipooo/osu-framework,ZLima12/osu-framework,ZLima12/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework | osu.Framework/Input/FrameworkActionContainer.cs | osu.Framework/Input/FrameworkActionContainer.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.Input.Bindings;
namespace osu.Framework.Input
{
internal class FrameworkActionContainer : KeyBindingContainer<... | // 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.Input.Bindings;
namespace osu.Framework.Input
{
internal class FrameworkActionContainer : KeyBindingContainer<... | mit | C# |
4045a1584681b646ffe05ee10123921eeec4aa7b | Update IUrlModifier to work on any thread by not using HttpContext.Current in the Modify method. | damiensawyer/cassette,BluewireTechnologies/cassette,BluewireTechnologies/cassette,damiensawyer/cassette,damiensawyer/cassette,honestegg/cassette,andrewdavey/cassette,andrewdavey/cassette,honestegg/cassette,honestegg/cassette,andrewdavey/cassette | examples/Precompiled/CdnUrlModifier.cs | examples/Precompiled/CdnUrlModifier.cs | using System;
using System.Web;
using Cassette;
namespace Precompiled
{
/// <summary>
/// An example implementation of Cassette.IUrlModifier.
/// </summary>
public class CdnUrlModifier : IUrlModifier
{
readonly string prefix;
public CdnUrlModifier(HttpContextBase httpC... | using System;
using System.Web;
using Cassette;
namespace Precompiled
{
/// <summary>
/// An example implementation of Cassette.IUrlModifier.
///
/// </summary>
public class CdnUrlModifier : IUrlModifier
{
public string Modify(string url)
{
// The url ... | mit | C# |
053169f43318bbd17f8932b5f364ed86a8b05f0f | fix build broke | arsouza/Aritter,arsouza/Aritter,aritters/Ritter | src/Aritter.API/Core/Attributes/AuthorizationAttribute.cs | src/Aritter.API/Core/Attributes/AuthorizationAttribute.cs | using Aritter.API.Core.Claims;
using Aritter.Infra.CrossCutting.Security;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Security.Claims;
using System.Threading;
using System.Web;
using System.Web.Http;
using System.Web.Http.Controllers;
names... | using Aritter.API.Core.Providers;
using Aritter.Infra.CrossCutting.Security;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Security.Claims;
using System.Threading;
using System.Web;
using System.Web.Http;
using System.Web.Http.Controllers;
nam... | mit | C# |
a39bf830f915d5ada96cc50ab5538df78a63fb4a | add more overloads to storage api (#3) | AntShares/AntShares.SmartContract.Framework | src/AntShares.SmartContract.Framework/Services/AntShares/Storage.cs | src/AntShares.SmartContract.Framework/Services/AntShares/Storage.cs | namespace AntShares.SmartContract.Framework.Services.AntShares
{
public class Storage
{
[Syscall("AntShares.Storage.Get")]
public extern byte[] Get(StorageContext context, byte[] key);
[Syscall("AntShares.Storage.Get")]
public extern byte[] Get(StorageContext context, s... | namespace AntShares.SmartContract.Framework.Services.AntShares
{
public class Storage
{
[Syscall("AntShares.Storage.Get")]
public extern byte[] Get(StorageContext context, byte[] key);
[Syscall("AntShares.Storage.Put")]
public extern void Put(StorageContext context, byte[] key,... | mit | C# |
01d01084a8a07f1de3277cf9d5e7f930d2e95ab1 | Add HowMuch.ToString() | anjdreas/UnitsNet,anjdreas/UnitsNet | UnitsNet.Tests/CustomQuantities/HowMuch.cs | UnitsNet.Tests/CustomQuantities/HowMuch.cs | using System;
namespace UnitsNet.Tests.CustomQuantities
{
/// <inheritdoc cref="IQuantity"/>
/// <summary>
/// Example of a custom/third-party quantity implementation, for plugging in quantities and units at runtime.
/// </summary>
public struct HowMuch : IQuantity
{
public HowMuch(doub... | using System;
namespace UnitsNet.Tests.CustomQuantities
{
/// <inheritdoc cref="IQuantity"/>
/// <summary>
/// Example of a custom/third-party quantity implementation, for plugging in quantities and units at runtime.
/// </summary>
public struct HowMuch : IQuantity
{
public HowMuch(doub... | mit | C# |
40d3451cd0ef02161080945b9c5b164ab39a4ace | remove redundant lock in AzureGatewayListProvider | yevhen/orleans,dotnet/orleans,ibondy/orleans,ticup/orleans,jdom/orleans,dVakulen/orleans,jokin/orleans,gabikliot/orleans,bstauff/orleans,dVakulen/orleans,ReubenBond/orleans,dotnet/orleans,centur/orleans,dVakulen/orleans,Joshua-Ferguson/orleans,pherbel/orleans,pherbel/orleans,centur/orleans,jokin/orleans,jdom/orleans,ve... | src/OrleansAzureUtils/Storage/AzureGatewayListProvider.cs | src/OrleansAzureUtils/Storage/AzureGatewayListProvider.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Orleans.Messaging;
using Orleans.Runtime;
using Orleans.Runtime.Configuration;
namespace Orleans.AzureUtils
{
internal class AzureGatewayListProvider : IGatewayListProvider
{
private OrleansSiloInsta... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Orleans.Messaging;
using Orleans.Runtime;
using Orleans.Runtime.Configuration;
namespace Orleans.AzureUtils
{
internal class AzureGatewayListProvider : IGatewayListProvider
{
private OrleansSiloInsta... | mit | C# |
989354385c9297e2cbcaacb969ea76c4ca1190bc | Fix an issue with error handling when parsing JSON | openchain/openchain | src/Openchain.Validation.PermissionBased/DynamicPermissionLayout.cs | src/Openchain.Validation.PermissionBased/DynamicPermissionLayout.cs | // Copyright 2015 Coinprism, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agree... | // Copyright 2015 Coinprism, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agree... | apache-2.0 | C# |
acb348d810599afc15d5873f999fdfc2161368bb | Fix for MultiSourceAssemblyFinder. | AlexGeller/aspnetboilerplate,zquans/aspnetboilerplate,SXTSOFT/aspnetboilerplate,lemestrez/aspnetboilerplate,jaq316/aspnetboilerplate,yuzukwok/aspnetboilerplate,4nonym0us/aspnetboilerplate,ryancyq/aspnetboilerplate,andmattia/aspnetboilerplate,oceanho/aspnetboilerplate,ZhaoRd/aspnetboilerplate,4nonym0us/aspnetboilerplate... | src/Abp/Reflection/MultiSourceAssemblyFinder.cs | src/Abp/Reflection/MultiSourceAssemblyFinder.cs | using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Abp.Collections.Extensions;
namespace Abp.Reflection
{
public class MultiSourceAssemblyFinder : IAssemblyFinder
{
public List<IAssemblyFinder> Sources { get; }
public MultiSourceAssemblyFinder(params IAssemblyF... | using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace Abp.Reflection
{
public class MultiSourceAssemblyFinder : IAssemblyFinder
{
public List<IAssemblyFinder> Sources { get; private set; }
public MultiSourceAssemblyFinder(params IAssemblyFinder[] sources)
... | mit | C# |
ec0596f1c95340c45122d4d9de9621db1278b0f7 | Increase version code | akorb/SteamShutdown | SteamShutdown/Properties/AssemblyInfo.cs | SteamShutdown/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("SteamShutdown")]
[assembly: Assemb... | 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("SteamShutdown")]
[assembly: Assemb... | mit | C# |
c5655c65acea4c46a63088a921664f0f90ce4fbb | Increment version code | akorb/SteamShutdown | SteamShutdown/Properties/AssemblyInfo.cs | SteamShutdown/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("SteamShutdown")]
[assembly: Assemb... | 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("SteamShutdown")]
[assembly: Assemb... | mit | C# |
3886f4a0bdf96612a80ba590f098ed8c50dc8171 | Fix code format | setchi/NotesEditor,setchi/NoteEditor | Assets/Scripts/NotesEditor/NoteObject.cs | Assets/Scripts/NotesEditor/NoteObject.cs | using UnityEngine;
public class NoteObject : MonoBehaviour
{
public NotePosition notePosition;
public int noteType;
NotesEditorModel model;
RectTransform rectTransform;
void Awake()
{
model = NotesEditorModel.Instance;
rectTransform = GetComponent<RectTransform>();
rec... | using UnityEngine;
public class NoteObject : MonoBehaviour {
public NotePosition notePosition;
public int noteType;
NotesEditorModel model;
RectTransform rectTransform;
void Awake () {
model = NotesEditorModel.Instance;
rectTransform = GetComponent<RectTransform>();
rectTrans... | mit | C# |
e2f46fcff8a528ef2e24c360bccda109b89239a6 | Fix change scene sync | bunashibu/kikan | Assets/Scripts/Singleton/SceneChanger.cs | Assets/Scripts/Singleton/SceneChanger.cs | using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;
using System.Collections;
namespace Bunashibu.Kikan {
public class SceneChanger : SingletonMonoBehaviour<SceneChanger> {
void Awake() {
_alphaMask = new Color(0, 0, 0, 0.075f);
}
void Start() {
_shouldFadeIn = true;... | using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;
using System.Collections;
namespace Bunashibu.Kikan {
public class SceneChanger : SingletonMonoBehaviour<SceneChanger> {
void Awake() {
_alphaMask = new Color(0, 0, 0, 0.075f);
}
void Start() {
_shouldFadeIn = true;... | mit | C# |
7623928c1ec0a8e4c7c3ee080f8ea0a9161a8210 | Update Fun.cs | divega/UdfCodeFirstSample | UdfCodeFirstSample/Fun.cs | UdfCodeFirstSample/Fun.cs | using System;
using System.Data.Entity;
namespace UdfCodeFirstSample
{
public static class Fun
{
[DbFunction("CodeFirstDatabaseSchema", "GetAge")]
public static int? GetAge(DateTime? birthDate)
{
// this in-memory implementation will not be invoked when working on LINQ to En... | using System;
using System.Data.Entity;
namespace UdfCodeFirstSample
{
public static class Fun
{
[DbFunction("CodeFirstDatabaseSchema", "GetAge")]
public static int? GetAge(DateTime? birthDate)
{
// this in-memory implementation will not be invoked when working on LINQ to En... | apache-2.0 | C# |
8d204b7f98b2f9f23ee85f1a5dc3dfb467282b02 | increase version for a new release | fredatgithub/GitAutoUpdate | GitAutoUpdateGUI/Properties/AssemblyInfo.cs | GitAutoUpdateGUI/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
// Les informations générales relatives à un assembly dépendent de
// l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations
// associées à un assembly.
[assembly: AssemblyTitle("GitAutoUpdateGUI")]
[as... | using System.Reflection;
using System.Runtime.InteropServices;
// Les informations générales relatives à un assembly dépendent de
// l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations
// associées à un assembly.
[assembly: AssemblyTitle("GitAutoUpdateGUI")]
[as... | mit | C# |
e358526c49dcaae76377178d65a4093d10cc7739 | Optimize Outcome<T>.Gather(). | chtoucas/Narvalo.NET,chtoucas/Narvalo.NET | src/Narvalo.Fx/Applicative/Outcome.Shadowing.cs | src/Narvalo.Fx/Applicative/Outcome.Shadowing.cs | // Copyright (c) Narvalo.Org. All rights reserved. See LICENSE.txt in the project root for license information.
namespace Narvalo.Applicative
{
using System;
using System.Collections.Generic;
public partial struct Outcome<T>
{
public Outcome<TResult> Gather<TResult>(Outcome<Func<T, TResult>> ... | // Copyright (c) Narvalo.Org. All rights reserved. See LICENSE.txt in the project root for license information.
namespace Narvalo.Applicative
{
using System;
using System.Collections.Generic;
public partial struct Outcome<T>
{
public Outcome<TResult> ReplaceBy<TResult>(TResult other)
... | bsd-2-clause | C# |
4c0b70b445ecf1d49ec58a41bc5a34d33ce6ced4 | refactor base resolver | wangkanai/Detection | src/Detection.Core/src/BaseResolver.cs | src/Detection.Core/src/BaseResolver.cs | // Copyright (c) 2014-2020 Sarin Na Wangkanai, All Rights Reserved.
// The Apache v2. See License.txt in the project root for license information.
using System;
using System.Linq;
using Microsoft.AspNetCore.Http;
namespace Wangkanai.Detection
{
public class BaseResolver : IResolver
{
/// <summary>
... | // Copyright (c) 2014-2020 Sarin Na Wangkanai, All Rights Reserved.
// The Apache v2. See License.txt in the project root for license information.
using System;
using System.Linq;
using Microsoft.AspNetCore.Http;
namespace Wangkanai.Detection
{
public class BaseResolver : IResolver
{
/// <summary>
... | apache-2.0 | C# |
0a009adf33f8f30ee814f312c935f51945a80bee | update action policy to ignore thrown shipping label exceptions | agileharbor/shipStationAccess | src/ShipStationAccess/V2/Misc/ActionPolicies.cs | src/ShipStationAccess/V2/Misc/ActionPolicies.cs | using System;
using System.Net;
using System.Threading.Tasks;
using Netco.ActionPolicyServices;
using Netco.Utils;
using ShipStationAccess.V2.Exceptions;
namespace ShipStationAccess.V2.Misc
{
public static class ActionPolicies
{
public static ActionPolicy Submit
{
get { return _shipStationSumbit... | using System;
using System.Net;
using System.Threading.Tasks;
using Netco.ActionPolicyServices;
using Netco.Utils;
namespace ShipStationAccess.V2.Misc
{
public static class ActionPolicies
{
public static ActionPolicy Submit
{
get { return _shipStationSumbitPolicy; }
}
private static reado... | bsd-3-clause | C# |
ae71d72ab36481771a972b569aaf62798e7118fc | Make EditAndContinueLogEntry fields in to properties | iamjasonp/corefx,vrassouli/corefx,jhendrixMSFT/corefx,vs-team/corefx,Ermiar/corefx,alexperovich/corefx,krk/corefx,janhenke/corefx,shrutigarg/corefx,lydonchandra/corefx,dhoehna/corefx,n1ghtmare/corefx,mokchhya/corefx,comdiv/corefx,SGuyGe/corefx,vrassouli/corefx,ravimeda/corefx,Ermiar/corefx,alphonsekurian/corefx,manu-si... | src/System.Reflection.Metadata/src/System/Reflection/Metadata/Ecma335/EditAndContinueLogEntry.cs | src/System.Reflection.Metadata/src/System/Reflection/Metadata/Ecma335/EditAndContinueLogEntry.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.Metadata.Ecma335
{
public struct EditAndContinueLogEntry : IEquatable<EditAndContinueLogEntry>
{
private readonly EntityHand... | // 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.Metadata.Ecma335
{
public struct EditAndContinueLogEntry : IEquatable<EditAndContinueLogEntry>
{
public readonly EntityHandl... | mit | C# |
7145d9b661c3c6d0ff767bee24556e189ce34c9a | Fix for previous update. | Darker1300/GameJam_May_2017 | src/GameJam/Assets/MenuInputManager.cs | src/GameJam/Assets/MenuInputManager.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
using UnityEngine.UI;
using Controller;
public class MenuInputManager : MonoBehaviour
{
[Header("Ready Status:")]
public Image P1 = null;
public Image P2 = null;
public Image P3 = null;
... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
using UnityEngine.UI;
using Controller;
public class MenuInputManager : MonoBehaviour
{
[Header("Ready Status:")]
public Image P1 = null;
public Image P2 = null;
public Image P3 = null;
... | mit | C# |
7be05293f92a1d1c2f645bc026baeecbfa58e1bc | Refactor in pagination view to use tag helpers | skynode/eShopOnContainers,andrelmp/eShopOnContainers,albertodall/eShopOnContainers,dotnet-architecture/eShopOnContainers,oferns/eShopOnContainers,productinfo/eShopOnContainers,BillWagner/eShopOnContainers,oferns/eShopOnContainers,skynode/eShopOnContainers,albertodall/eShopOnContainers,oferns/eShopOnContainers,dotnet-ar... | src/Web/WebMVC/Views/Catalog/_pagination.cshtml | src/Web/WebMVC/Views/Catalog/_pagination.cshtml | @model Microsoft.eShopOnContainers.WebMVC.ViewModels.Pagination.PaginationInfo
<div class="esh-pager">
<div class="container">
<article class="esh-pager-wrapper row">
<nav>
<a class="esh-pager-item esh-pager-item--navigable @Model.Previous"
id="Previous" ... | @model Microsoft.eShopOnContainers.WebMVC.ViewModels.Pagination.PaginationInfo
<div class="esh-pager">
<div class="container">
<article class="esh-pager-wrapper row">
<nav>
<a class="esh-pager-item esh-pager-item--navigable @Model.Previous"
id="Previous"
... | mit | C# |
1892ba8d0a7ac9106467e703f43519b2a8327bbb | Fix poorly named test file. | mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati,mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati | Duplicati/UnitTest/RepairHandlerTests.cs | Duplicati/UnitTest/RepairHandlerTests.cs | using System.Collections.Generic;
using System.IO;
using System.Linq;
using Duplicati.Library.Main;
using NUnit.Framework;
namespace Duplicati.UnitTest
{
[TestFixture]
public class RepairHandlerTests : BasicSetupHelper
{
public override void SetUp()
{
base.SetUp();
F... | using System.Collections.Generic;
using System.IO;
using System.Linq;
using Duplicati.Library.Main;
using NUnit.Framework;
namespace Duplicati.UnitTest
{
[TestFixture]
public class RepairHandlerTests : BasicSetupHelper
{
public override void SetUp()
{
base.SetUp();
F... | lgpl-2.1 | C# |
eae585b4735ac058596b9723c466e8576149d28f | Use CreateChild to override child creation | wieslawsoltes/Core2D,Core2D/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D | src/Core2D.Avalonia/Presenters/CachedContentPresenter.cs | src/Core2D.Avalonia/Presenters/CachedContentPresenter.cs | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Avalonia;
using Avalonia.Controls;
using Avalonia.Controls.Presenters;
using System;
using System.Collections.Generic;
namespace Core2D.Avalonia.Presenters
... | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Avalonia;
using Avalonia.Controls;
using Avalonia.Controls.Presenters;
using System;
using System.Collections.Generic;
namespace Core2D.Avalonia.Presenters
... | mit | C# |
d4f5f7a16a7bc22356974712119699806ae5ede1 | Add todo about shifting where messages are to be resolved | Glimpse/Glimpse.Prototype,pranavkm/Glimpse.Prototype,pranavkm/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,pranavkm/Glimpse.Prototype,Glimpse/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,mike-kaufman/Glimpse... | src/Glimpse.Web.Common/Framework/MasterRequestRuntime.cs | src/Glimpse.Web.Common/Framework/MasterRequestRuntime.cs | using System;
using System.Collections.Generic;
using Microsoft.Framework.DependencyInjection;
using System.Threading.Tasks;
namespace Glimpse.Web
{
public class MasterRequestRuntime
{
private readonly IDiscoverableCollection<IRequestRuntime> _requestRuntimes;
private readonly IDiscoverableCol... | using System;
using System.Collections.Generic;
using Microsoft.Framework.DependencyInjection;
using System.Threading.Tasks;
namespace Glimpse.Web
{
public class MasterRequestRuntime
{
private readonly IDiscoverableCollection<IRequestRuntime> _requestRuntimes;
private readonly IDiscoverableCol... | mit | C# |
0cf6fcf9c753e2a25bf42f92b700d7e1ce29dbeb | Make InfrastructureAttribute internal | Abc-Arbitrage/Zebus | src/Abc.Zebus/InfrastructureAttribute.cs | src/Abc.Zebus/InfrastructureAttribute.cs | using System;
namespace Abc.Zebus
{
[AttributeUsage(AttributeTargets.Class)]
internal sealed class InfrastructureAttribute : Attribute
{
}
}
| using System;
namespace Abc.Zebus
{
[AttributeUsage(AttributeTargets.Class)]
public sealed class InfrastructureAttribute : Attribute
{
}
}
| mit | C# |
b250f1b55fc0334602ec0930ebbbfbb45da79070 | Use BsonElementAttributes in Counter | Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training,Chess-Variants-Training/Chess-Variants-Training | src/AtomicChessPuzzles/Models/Counter.cs | src/AtomicChessPuzzles/Models/Counter.cs | using MongoDB.Bson.Serialization.Attributes;
namespace AtomicChessPuzzles.Models
{
public class Counter
{
[BsonElement("_id")]
public string ID { get; set; }
[BsonElement("next")]
public int Next { get; set; }
public Counter(string id, int next)
{
... | namespace AtomicChessPuzzles.Models
{
public class Counter
{
public string ID { get; set; }
public int Next { get; set; }
public Counter(string id, int next)
{
ID = id;
Next = next;
}
}
}
| agpl-3.0 | C# |
e95735f29f917e6873153b068b9260cb261063dd | fix unit test mistakes | li-rongcheng/CoreCmd | CoreCmd.XunitTest/AssemblyCommandExecutorTests/DefaultMethodTests.cs | CoreCmd.XunitTest/AssemblyCommandExecutorTests/DefaultMethodTests.cs | using CoreCmd.CommandExecution;
using CoreCmd.XunitTest.TestUtils;
using System;
using System.Collections.Generic;
using System.Text;
using Xunit;
namespace AssemblyCommandExecutorTests
{
public class DefaultMethodTestCommand
{
public void DefaultMethod() { DefaultMethodTests.HitCounter.Hit("1"); }
... | using CoreCmd.CommandExecution;
using CoreCmd.XunitTest.TestUtils;
using System;
using System.Collections.Generic;
using System.Text;
using Xunit;
namespace AssemblyCommandExecutorTests
{
public class DefaultMethodTestCommand
{
public void DefaultMethod() { BasicTests.HitCounter.Hit("1"); }
p... | mit | C# |
7e584885d0b87522fda2f4939e69e7afec770f93 | Put things back in the head bundle | mcintyre321/Noodles,mcintyre321/Noodles | Noodles.AspMvc/Helpers/IncludesHelper.cs | Noodles.AspMvc/Helpers/IncludesHelper.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Noodles.AspMvc.Models.Layout;
namespace Noodles.AspMvc.Helpers
{
public static class IncludesHelper
{
public static void RegisterScripts(this LayoutVm layout)
{
layout.HeadBundle.ScriptInclud... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Noodles.AspMvc.Models.Layout;
namespace Noodles.AspMvc.Helpers
{
public static class IncludesHelper
{
public static void RegisterScripts(this LayoutVm layout)
{
layout.HeadBundle.ScriptInclud... | mit | C# |
155f9caf210d0b3bdc50d8779e2b1eaa7d9d0b51 | Complete Web App creation of comments | csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil | Agiil.Web/Controllers/CommentController.cs | Agiil.Web/Controllers/CommentController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Agiil.Domain.Tickets;
using Agiil.Web.Models;
using CSF.Entities;
namespace Agiil.Web.Controllers
{
public class CommentController : ControllerBase
{
internal const string
CommentSpecKey = "N... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Agiil.Domain.Tickets;
using Agiil.Web.Models;
using CSF.Entities;
namespace Agiil.Web.Controllers
{
public class CommentController : ControllerBase
{
internal const string
CommentSpecKey = "N... | mit | C# |
0da82040d5effe609e4b3ebb71482d66442698ba | Fix unix date conversion | Takoa/SimpleZaifTrader | SimpleZaifTrader/ZaifTradeHistoryData.cs | SimpleZaifTrader/ZaifTradeHistoryData.cs | using CryptoWei;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace SimpleZaifTrader
{
public class ZaifTradeHistoryData : ITradeHistoryData
{
public DateTime Date { get; private set; }
... | using CryptoWei;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace SimpleZaifTrader
{
public class ZaifTradeHistoryData : ITradeHistoryData
{
public DateTime Date { get; private set; }
... | mit | C# |
9958de9672c4d011a0f7ea2a3c53790df6d486e6 | Change version number to auto-increment | alexmaris/simplezipcode | SimpleZipCode/Properties/AssemblyInfo.cs | SimpleZipCode/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("Si... | 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("Si... | mit | C# |
14241651b4404643404de163736996ae97caab5d | fix parsing of S_LOAD_EP_INFO | Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns | TeraPacketParser/Messages/S_LOAD_EP_INFO.cs | TeraPacketParser/Messages/S_LOAD_EP_INFO.cs | using System.Collections.Generic;
namespace TeraPacketParser.Messages
{
public class S_LOAD_EP_INFO : ParsedMessage
{
public Dictionary<uint, uint> Perks { get; }
public S_LOAD_EP_INFO(TeraMessageReader r) : base(r)
{
Perks = new Dictionary<uint, uint>();
var ... | using System.Collections.Generic;
namespace TeraPacketParser.Messages
{
public class S_LOAD_EP_INFO : ParsedMessage
{
public Dictionary<uint, uint> Perks;
public S_LOAD_EP_INFO(TeraMessageReader r) : base(r)
{
var perksCount = r.ReadInt16();
var perksOffset = ... | mit | C# |
13b6560ba74f2624e7be2c4b76f846f9a983e1e6 | Fix again | CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos | source/Cosmos.System2_Plugs/Interop/System.NativeImpl.cs | source/Cosmos.System2_Plugs/Interop/System.NativeImpl.cs | using IL2CPU.API.Attribs;
using System;
using System.IO;
namespace Cosmos.System_Plugs.Interop
{
[Plug("Interop+Sys", IsOptional = true)]
class SysImpl
{
[PlugMethod(Signature = "System_Void__Interop_Sys_GetNonCryptographicallySecureRandomBytes_System_Byte#__System_Int32_")]
public static ... | using IL2CPU.API.Attribs;
using System;
using System.IO;
namespace Cosmos.System_Plugs.Interop
{
[Plug("Interop+Sys", IsOptional = true)]
class SysImpl
{
[PlugMethod(Signature = "System_Void__Interop_Sys_GetNonCryptographicallySecureRandomBytes_System_Byte___System_Int32_")]
public static ... | bsd-3-clause | C# |
61d2984d44bfe0807e2335b3298c67e7c21b7f57 | Update version to 0.1 | SeanKilleen/Sieve.NET | src/app/Sieve.NET.Core/Properties/AssemblyInfo.cs | src/app/Sieve.NET.Core/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("Si... | 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("Si... | mit | C# |
f69e93fcc8dddc793adc12d34822bb29be7b5569 | Fix namespace | Ky7m/DemoCode,Ky7m/DemoCode,Ky7m/DemoCode,Ky7m/DemoCode | CSharpInternals/CSharpInternals.Misc/CreateNewInstance.cs | CSharpInternals/CSharpInternals.Misc/CreateNewInstance.cs | using System;
using System.Runtime.Serialization;
using CSharpInternals.Utils;
using Xunit;
using Xunit.Abstractions;
namespace CSharpInternals.Misc
{
public class CreateNewInstance : BaseTestHelpersClass
{
public CreateNewInstance(ITestOutputHelper output) : base(output) { }
[Fact]
p... | using System;
using System.Runtime.Serialization;
using CSharpInternals.Utils;
using Xunit;
using Xunit.Abstractions;
namespace CSharpInternals.SafeLowLevelApi
{
public class CreateNewInstance : BaseTestHelpersClass
{
public CreateNewInstance(ITestOutputHelper output) : base(output) { }
[Fact... | mit | C# |
2808fdf46b0ac4f4523cec3a933f62d0af81bb8d | Add [ApiController] to XGameApiController | joinrpg/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net,leotsarev/joinrpg-net | JoinRpg.Portal/Controllers/XGameApi/XGameApiController.cs | JoinRpg.Portal/Controllers/XGameApi/XGameApiController.cs | using JoinRpg.Data.Interfaces;
using JoinRpg.Portal.Infrastructure;
using Microsoft.AspNet.Identity;
using Microsoft.AspNetCore.Mvc;
namespace JoinRpg.Web.Controllers.XGameApi
{
[DiscoverProjectFilter]
[ApiController]
public class XGameApiController : ControllerBase
{
public XGameApiController(IProje... | using JoinRpg.Data.Interfaces;
using JoinRpg.Portal.Infrastructure;
using Microsoft.AspNet.Identity;
using Microsoft.AspNetCore.Mvc;
namespace JoinRpg.Web.Controllers.XGameApi
{
[DiscoverProjectFilter]
public class XGameApiController : ControllerBase
{
public XGameApiController(IProjectRepository project... | mit | C# |
b9734c6ca4413eb45d2971783a51dc4c62e26d0d | Remove explicit parameters from the reservation query string | SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments | src/SFA.DAS.Reservations.Api.Types/ReservationsHelper.cs | src/SFA.DAS.Reservations.Api.Types/ReservationsHelper.cs | using System;
using System.Threading.Tasks;
using SFA.DAS.Reservations.Api.Types.Configuration;
namespace SFA.DAS.Reservations.Api.Types
{
public class ReservationHelper : IReservationHelper
{
private readonly ReservationsClientApiConfiguration _config;
public ReservationHelper(ReservationsCl... | using System;
using System.Threading.Tasks;
using SFA.DAS.Reservations.Api.Types.Configuration;
namespace SFA.DAS.Reservations.Api.Types
{
public class ReservationHelper : IReservationHelper
{
private readonly ReservationsClientApiConfiguration _config;
public ReservationHelper(ReservationsCl... | mit | C# |
a77ccff7828023f4f78f99d24f699742e46262b3 | fix - set the correct ContentType for optimized response | nataren/NServiceKit,NServiceKit/NServiceKit,nataren/NServiceKit,NServiceKit/NServiceKit,nataren/NServiceKit,NServiceKit/NServiceKit,timba/NServiceKit,MindTouch/NServiceKit,MindTouch/NServiceKit,NServiceKit/NServiceKit,ZocDoc/ServiceStack,timba/NServiceKit,timba/NServiceKit,ZocDoc/ServiceStack,ZocDoc/ServiceStack,timba/... | src/ServiceStack/ServiceHost/RequestContextExtensions.cs | src/ServiceStack/ServiceHost/RequestContextExtensions.cs | using System;
using ServiceStack.CacheAccess;
using ServiceStack.CacheAccess.Providers;
using ServiceStack.Common;
using ServiceStack.WebHost.Endpoints;
using ServiceStack.Common.Web;
namespace ServiceStack.ServiceHost
{
public static class RequestContextExtensions
{
/// <summary>
/// Returns the optimized resul... | using System;
using ServiceStack.CacheAccess;
using ServiceStack.CacheAccess.Providers;
using ServiceStack.Common;
using ServiceStack.WebHost.Endpoints;
using ServiceStack.Common.Web;
namespace ServiceStack.ServiceHost
{
public static class RequestContextExtensions
{
/// <summary>
/// Returns the optimized resul... | bsd-3-clause | C# |
13684af5d9d0a029afd1c4f5faa1a16ccf9b55a3 | Delete unnecessary suppressions | y-iihoshi/ThScoreFileConverter,y-iihoshi/ThScoreFileConverter | ThScoreFileConverterTests/Models/Th075HighScoreWrapper.cs | ThScoreFileConverterTests/Models/Th075HighScoreWrapper.cs | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using ThScoreFileConverter.Models;
namespace ThScoreFileConverterTests.Models
{
public sealed class Th075HighScoreWrapper
{
private static Type ParentTy... | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using ThScoreFileConverter.Models;
namespace ThScoreFileConverterTests.Models
{
public sealed class Th075HighScoreWrapper
{
private static Type ParentTy... | bsd-2-clause | C# |
cd61ffa46cd391aff3361f9fafaceef5fa2ad348 | Implement sensor tracking | sakapon/Samples-2016,sakapon/Samples-2016 | WinrtSample/SensorConsole/Program.cs | WinrtSample/SensorConsole/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.Devices.Sensors;
namespace SensorConsole
{
class Program
{
static void Main(string[] args)
{
var lightSensor = LightSensor.GetDefault();
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SensorConsole
{
class Program
{
static void Main(string[] args)
{
}
}
}
| mit | C# |
76d27fdef5e49a6eef55aae8013f48f84a21599b | Fix incorrect comment | jbogard/MediatR | src/MediatR/INotificationHandler.cs | src/MediatR/INotificationHandler.cs | using System.Threading;
using System.Threading.Tasks;
namespace MediatR
{
/// <summary>
/// Defines a handler for a notification
/// </summary>
/// <typeparam name="TNotification">The type of notification being handled</typeparam>
public interface INotificationHandler<in TNotification>
wher... | using System.Threading;
using System.Threading.Tasks;
namespace MediatR
{
/// <summary>
/// Defines a handler for a notification
/// </summary>
/// <typeparam name="TNotification">The type of notification being handled</typeparam>
public interface INotificationHandler<in TNotification>
wher... | apache-2.0 | C# |
752157af03e2d04133ebf929fc8d619b46665b04 | Add skipOnEnablement to AccountLinkRequest | stoiveyp/Alexa.NET.Management | Alexa.NET.Management/AccountLinking/AccountLinkRequest.cs | Alexa.NET.Management/AccountLinking/AccountLinkRequest.cs | using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace Alexa.NET.Management.AccountLinking
{
public class AccountLinkRequest
{
[JsonProperty("skipOnEnablement")]
public bool SkipOnEnablement { get; set; }
[JsonProperty("type"),JsonConverter(typeof(StringEnumConverter))]
... | using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace Alexa.NET.Management.AccountLinking
{
public class AccountLinkRequest
{
[JsonProperty("type"),JsonConverter(typeof(StringEnumConverter))]
public AccountLinkType Type { get; set; }
[JsonProperty("authorizationUrl")]
... | mit | C# |
840f2246199d7818dc29771de2dd81628f689294 | Remove typed events to reduce complexity | peppy/osu,peppy/osu-new,smoogipoo/osu,peppy/osu,2yangk23/osu,smoogipooo/osu,ppy/osu,ZLima12/osu,ppy/osu,johnneijzen/osu,2yangk23/osu,EVAST9919/osu,johnneijzen/osu,peppy/osu,NeoAdonis/osu,EVAST9919/osu,ZLima12/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,smoogipoo/osu,Neo... | osu.Game/Screens/Edit/EditorBeatmap.cs | osu.Game/Screens/Edit/EditorBeatmap.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Beatmaps.Timing;
using osu.Game.Rulesets.Ob... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Beatmaps.Timing;
using osu.Game.Rulesets.Ob... | mit | C# |
a59cf373d26fb4c0b4dc9ec168db063389fee423 | refactor consul tests | Pondidum/Stronk,Pondidum/Stronk | src/Stronk.Source.Consul.Tests/IntegrationTests.cs | src/Stronk.Source.Consul.Tests/IntegrationTests.cs | using System;
using System.Text;
using System.Threading.Tasks;
using Consul;
using Shouldly;
namespace Stronk.Source.Consul.Tests
{
public class IntegrationTests : IDisposable
{
private ConsulConfigurationSource _source;
private readonly ConsulClient _client;
private readonly string _prefix;
public Integra... | using System;
using System.Text;
using System.Threading.Tasks;
using Consul;
using Shouldly;
using Xunit;
namespace Stronk.Source.Consul.Tests
{
public class IntegrationTests : IDisposable
{
private ConsulConfigurationSource _source;
private readonly ConsulClient _client;
private readonly string _prefix;
p... | lgpl-2.1 | C# |
c9e1ff59a4598c7c365fa0f6f489b65083181918 | update assembly properties | jtroe/Centroid,ResourceDataInc/Centroid,ResourceDataInc/Centroid,jtroe/Centroid,jtroe/Centroid,ResourceDataInc/Centroid | dot-net/Centroid/Properties/AssemblyInfo.cs | dot-net/Centroid/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("Ce... | 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("Ce... | mit | C# |
1b716d3be8331eef3f66f05b56b595bed66e4333 | Make IPEImage public | ilkerhalil/dnlib,jorik041/dnlib,Arthur2e5/dnlib,modulexcite/dnlib,ZixiangBoy/dnlib,kiootic/dnlib,0xd4d/dnlib,picrap/dnlib,yck1509/dnlib | dot10/PE/IPEImage.cs | dot10/PE/IPEImage.cs | using System.Collections.Generic;
namespace dot10.PE {
/// <summary>
/// Interface to access a PE image
/// </summary>
public interface IPEImage {
/// <summary>
/// Returns the DOS header
/// </summary>
ImageDosHeader ImageDosHeader { get; }
/// <summary>
/// Returns the NT headers
/// </summary>
... | using System.Collections.Generic;
namespace dot10.PE {
/// <summary>
/// Interface to access a PE image
/// </summary>
interface IPEImage {
/// <summary>
/// Returns the DOS header
/// </summary>
ImageDosHeader ImageDosHeader { get; }
/// <summary>
/// Returns the NT headers
/// </summary>
ImageN... | mit | C# |
352ffad6d8b5ade5f5e3dac77f26c0a70e084bb2 | Change IsExternalInit to internal | k94ll13nn3/Strinken | src/Strinken/Core/IsExternalInit.cs | src/Strinken/Core/IsExternalInit.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.ComponentModel;
namespace System.Runtime.CompilerServices
{
/// <summary>
/// Reserved to be ... | // 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.ComponentModel;
namespace System.Runtime.CompilerServices
{
/// <summary>
/// Reserved to be ... | mit | C# |
3a5a3c5b701b3d0000a6d288c33f189bba20fad0 | Fix PackPackageToolsTask to use lower-case directory (#573) | nuke-build/nuke,nuke-build/nuke,nuke-build/nuke,nuke-build/nuke | source/Nuke.MSBuildTasks/PackPackageToolsTask.cs | source/Nuke.MSBuildTasks/PackPackageToolsTask.cs | // Copyright 2019 Maintainers of NUKE.
// Distributed under the MIT License.
// https://github.com/nuke-build/nuke/blob/master/LICENSE
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using JetBrains.Annotations;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using... | // Copyright 2019 Maintainers of NUKE.
// Distributed under the MIT License.
// https://github.com/nuke-build/nuke/blob/master/LICENSE
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using JetBrains.Annotations;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using... | mit | C# |
d9a29fd8010f81babcd3445671e1279ab783882c | Add code docs | JeevanJames/ConsoleFx | src/CmdLine.Abstractions/Args/NamedObjectImpl.cs | src/CmdLine.Abstractions/Args/NamedObjectImpl.cs | #region --- License & Copyright Notice ---
/*
ConsoleFx CLI Library Suite
Copyright 2015-2019 Jeevan James
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/LICENS... | #region --- License & Copyright Notice ---
/*
ConsoleFx CLI Library Suite
Copyright 2015-2019 Jeevan James
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/LICENS... | apache-2.0 | C# |
d965fff4dee0f5219d99ae6ef35b243ec6976c8b | Change Assembly Version to 2.3.0.0 | AuxMon/azure-sdk-for-net,juvchan/azure-sdk-for-net,yoavrubin/azure-sdk-for-net,samtoubia/azure-sdk-for-net,pattipaka/azure-sdk-for-net,dasha91/azure-sdk-for-net,guiling/azure-sdk-for-net,naveedaz/azure-sdk-for-net,avijitgupta/azure-sdk-for-net,AzCiS/azure-sdk-for-net,atpham256/azure-sdk-for-net,jtlibing/azure-sdk-for-n... | src/ComputeManagement/Properties/AssemblyInfo.cs | src/ComputeManagement/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... | apache-2.0 | C# |
0f4900724dc50000e14ec1c9059dc57c7469893d | Update EntityMaterializer.cs | PowerMogli/Rabbit.Db | src/Micro+/Materialization/EntityMaterializer.cs | src/Micro+/Materialization/EntityMaterializer.cs | using System;
using System.Data;
//using LinFu.DynamicProxy;
using MicroORM.Mapping;
using MicroORM.Storage;
using MicroORM.Entity;
using MicroORM.Caching;
namespace MicroORM.Materialization
{
class EntityMaterializer
{
//private ProxyFactory _proxyFactory = new ProxyFactory();
private IDbProvi... | using System;
using System.Data;
//using LinFu.DynamicProxy;
using MicroORM.Mapping;
using MicroORM.Storage;
using MicroORM.Entity;
using MicroORM.Caching;
namespace MicroORM.Materialization
{
class EntityMaterializer
{
//private ProxyFactory _proxyFactory = new ProxyFactory();
private IDbProvi... | apache-2.0 | C# |
28cd9a22b2ca7f1a23e9d9ed05f3a7ed4d428562 | Fix CosmosDb approval. | ExRam/ExRam.Gremlinq | ApprovalTests/ApprovalTests.CosmosDb.approved.cs | ApprovalTests/ApprovalTests.CosmosDb.approved.cs | [assembly: System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName="")]
namespace ExRam.Gremlinq.Core
{
public static class CosmosDbConfigurationBuilderExtensions
{
public static ExRam.Gremlinq.Core.ICosmosDbConfigurationBuilderWithUri At(this ExRam.Gremlinq.Core.ICo... | [assembly: System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName="")]
namespace ExRam.Gremlinq.Core
{
public static class CosmosDbConfigurationBuilderExtensions
{
public static ExRam.Gremlinq.Core.ICosmosDbConfigurationBuilderWithUri At(this ExRam.Gremlinq.Core.ICo... | mit | C# |
a42d48aec3bf0741c6ec6c9ea87602f7cc6bae8c | make static | splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net | IPTables.Net/Iptables/Helpers/PosixFamilyHelpers.cs | IPTables.Net/Iptables/Helpers/PosixFamilyHelpers.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IPTables.Net.Iptables.Helpers
{
public class PosixFamilyHelpers
{
public static String GetIpFamily(int ipVersion)
{
switch (ipVersion)
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IPTables.Net.Iptables.Helpers
{
public class PosixFamilyHelpers
{
public String GetIpFamily(int ipVersion)
{
switch (ipVersion)
{
... | apache-2.0 | C# |
48120faeb2f669ab97e6fba4dc9e68f023d9d876 | Fix inability to join a multiplayer room which has no password | NeoAdonis/osu,UselessToucan/osu,peppy/osu,smoogipooo/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu-new,UselessToucan/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,ppy/osu | osu.Game/Online/Rooms/JoinRoomRequest.cs | osu.Game/Online/Rooms/JoinRoomRequest.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.Net.Http;
using osu.Framework.IO.Network;
using osu.Game.Online.API;
namespace osu.Game.Online.Rooms
{
public class JoinRoomRequest : APIRequest
{
... | // 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.Net.Http;
using osu.Framework.IO.Network;
using osu.Game.Online.API;
namespace osu.Game.Online.Rooms
{
public class JoinRoomRequest : APIRequest
{
... | mit | C# |
b1ee74fc58d1586e5144d4240d617d4ba18b4f39 | fix spelling | Pondidum/Ledger,Pondidum/Ledger | Ledger.Tests/Projections/ProjectionStoreTests.cs | Ledger.Tests/Projections/ProjectionStoreTests.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using Ledger.Acceptance.TestDomain;
using Ledger.Acceptance.TestDomain.Events;
using Ledger.Projections;
using Ledger.Stores;
using Shouldly;
using Xunit;
namespace Ledger.Tests.Projections
{
public class ProjectionStoreTests
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using Ledger.Acceptance.TestDomain;
using Ledger.Acceptance.TestDomain.Events;
using Ledger.Projections;
using Ledger.Stores;
using Shouldly;
using Xunit;
namespace Ledger.Tests.Projections
{
public class ProjectionStoreTests
... | lgpl-2.1 | C# |
a966a9f233ccec76ab6e088b82e4ef2fc05ea10e | Add number and type of arguments validation to VGPFunction | eugeniusfox/vgprompter | VGPrompter/Script/Internal/Script.VGPFunction.cs | VGPrompter/Script/Internal/Script.VGPFunction.cs | using System;
using System.Collections.Generic;
using System.Linq;
namespace VGPrompter {
public partial class Script {
[Serializable]
class VGPFunction : VGPBaseReference {
[NonSerialized]
Delegate _delegate;
object[] _argv;
Type[] ArgumentType... | using System;
using System.Collections.Generic;
using System.Linq;
namespace VGPrompter {
public partial class Script {
[Serializable]
class VGPFunction : VGPBaseReference {
[NonSerialized]
Delegate _delegate;
object[] _argv;
public Delegate Del... | mit | C# |
031607a3d96f3709a6d882085f8c15d6492b8ed5 | Load customers from the database. | Dissolving-in-Eternity/Vidly,Dissolving-in-Eternity/Vidly,Dissolving-in-Eternity/Vidly | Vidly/Controllers/CustomersController.cs | Vidly/Controllers/CustomersController.cs | using System.Collections.Generic;
using System.Linq;
using System.Web.Mvc;
using Vidly.Models;
namespace Vidly.Controllers
{
public class CustomersController : Controller
{
private ApplicationDbContext _context;
public CustomersController()
{
_context = new ApplicationDbCo... | using System.Collections.Generic;
using System.Linq;
using System.Web.Mvc;
using Vidly.Models;
namespace Vidly.Controllers
{
public class CustomersController : Controller
{
public ActionResult Index()
{
var customers = GetCustomers();
return View(customers);
}
... | mit | C# |
68b0bb18d572651aab733d1982f19a864b753090 | Fix xml-doc | prashanthr/NRules,StanleyGoldman/NRules,NRules/NRules,StanleyGoldman/NRules | src/NRules/NRules.RuleModel/AggregateElement.cs | src/NRules/NRules.RuleModel/AggregateElement.cs | using System;
namespace NRules.RuleModel
{
/// <summary>
/// Rule element that creates new facts (aggregates) based on matching facts it receives as input.
/// </summary>
public class AggregateElement : PatternSourceElement
{
/// <summary>
/// Type of the aggregate. Must implement <... | using System;
namespace NRules.RuleModel
{
/// <summary>
/// Rule element that creates new facts (aggregates) based on matching facts it receives as input.
/// </summary>
public class AggregateElement : PatternSourceElement
{
/// <summary>
/// Type of the aggregate. Must implement <... | mit | C# |
b6b17547700d5c6f99ab1a1752cd6d1c5f19bf70 | Edit Form1.cs | 60071jimmy/UartOscilloscope,60071jimmy/UartOscilloscope | QueueDataGraphic/QueueDataGraphic/Form1.cs | QueueDataGraphic/QueueDataGraphic/Form1.cs | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace QueueDataGraphic
{
public partial class Form1 : Form
{
public Form1()
{
InitializeCom... | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace QueueDataGraphic
{
public partial class Form1 : Form
{
public Form1()
{
InitializeCom... | apache-2.0 | C# |
251fa8c1403e10c17c8c675bb9873e323692cd94 | Add some constructor tests | SocialExplorer/FastDBF | SocialExplorer.FastDBF.Tests.Unit/DbfColumnTests.cs | SocialExplorer.FastDBF.Tests.Unit/DbfColumnTests.cs | #region Usings
using System;
using NUnit.Framework;
using SocialExplorer.IO.FastDBF;
#endregion
namespace SocialExplorer.FastDBF.Tests.Unit
{
[TestFixture]
public class DbfColumnTests
{
# region Setup and Tear Down
/// <summary>
/// TestFixtureSetUp called once before any tests have been run in th... | using System;
using System.Collections.Generic;
using System.Text;
using NUnit.Framework;
using SocialExplorer.IO.FastDBF;
namespace SocialExplorer.FastDBF.Tests.Unit
{
[TestFixture]
public class DbfColumnTests
{
# region Setup and Tear Down
/// <summary>
/// TestFixtureSetUp called once before any ... | bsd-2-clause | C# |
b6b0a27716149e2591097991208ba10f946136fc | add scopes to auth uri | solomobro/Instagram,solomobro/Instagram,solomobro/Instagram | src/Solomobro.Instagram/Api.cs | src/Solomobro.Instagram/Api.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Solomobro.Instagram.Interfaces;
namespace Solomobro.Instagram
{
/// <summary>
/// The entry point for interacting with the Instagram API
/// </summary>
public class Api
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Solomobro.Instagram.Interfaces;
namespace Solomobro.Instagram
{
/// <summary>
/// The entry point for interacting with the Instagram API
/// </summary>
public class Api
{
... | apache-2.0 | C# |
f2b530eff424e4c66b279e4f9a88e6ef5e25ad1a | Use MemoryStream.ToArray | canton7/BitPacker,canton7/BitPacker | BitPacker/ISerializer.cs | BitPacker/ISerializer.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BitPacker
{
public interface ISerializer<T>
{
bool HasFixedSize { get; }
int MinSize { get; }
void Serialize(BinaryWriter writer, T subject);
... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BitPacker
{
public interface ISerializer<T>
{
bool HasFixedSize { get; }
int MinSize { get; }
void Serialize(BinaryWriter writer, T subject);
... | mit | C# |
de8ac19797f5eff794572e91055a84e5fcdd10d6 | Move winner logic to method in Program | SherryHall/Blackjack-OOP | Blackjack-OOP/Program.cs | Blackjack-OOP/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Blackjack_OOP
{
class Program
{
static string DetermineWinner(int patronSum, int dealerSum)
{
if (patronSum > 21)
{
return "\nYou busted. You lose!\n";
}
else if (dealer... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Blackjack_OOP
{
class Program
{
static void Main(string[] args)
{
var wantToPlay = true;
while (wantToPlay)
{
Shoe currShoe = new Shoe();
Player dealer = new Player(... | mit | C# |
a9625811bf41e73466771bd6795030cb976d8fa7 | Clean up splat code | treythomas123/vr-paintball | Assets/PaintballWithSplatter/SplatOnCollision.cs | Assets/PaintballWithSplatter/SplatOnCollision.cs | using UnityEngine;
using System.Collections;
public class SplatOnCollision : MonoBehaviour {
public GameObject[] splatTypes;
void OnCollisionEnter(Collision collision)
{
var paintball = gameObject;
var hit = collision.contacts[0];
var otherObject = hit.otherCollider;
... | using UnityEngine;
using System.Collections;
public class SplatOnCollision : MonoBehaviour {
public GameObject[] splatTypes;
void OnCollisionEnter(Collision collision)
{
var paintball = gameObject;
Destroy(paintball);
var splat = Instantiate(
splatTypes[Random... | mit | C# |
cb0fac0eb699ece00d42f69b951f19387efdf228 | Set memory packet already has header | cyberkitsune/PolarisServer,MrSwiss/PolarisServer,PolarisTeam/PolarisServer,lockzag/PolarisServer,Dreadlow/PolarisServer | PolarisServer/Packets/Handlers/CharacterSpawn.cs | PolarisServer/Packets/Handlers/CharacterSpawn.cs | using System;
using System.IO;
using System.Linq;
using Newtonsoft.Json;
using PolarisServer.Models;
using PolarisServer.Packets.PSOPackets;
using PolarisServer.Object;
using PolarisServer.Database;
using PolarisServer.Zone;
namespace PolarisServer.Packets.Handlers
{
[PacketHandlerAttr(0x11, 0x3E)]
public cla... | using System;
using System.IO;
using System.Linq;
using Newtonsoft.Json;
using PolarisServer.Models;
using PolarisServer.Packets.PSOPackets;
using PolarisServer.Object;
using PolarisServer.Database;
using PolarisServer.Zone;
namespace PolarisServer.Packets.Handlers
{
[PacketHandlerAttr(0x11, 0x3E)]
public cla... | agpl-3.0 | C# |
0a9b591af118086f0fd1999f8052f51e7acbf369 | Add transaction parameter to Count methods | henkmollema/Dommel | src/Dommel/DommelMapper.Count.cs | src/Dommel/DommelMapper.Count.cs | using System;
using System.Collections.Concurrent;
using System.Data;
using System.Linq.Expressions;
using System.Threading.Tasks;
using Dapper;
namespace Dommel
{
public static partial class DommelMapper
{
private static readonly ConcurrentDictionary<Type, string> _countQueryCache = new ConcurrentDict... | using System;
using System.Collections.Concurrent;
using System.Data;
using System.Linq.Expressions;
using System.Threading.Tasks;
using Dapper;
namespace Dommel
{
public static partial class DommelMapper
{
private static readonly ConcurrentDictionary<Type, string> _getCountCache = new ConcurrentDictio... | mit | C# |
f7aab26175a5ac3c809e663ce5d25d335191543c | Update Readme for FastSerialization to fix a typo | vancem/perfview,vancem/perfview,vancem/perfview,vancem/perfview,vancem/perfview | src/FastSerialization/_README.cs | src/FastSerialization/_README.cs | // Copyright (c) Microsoft Corporation. All rights reserved.
// Welcome to the Utilities code base. This _README.cs file is your table of contents.
//
// You will notice that the code is littered with code: qualifiers. If you install the 'hyperAddin' for
// Visual Studio, these qualifiers turn into hyperlinks that ... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Welcome to the Utilities code base. This _README.cs file is your table of contents.
//
// You will notice that the code is littered with code: qualifiers. If you install the 'hyperAddin' for
// Visual Studio, these qualifiers turn into hyperlinks that ... | mit | C# |
26f02c5bf026e0578270a0582238cc87e42e2583 | Use a for-loop instead of LINQ in OrRequestSpecification | amarant/AutoFixture,hackle/AutoFixture,amarant/AutoFixture,sergeyshushlyapin/AutoFixture,olegsych/AutoFixture,sbrockway/AutoFixture,zvirja/AutoFixture,dcastro/AutoFixture,Pvlerick/AutoFixture,yuva2achieve/AutoFixture,olegsych/AutoFixture,mrinaldi/AutoFixture,sergeyshushlyapin/AutoFixture,sbrockway/AutoFixture,dlongest/... | Src/AutoFixture/Kernel/OrRequestSpecification.cs | Src/AutoFixture/Kernel/OrRequestSpecification.cs | using System;
using System.Collections.Generic;
using System.Linq;
namespace Ploeh.AutoFixture.Kernel
{
/// <summary>
/// A boolean 'Or' Composite <see cref="IRequestSpecification"/>.
/// </summary>
public class OrRequestSpecification : IRequestSpecification
{
private readonly I... | using System;
using System.Collections.Generic;
using System.Linq;
namespace Ploeh.AutoFixture.Kernel
{
/// <summary>
/// A boolean 'Or' Composite <see cref="IRequestSpecification"/>.
/// </summary>
public class OrRequestSpecification : IRequestSpecification
{
private readonly I... | mit | C# |
01b743755435c28b20f566a46a1428eed9cc3bc5 | update tunisia provider | tinohager/Nager.Date,tinohager/Nager.Date,tinohager/Nager.Date | Src/Nager.Date/PublicHolidays/TunisiaProvider.cs | Src/Nager.Date/PublicHolidays/TunisiaProvider.cs | using Nager.Date.Contract;
using Nager.Date.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Nager.Date.PublicHolidays
{
public class TunisiaProvider : IPublicHolidayProvider
{
public IEnumerable<PublicHoliday> Get(int... | using Nager.Date.Contract;
using Nager.Date.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Nager.Date.PublicHolidays
{
public class TunisiaProvider : IPublicHolidayProvider
{
public IEnumerable<PublicHoliday> Get(int... | mit | C# |
d26a1034ade49a1206e54dd0eabed84ea93d3095 | Set HttpClient | Brijen/lastfm,realworld666/lastfm | src/IF.Lastfm.Core/Api/TagApi.cs | src/IF.Lastfm.Core/Api/TagApi.cs | using System.Net.Http;
using System.Threading.Tasks;
using IF.Lastfm.Core.Api.Commands.Tag;
using IF.Lastfm.Core.Api.Helpers;
using IF.Lastfm.Core.Helpers;
using IF.Lastfm.Core.Objects;
namespace IF.Lastfm.Core.Api
{
public class TagApi : ApiBase, ITagApi
{
public ILastAuth Auth { get; private set; }
... | using System.Net.Http;
using System.Threading.Tasks;
using IF.Lastfm.Core.Api.Commands.Tag;
using IF.Lastfm.Core.Api.Helpers;
using IF.Lastfm.Core.Helpers;
using IF.Lastfm.Core.Objects;
namespace IF.Lastfm.Core.Api
{
public class TagApi : ApiBase, ITagApi
{
public ILastAuth Auth { get; private set; }
... | mit | C# |
b11efe804f72818a4ff950811273d864bc5963a1 | Fix realtime unit tests | danielmundim/InstaSharp,danielmundim/InstaSharp,crashdavis23/InstaSharp,theShiva/InstaSharp,InstaSharp/InstaSharp,crashdavis23/InstaSharp,3nGercog/InstaSharp,3nGercog/InstaSharp,theShiva/InstaSharp | src/InstaSharp.Tests/Realtime.cs | src/InstaSharp.Tests/Realtime.cs | using System;
using System.Diagnostics;
using System.Threading.Tasks;
using InstaSharp.Endpoints;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace InstaSharp.Tests
{
[TestClass]
public class Realtime : TestBase
{
readonly Subscription _realtime;
public Realtime()
{
... | using System.Diagnostics;
using System.Threading.Tasks;
using InstaSharp.Endpoints;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace InstaSharp.Tests
{
[TestClass]
public class Realtime : TestBase
{
readonly Subscription _realtime;
public Realtime()
{
_rea... | apache-2.0 | C# |
15d1b2958fa95fdd00c8a39a8b76f5bb94fb0915 | Bump version to 3.7.0 | SharpeRAD/RazorEngine,HongJunRen/RazorEngine,MetSystem/RazorEngine,HongJunRen/RazorEngine,Antaris/RazorEngine,MetSystem/RazorEngine,SharpeRAD/RazorEngine,csantero/RazorEngine,Antaris/RazorEngine,bcuff/RazorEngine,aviatrix/RazorEngine,csantero/RazorEngine,aviatrix/RazorEngine,bcuff/RazorEngine | src/SharedAssemblyInfo-Razor4.cs | src/SharedAssemblyInfo-Razor4.cs | // <auto-generated/>
using System.Reflection;
[assembly: AssemblyCompanyAttribute("RazorEngine")]
[assembly: AssemblyProductAttribute("RazorEngine")]
[assembly: AssemblyCopyrightAttribute("RazorEngine Copyright © RazorEngine Project 2011-2015")]
[assembly: AssemblyVersionAttribute("4.2.0")]
[assembly: AssemblyFileVer... | // <auto-generated/>
using System.Reflection;
[assembly: AssemblyCompanyAttribute("RazorEngine")]
[assembly: AssemblyProductAttribute("RazorEngine")]
[assembly: AssemblyCopyrightAttribute("RazorEngine Copyright © RazorEngine Project 2011-2015")]
[assembly: AssemblyVersionAttribute("4.2.0")]
[assembly: AssemblyFileVer... | apache-2.0 | C# |
f414877d00a32baa327040f4333fd44b587369d3 | Rename UserID -> OwnerID | peppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,smoogipooo/osu,peppy/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu | osu.Game/Online/Rooms/MultiplayerPlaylistItem.cs | osu.Game/Online/Rooms/MultiplayerPlaylistItem.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.
#nullable enable
using System;
using System.Collections.Generic;
using System.Linq;
using MessagePack;
using osu.Game.Online.API;
namespace osu.Game.Online.Rooms
{
... | // 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.
#nullable enable
using System;
using System.Collections.Generic;
using System.Linq;
using MessagePack;
using osu.Game.Online.API;
namespace osu.Game.Online.Rooms
{
... | mit | C# |
75ee2bc583f2fcc1d6cf003017424a40bc6a1d2d | Remove unused variable | fremag/Nats.Services | Nats.Services.Core/Nats.Services.Core/NatsServiceClient.cs | Nats.Services.Core/Nats.Services.Core/NatsServiceClient.cs | using System;
using NATS.Client;
using Castle.DynamicProxy;
using System.Linq;
namespace Nats.Services.Core
{
public class NatsServiceClient<T> : AbstractNatsService<T>, IInterceptor
{
public NatsServiceClient(IConnection connection) : base(connection)
{
}
public void Interce... | using System;
using NATS.Client;
using Castle.DynamicProxy;
using System.Linq;
namespace Nats.Services.Core
{
public class NatsServiceClient<T> : AbstractNatsService<T>, IInterceptor
{
public NatsServiceClient(IConnection connection) : base(connection)
{
}
public void Interce... | unlicense | C# |
9667934ed9d0a7a44f55af4c7515fdb0df3bded8 | Remove unlimited timing points in difficulty calculation | NeoAdonis/osu,smoogipoo/osu,smoogipooo/osu,ppy/osu,ppy/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu-new,smoogipoo/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,peppy/osu,ppy/osu,EVAST9919/osu,EVAST9919/osu,NeoAdonis/osu | osu.Game/Beatmaps/Formats/LegacyDifficultyCalculatorBeatmapDecoder.cs | osu.Game/Beatmaps/Formats/LegacyDifficultyCalculatorBeatmapDecoder.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 osu.Game.Beatmaps.ControlPoints;
namespace osu.Game.Beatmaps.Formats
{
/// <summary>
/// A <see cref="LegacyBeatmapDecoder"/> built for ... | // 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 osu.Game.Beatmaps.ControlPoints;
namespace osu.Game.Beatmaps.Formats
{
/// <summary>
/// A <see cref="LegacyBeatmapDecoder"/> built for ... | mit | C# |
60aa2942ca51c5f26c11c0fde38d4663a85ad356 | Add allocations themselves on to CreditNotes | jcvandan/XeroAPI.Net,MatthewSteeples/XeroAPI.Net,XeroAPI/XeroAPI.Net,TDaphneB/XeroAPI.Net | source/XeroApi/Model/CreditNote.cs | source/XeroApi/Model/CreditNote.cs | using System;
namespace XeroApi.Model
{
public class CreditNote : EndpointModelBase
{
[ItemId]
public Guid CreditNoteID { get; set; }
[ItemNumber]
public string CreditNoteNumber { get; set; }
[ItemUpdatedDate]
public DateTime? UpdatedDateUTC { get;... | using System;
namespace XeroApi.Model
{
public class CreditNote : EndpointModelBase
{
[ItemId]
public Guid CreditNoteID { get; set; }
[ItemNumber]
public string CreditNoteNumber { get; set; }
[ItemUpdatedDate]
public DateTime? UpdatedDateUTC { get;... | mit | C# |
dc80c398beeb9361bda95c7a7ced4f4151eee5c3 | fix coding style | peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,peppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,ppy/osu-framework | osu.Framework.Tests/Visual/Screens/TestSceneScreenExit.cs | osu.Framework.Tests/Visual/Screens/TestSceneScreenExit.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 NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Screens;
using osu.Framewor... | // 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 NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Screens;
using osu.Framewor... | mit | C# |
6303a7db9d769835a81f1dfbf3b10eea126fc370 | Add some periods. | CaitSith2/KtaneTwitchPlays,samfun123/KtaneTwitchPlays | TwitchPlaysAssembly/Src/Holdables/Vanilla/AlarmClockHoldableHandler.cs | TwitchPlaysAssembly/Src/Holdables/Vanilla/AlarmClockHoldableHandler.cs | using System.Collections;
using System.Reflection;
using Assets.Scripts.Props;
using UnityEngine;
public class AlarmClockHoldableHandler : HoldableHandler
{
public AlarmClockHoldableHandler(KMHoldableCommander commander, FloatingHoldable holdable, IRCConnection connection, CoroutineCanceller canceller) : base(comman... | using System.Collections;
using System.Reflection;
using Assets.Scripts.Props;
using UnityEngine;
public class AlarmClockHoldableHandler : HoldableHandler
{
public AlarmClockHoldableHandler(KMHoldableCommander commander, FloatingHoldable holdable, IRCConnection connection, CoroutineCanceller canceller) : base(comman... | mit | C# |
5a23774bba3d65014c99c22a5d28d4f3b90a62fa | remove unusing code | imnbwd/WpfWindowToolkit | WpfWindowToolkit.Samples/WpfWindowToolkit.Demo.Shared/Models/Friend.cs | WpfWindowToolkit.Samples/WpfWindowToolkit.Demo.Shared/Models/Friend.cs | using PraiseHim.Rejoice.WpfWindowToolkit.Base;
using System;
namespace WpfWindowToolkit.Demo.Models
{
public class Friend : BindableBase
{
/// <summary>
/// Get or set BirthDate value
/// </summary>
public DateTime BirthDate { get; set; }
/// <summary>
/// Get ... | using PraiseHim.Rejoice.WpfWindowToolkit.Base;
using System;
namespace WpfWindowToolkit.Demo.Models
{
public class Friend : BindableBase
{
private DateTime _birthDate;
private string _email;
private string _id;
private bool _isDeveloper;
private string _name;
/... | apache-2.0 | C# |
55963ec1f3591d330dcc69172db8aa022e30e91d | Return EntityRef from EntityManager.New | copygirl/EntitySystem | src/EntityManager.cs | src/EntityManager.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using EntitySystem.Collections;
using EntitySystem.Utility;
namespace EntitySystem
{
using EntityDictionary = EntitySystem.Collections.Dictionary<Entity, TypedCollection<IComponent>>;
public class EntityManager
{
readonl... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using EntitySystem.Collections;
using EntitySystem.Utility;
namespace EntitySystem
{
using EntityDictionary = EntitySystem.Collections.Dictionary<Entity, TypedCollection<IComponent>>;
public class EntityManager
{
readonl... | mit | C# |
e369a2e1fdfe8461d5bfe33628c43c3f557f88ed | Use correct path to clippy.svg | RichiCoder1/Cake.AliaSql | docs/input/_Bottom.cshtml | docs/input/_Bottom.cshtml | <div class="github-button">
<a href="https://github.com/cake-contrib/Cake.AliaSql"><i class="fa fa-github"></i> GitHub</a>
</div>
<script>
((window.gitter = {}).chat = {}).options = {
room: 'cake-contrib/Lobby'
};
</script>
<script src="https://sidecar.gitter.im/dist/sidecar.v1.js" async def... | <div class="github-button">
<a href="https://github.com/cake-contrib/Cake.AliaSql"><i class="fa fa-github"></i> GitHub</a>
</div>
<script>
((window.gitter = {}).chat = {}).options = {
room: 'cake-contrib/Lobby'
};
</script>
<script src="https://sidecar.gitter.im/dist/sidecar.v1.js" async def... | apache-2.0 | C# |
dab5a803bfb66ae8e1947859e79eb6c52ab54c13 | Increment settings store version | danielchalmers/DesktopWidgets | DesktopWidgets/WidgetBase/WidgetsSettingsStore.cs | DesktopWidgets/WidgetBase/WidgetsSettingsStore.cs | using System.Collections.ObjectModel;
using DesktopWidgets.Classes;
using DesktopWidgets.WidgetBase.Settings;
namespace DesktopWidgets.WidgetBase
{
public class WidgetsSettingsStore
{
public int Version { get; set; } = 2;
public ObservableCollection<WidgetSettingsBase> Widgets { get; set; }
... | using System.Collections.ObjectModel;
using DesktopWidgets.Classes;
using DesktopWidgets.WidgetBase.Settings;
namespace DesktopWidgets.WidgetBase
{
public class WidgetsSettingsStore
{
public int Version { get; set; } = 1;
public ObservableCollection<WidgetSettingsBase> Widgets { get; set; }
... | apache-2.0 | C# |
86c349eaa4adbd4cf756404a7fb4a3469865744a | Increment version number. | timothy-shields/data-structures,timothy-shields/data-structures | Shields.DataStructures/Properties/AssemblyInfo.cs | Shields.DataStructures/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("Sh... | 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("Sh... | mit | C# |
e6018a69cfe2f4ee7b813f7d0c1114c8e5558eb5 | Update the version number | enckse/StyleCopCmd,enckse/StyleCopCmd | StyleCopCmd.Core/Properties/CommonAssemblyInfo.cs | StyleCopCmd.Core/Properties/CommonAssemblyInfo.cs | //------------------------------------------------------------------------------
// <copyright
// file="CommonAssemblyInfo.cs"
// company="enckse">
// Copyright (c) All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System.Reflection;
using S... | //------------------------------------------------------------------------------
// <copyright
// file="CommonAssemblyInfo.cs"
// company="enckse">
// Copyright (c) All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System.Reflection;
using S... | bsd-3-clause | C# |
bf2a8741038506763d03b180392da93757020880 | modify error log content. | dotnetcore/CAP,dotnetcore/CAP,ouraspnet/cap,dotnetcore/CAP | src/DotNetCore.CAP.Kafka/PublishQueueExecutor.cs | src/DotNetCore.CAP.Kafka/PublishQueueExecutor.cs | using System;
using System.Text;
using System.Threading.Tasks;
using Confluent.Kafka;
using DotNetCore.CAP.Processor.States;
using Microsoft.Extensions.Logging;
namespace DotNetCore.CAP.Kafka
{
internal class PublishQueueExecutor : BasePublishQueueExecutor
{
private readonly KafkaOptions _kafkaOptions... | using System;
using System.Text;
using System.Threading.Tasks;
using Confluent.Kafka;
using DotNetCore.CAP.Processor.States;
using Microsoft.Extensions.Logging;
namespace DotNetCore.CAP.Kafka
{
internal class PublishQueueExecutor : BasePublishQueueExecutor
{
private readonly KafkaOptions _kafkaOptions... | mit | C# |
8bf64ef5fa5ed82819ce4a855c04fa33d699ad24 | optimize lite key find | kaosborn/KaosCollections | BtreeDictionary/BtreeFind.cs | BtreeDictionary/BtreeFind.cs | //
// Library: KaosCollections
// File: BtreeFind.cs
// Purpose: Define BtreeDictionary seek function without a NodeVector path.
//
// Copyright © 2009-2017 Kasey Osborn (github.com/kaosborn)
// MIT License - Use and redistribute freely
//
using System.Collections.Generic;
namespace Kaos.Collections
{
public ... | //
// Library: KaosCollections
// File: BtreeFind.cs
// Purpose: Define BtreeDictionary seek function without a NodeVector path.
//
// Copyright © 2009-2017 Kasey Osborn (github.com/kaosborn)
// MIT License - Use and redistribute freely
//
using System.Collections.Generic;
namespace Kaos.Collections
{
public ... | mit | C# |
bc20a8d5117692760098adabcfd46176e06b8902 | Add placeholder support for OnUpdate | RockyTV/Duality.IronPython | CorePlugin/ScriptExecutor.cs | CorePlugin/ScriptExecutor.cs | using System;
using System.Collections.Generic;
using System.Linq;
using Duality;
using PythonScripting.Resources;
using IronPython.Hosting;
using IronPython.Runtime;
using IronPython.Compiler;
using Microsoft.Scripting;
using Microsoft.Scripting.Hosting;
namespace PythonScripting
{
public class ScriptExecutor : ... | using System;
using System.Collections.Generic;
using System.Linq;
using Duality;
using PythonScripting.Resources;
using IronPython.Hosting;
using Microsoft.Scripting.Hosting;
using IronPython.Compiler;
namespace PythonScripting
{
public class ScriptExecutor : Component, ICmpInitializable
{
public Content... | mit | C# |
9095f02bd45b89f975192270271c91e9c59ac07c | Fix V3064 | justcoding121/Algorithm-Sandbox,justcoding121/Advanced-Algorithms | Advanced.Algorithms/Sorting/BucketSort.cs | Advanced.Algorithms/Sorting/BucketSort.cs | using System.Collections.Generic;
using System;
using System.Linq;
namespace Advanced.Algorithms.Sorting
{
/// <summary>
/// A bucket sort implementation
/// </summary>
public class BucketSort
{
/// <summary>
/// Sort given integers using bucket sort with merge sort as sub sort
... | using System.Collections.Generic;
using System;
using System.Linq;
namespace Advanced.Algorithms.Sorting
{
/// <summary>
/// A bucket sort implementation
/// </summary>
public class BucketSort
{
/// <summary>
/// Sort given integers using bucket sort with merge sort as sub sort
... | mit | C# |
13962378f9a61e528973b6973109aec81aa09ac4 | Update version number to 3.0.2 | Axosoft/AxosoftAPI.NET | AxosoftAPI.NET/Properties/AssemblyInfo.cs | AxosoftAPI.NET/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("AxosoftAPI.NET")]
[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("AxosoftAPI.NET")]
[assembly: AssemblyDesc... | mit | C# |
185d0b85ccf6b2dd99b561fe3b09bf62ad0dc8ad | add project url | krishnarajnairmk/im-only-resting,krishnarajnairmk/im-only-resting,yagyemang/im-only-resting,ikazuaki/im-only-resting,yhtsnda/im-only-resting,krishnarajnairmk/im-only-resting,yhtsnda/im-only-resting,yagyemang/im-only-resting,ikazuaki/im-only-resting,yhtsnda/im-only-resting,yagyemang/im-only-resting,ikazuaki/im-only-rest... | Ior/Properties/AssemblyInfo.cs | Ior/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: AssemblyTi... | 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: AssemblyTi... | apache-2.0 | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.