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
3606a2c3120bf26148beb0ca46b728950056874a
Change StartJobsAsync to work on the generic host
mrahhal/MR.AspNetCore.Jobs,mrahhal/MR.AspNetCore.Jobs
src/MR.AspNetCore.Jobs/JobsServiceProviderExtensions.cs
src/MR.AspNetCore.Jobs/JobsServiceProviderExtensions.cs
using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; namespace MR.AspNetCore.Jobs { public static class JobsWebHostExtensions { public static Task StartJobsAsync(this IHost host) { var bootstrapper = host.Services.GetRequiredService<IBootstrapper>(...
using System.Threading.Tasks; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.DependencyInjection; namespace MR.AspNetCore.Jobs { public static class JobsWebHostExtensions { public static Task StartJobsAsync(this IWebHost host) { var bootstrapper = host.Services.GetRequiredService<IBootstrappe...
mit
C#
a07a889c259af34615661aa5e3580f93c69f3958
Fix culture
BioWareRu/BioEngine,BioWareRu/BioEngine,BioWareRu/BioEngine
src/BioEngine.Admin/Startup.cs
src/BioEngine.Admin/Startup.cs
using AntDesign.ProLayout; using BioEngine.Core; using FluentValidation; using Microsoft.AspNetCore.Builder; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Sitko.Core.App.Web; namespace BioEngine.Admin { public class Startup : Bio...
using AntDesign.ProLayout; using BioEngine.Core; using FluentValidation; using Microsoft.AspNetCore.Builder; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Sitko.Core.App.Web; namespace BioEngine.Admin { public class Startup : Bio...
mit
C#
5bc0c5ed7553917fe756176b454fdeb7368926b4
Add Escape const to Keyboard class.
2gis/Winium.Cruciatus
src/Cruciatus/Core/Keyboard.cs
src/Cruciatus/Core/Keyboard.cs
namespace Cruciatus.Core { #region using using NLog; #endregion public static class Keyboard { public const string Enter = "{ENTER}"; public const string Backspace = "{BACKSPACE}"; public const string Escape = "{ESCAPE}"; public const string CtrlA = "^a"; ...
namespace Cruciatus.Core { #region using using NLog; #endregion public static class Keyboard { public const string Enter = "{ENTER}"; public const string Backspace = "{BACKSPACE}"; public const string CtrlA = "^a"; public const string CtrlC = "^c"; pub...
mpl-2.0
C#
fb086b6017e3cc41bc093a1041951c569a2bac39
add jsonrpc 2.0 property to json request
vmlf01/JsonRpc.CoreCLR.Client
src/JsonRpc.CoreCLR.Client/Models/JsonRpcRequest.cs
src/JsonRpc.CoreCLR.Client/Models/JsonRpcRequest.cs
using Newtonsoft.Json; namespace JsonRpc.CoreCLR.Client.Models { [JsonObject(MemberSerialization.OptIn)] public class JsonRpcRequest { public bool IsNotification { get; set; } [JsonProperty(PropertyName = "jsonrpc")] public string JsonRpc { get { return "2.0"; } } [JsonPro...
using Newtonsoft.Json; namespace JsonRpc.CoreCLR.Client.Models { [JsonObject(MemberSerialization.OptIn)] public class JsonRpcRequest { public bool IsNotification { get; set; } [JsonProperty("method")] public string Method { get; set; } [JsonProperty("params")] publ...
mit
C#
703b4654da1aee62aad2944a10375a81b5f7b13a
fix spelling
mzboray/PSAutomation
src/PSAutomation/Commands/GetChildElementCommand.cs
src/PSAutomation/Commands/GetChildElementCommand.cs
using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using System.Text; using System.Threading.Tasks; using System.Windows.Automation; namespace PSAutomation.Commands { [Cmdlet(VerbsCommon.Get, "ChildElement")] [OutputType(typeof(AutomationElement))] publi...
using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using System.Text; using System.Threading.Tasks; using System.Windows.Automation; namespace PSAutomation.Commands { [Cmdlet(VerbsCommon.Get, "ChildElement")] [OutputType(typeof(AutomationElement))] publi...
mit
C#
8d608daa9e08aca7563aad7b1bba2dbf2903295d
Set the access token properly in the OAuth form
Glurmo/LiveSplit,Glurmo/LiveSplit,chloe747/LiveSplit,stoye/LiveSplit,zoton2/LiveSplit,kugelrund/LiveSplit,stoye/LiveSplit,chloe747/LiveSplit,Fluzzarn/LiveSplit,kugelrund/LiveSplit,Glurmo/LiveSplit,ROMaster2/LiveSplit,Dalet/LiveSplit,Fluzzarn/LiveSplit,Dalet/LiveSplit,zoton2/LiveSplit,Fluzzarn/LiveSplit,kugelrund/LiveSp...
LiveSplit/LiveSplit.View/View/SpeedrunComOAuthForm.cs
LiveSplit/LiveSplit.View/View/SpeedrunComOAuthForm.cs
using LiveSplit.Options; using System; using System.Windows.Forms; namespace LiveSplit.Web.Share { public partial class SpeedrunComOAuthForm : Form, ISpeedrunComAuthenticator { private string accessToken; public SpeedrunComOAuthForm() { InitializeComponent(); } ...
using LiveSplit.Options; using System; using System.Windows.Forms; namespace LiveSplit.Web.Share { public partial class SpeedrunComOAuthForm : Form, ISpeedrunComAuthenticator { private string accessToken; public SpeedrunComOAuthForm() { InitializeComponent(); } ...
mit
C#
a8d8c8f4607e75a5ae8e9b0e0143b9c506095567
Add one client control for each TabPage.
PenguinF/sandra-three
Eutherion/Win/Controls/GlyphTabControl.TabPage.cs
Eutherion/Win/Controls/GlyphTabControl.TabPage.cs
#region License /********************************************************************************* * GlyphTabControl.TabPage.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * ...
#region License /********************************************************************************* * GlyphTabControl.TabPage.cs * * Copyright (c) 2004-2020 Henk Nicolai * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * ...
apache-2.0
C#
2eafd77e13d94618b40e8773eb23bd20bff830bd
Add new properties to message schema
MindscapeHQ/raygun4net,MindscapeHQ/raygun4net,MindscapeHQ/raygun4net
Mindscape.Raygun4Net/Messages/RaygunMessageDetails.cs
Mindscape.Raygun4Net/Messages/RaygunMessageDetails.cs
using System.Collections; using System.Collections.Generic; namespace Mindscape.Raygun4Net.Messages { public class RaygunMessageDetails { public string MachineName { get; set; } public string GroupingKey { get; set; } public string Version { get; set; } public string CorrelationId { get; set; } ...
using System.Collections; using System.Collections.Generic; namespace Mindscape.Raygun4Net.Messages { public class RaygunMessageDetails { public string MachineName { get; set; } public string GroupingKey { get; set; } public string Version { get; set; } public RaygunErrorMessage Error { get; set...
mit
C#
b9d9a70b99f6c085bdf9da15a4184e0bbe8736c2
Update "UCBookInformation"
DRFP/Personal-Library
_Build/PersonalLibrary/Base/UCBookInformation.xaml.cs
_Build/PersonalLibrary/Base/UCBookInformation.xaml.cs
using Library.Model; using System; using System.Windows; using System.Windows.Controls; using System.Windows.Media.Imaging; using static Library.API; namespace Base { public partial class UCBookInformation : UserControl { private Book book; public UCBookInformation(Book book) { Initia...
using Library.Model; using System; using System.Windows; using System.Windows.Controls; using System.Windows.Media.Imaging; using static Library.API; namespace Base { public partial class UCBookInformation : UserControl { private Book book; public UCBookInformation(Book book) { Initia...
mit
C#
4d6b9d123ec011b629e181c0f584c5674643806a
Use AutoFixture to populate test objects
appharbor/appharbor-cli
src/AppHarbor.Tests/Commands/LogoutAuthCommandTest.cs
src/AppHarbor.Tests/Commands/LogoutAuthCommandTest.cs
using System.IO; using AppHarbor.Commands; using Moq; using Ploeh.AutoFixture.Xunit; using Xunit.Extensions; namespace AppHarbor.Tests.Commands { public class LogoutAuthCommandTest { [Theory, AutoCommandData] public void ShouldLogoutUser([Frozen]Mock<IAccessTokenConfiguration> accessTokenConfigurationMock, [Fro...
using System.IO; using AppHarbor.Commands; using Moq; using Xunit; namespace AppHarbor.Tests.Commands { public class LogoutAuthCommandTest { [Fact] public void ShouldLogoutUser() { var accessTokenConfigurationMock = new Mock<AccessTokenConfiguration>(); var writer = new Mock<TextWriter>(); var logout...
mit
C#
9fec2103a305e6a6cdb7d080c7af8a81100472ef
Add default format (json) in web api config
aliziani/ELearning,aliziani/ELearning,aliziani/ELearning
TokenAuthentification/App_Start/WebApiConfig.cs
TokenAuthentification/App_Start/WebApiConfig.cs
using Newtonsoft.Json.Serialization; using System.Linq; using System.Net.Http.Formatting; using System.Web.Http; namespace TokenAuthentification { public static class WebApiConfig { public static void Register(HttpConfiguration config) { // Web API configuration and services ...
using System; using System.Collections.Generic; using System.Linq; using System.Web.Http; namespace TokenAuthentification { public static class WebApiConfig { public static void Register(HttpConfiguration config) { // Web API configuration and services // Web API route...
mit
C#
7cf28608ae7fb76b37ed6b3068cca102fec6c70f
Remove plants from tundra biome
creatorfromhell/TrueCraft,Mitch528/TrueCraft,christopherbauer/TrueCraft,blha303/TrueCraft,flibitijibibo/TrueCraft,manio143/TrueCraft,SirCmpwn/TrueCraft,manio143/TrueCraft,flibitijibibo/TrueCraft,thdtjsdn/TrueCraft,thdtjsdn/TrueCraft,thdtjsdn/TrueCraft,christopherbauer/TrueCraft,flibitijibibo/TrueCraft,Mitch528/TrueCraf...
TrueCraft.Core/TerrainGen/Biomes/TundraBiome.cs
TrueCraft.Core/TerrainGen/Biomes/TundraBiome.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using TrueCraft.Core.TerrainGen.Noise; using TrueCraft.Core.Logic.Blocks; using TrueCraft.API.World; using TrueCraft.API; namespace TrueCraft.Core.TerrainGen.Biomes { public class TundraBiome : BiomeProvider { public...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using TrueCraft.Core.TerrainGen.Noise; using TrueCraft.Core.Logic.Blocks; using TrueCraft.API.World; using TrueCraft.API; namespace TrueCraft.Core.TerrainGen.Biomes { public class TundraBiome : BiomeProvider { public...
mit
C#
3269f690ebcba324a1d74cb9b860d40bf1101d1b
Fix cause of InterruptMusic exception in log.
CaitSith2/KtaneTwitchPlays,samfun123/KtaneTwitchPlays
TwitchPlaysAssembly/Src/Audio/InterruptMusic.cs
TwitchPlaysAssembly/Src/Audio/InterruptMusic.cs
using System; using System.Collections.Generic; using System.Reflection; using UnityEngine; public class InterruptMusic : MonoBehaviour { public static InterruptMusic Instance { get { return _instance; } } private static InterruptMusic _instance = null; privat...
using System; using System.Collections.Generic; using System.Reflection; using UnityEngine; public class InterruptMusic : MonoBehaviour { public static InterruptMusic Instance { get { return _instance; } } private static InterruptMusic _instance = null; privat...
mit
C#
9bb501c595bf33d5d6af451801015914a30561b2
Fix failing tests
github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql
csharp/ql/test/library-tests/csharp9/ForeachExtension.cs
csharp/ql/test/library-tests/csharp9/ForeachExtension.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; static class Extensions { public static IEnumerator<T> GetEnumerator<T>(this IEnumerator<T> enumerator) => enumerator; public static IAsyncEnumerator<T> GetAsyncEnumerator<T>(this IAsyncEnumerator<T> enumerator) =>...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; static class Extensions { public static IEnumerator<T> GetEnumerator<T>(this IEnumerator<T> enumerator) => enumerator; public static IAsyncEnumerator<T> GetAsyncEnumerator<T>(this IAsyncEnumerator<T> enumerator) =>...
mit
C#
cc2089b1015070bc778fc3b8c2f896e9c8839237
Add XML comments to NameAttribute
atata-framework/atata,YevgeniyShunevych/Atata,YevgeniyShunevych/Atata,atata-framework/atata
src/Atata/Attributes/NameAttribute.cs
src/Atata/Attributes/NameAttribute.cs
using System; namespace Atata { /// <summary> /// Specifies the name of the component. /// </summary> [AttributeUsage(AttributeTargets.Property | AttributeTargets.Class | AttributeTargets.Field)] public class NameAttribute : Attribute { public NameAttribute(string value) { ...
using System; namespace Atata { [AttributeUsage(AttributeTargets.Property | AttributeTargets.Class | AttributeTargets.Field)] public class NameAttribute : Attribute { public NameAttribute(string value) { Value = value; } public string Value { get; private set; ...
apache-2.0
C#
653aca6a943f07071a80703953ce75a395dc383d
Update PageDocument.cs
wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,Core2D/Core2D
src/Core2D/UI/Avalonia/Dock/Documents/PageDocument.cs
src/Core2D/UI/Avalonia/Dock/Documents/PageDocument.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 DMC = Dock.Model.Controls; namespace Core2D.UI.Avalonia.Dock.Documents { /// <summary> /// Page document. /// </summary> public class PageDo...
// 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 DMC=Dock.Model.Controls; namespace Core2D.UI.Avalonia.Dock.Documents { /// <summary> /// Page document. /// </summary> public class PageDocu...
mit
C#
ac163a6ec61c9b5e76527d08253d5d73e7f4b0ff
Disable provider filtering for Alexa
martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site
src/LondonTravel.Site/Views/Shared/_SignInForm.cshtml
src/LondonTravel.Site/Views/Shared/_SignInForm.cshtml
@inject Microsoft.AspNetCore.Identity.SignInManager<LondonTravelUser> SignInManager @{ var providers = SignInManager.GetExternalAuthenticationSchemes() .OrderBy((p) => p.DisplayName) .ThenBy((p) => p.AuthenticationScheme) .ToList(); /* var schemesToShow = ViewData["AuthenticationSc...
@inject Microsoft.AspNetCore.Identity.SignInManager<LondonTravelUser> SignInManager @{ var providers = SignInManager.GetExternalAuthenticationSchemes() .OrderBy((p) => p.DisplayName) .ThenBy((p) => p.AuthenticationScheme) .ToList(); var schemesToShow = ViewData["AuthenticationSchemesTo...
apache-2.0
C#
8a8d9193a7a93bfa34780cbe5b110ab2e0ba5f1c
Refactor - rename test methods
stoneass/IntUITive,stoneass/IntUITive
IntUITive.Selenium.Tests/IntuitivelyFindByIdTests.cs
IntUITive.Selenium.Tests/IntuitivelyFindByIdTests.cs
using NUnit.Framework; namespace IntUITive.Selenium.Tests { [TestFixture] public class IntuitivelyFindByIdTests : BaseIntuitivelyTests { [Test] public void Find_WithIdAsTerm_ReturnsElement() { var element = Intuitively.Find("uniqueId"); Assert.Th...
using NUnit.Framework; namespace IntUITive.Selenium.Tests { [TestFixture] public class IntuitivelyFindByIdTests : BaseIntuitivelyTests { [Test] public void Find_WithIdAsTerm_ReturnsSingleElement() { var element = Intuitively.Find("uniqueId"); Ass...
apache-2.0
C#
c4201bbe58f18b4517a40ac2e05c0cc76bad1252
Throw when GetInstance cannot find an instance from the IoC container
belgaard/Leantest,belgaard/Leantest,belgaard/Leantest
Source/Core/Core/ExecutionHandling/ContextBuilder.cs
Source/Core/Core/ExecutionHandling/ContextBuilder.cs
using System; using System.Collections.Generic; using System.Linq; namespace LeanTest.Core.ExecutionHandling { /// <summary> /// Encapsulates the IoC container and builds the data and execution context for a test, including 'state' and 'mocks'. /// </summary> public class ContextBuilder { private readonly IIoc...
using System; using System.Collections.Generic; using System.Linq; namespace LeanTest.Core.ExecutionHandling { /// <summary> /// Encapsulates the IoC container and builds the data and execution context for a test, including 'state' and 'mocks'. /// </summary> public class ContextBuilder { private readonly IIoc...
mit
C#
488bed5e53f88b683477ccc36f55fc86314fe7a2
Make ChannelReferences Procedures thread-safe (#39)
MathewSachin/ManagedBass,Revica/ManagedBass
src/Bass/Shared/ChannelReferences.cs
src/Bass/Shared/ChannelReferences.cs
using System; using System.Collections.Concurrent; using System.Linq; namespace ManagedBass { /// <summary> /// Holds References to Channel Items like <see cref="SyncProcedure"/> and <see cref="FileProcedures"/>. /// </summary> public static class ChannelReferences { static readonly Concurr...
using System; using System.Collections.Generic; using System.Linq; namespace ManagedBass { /// <summary> /// Holds References to Channel Items like <see cref="SyncProcedure"/> and <see cref="FileProcedures"/>. /// </summary> public static class ChannelReferences { static readonly Dictionary...
mit
C#
4b086b7e1cf38d386ad6c2bcffed2fee89e4679f
Fix default JSON response charset
rudygt/Nancy,thecodejunkie/Nancy,dbabox/Nancy,wtilton/Nancy,thecodejunkie/Nancy,AcklenAvenue/Nancy,phillip-haydon/Nancy,kekekeks/Nancy,EIrwin/Nancy,hitesh97/Nancy,nicklv/Nancy,xt0rted/Nancy,horsdal/Nancy,davidallyoung/Nancy,davidallyoung/Nancy,cgourlay/Nancy,guodf/Nancy,adamhathcock/Nancy,AcklenAvenue/Nancy,cgourlay/Na...
src/Nancy/Json/JsonSettings.cs
src/Nancy/Json/JsonSettings.cs
namespace Nancy.Json { using System.Collections.Generic; using Converters; /// <summary> /// Json serializer settings /// </summary> public static class JsonSettings { /// <summary> /// Max length of json output /// </summary> public static int M...
namespace Nancy.Json { using System.Collections.Generic; using Converters; /// <summary> /// Json serializer settings /// </summary> public static class JsonSettings { /// <summary> /// Max length of json output /// </summary> public static int M...
mit
C#
2c17d450dd8fbd8e098e844ac4da8634190ba823
fix Issue #16
danisein/Wox,Rovak/Wox,EmuxEvans/Wox,derekforeman/Wox,gnowxilef/Wox,Rovak/Wox,medoni/Wox,mika76/Wox,renzhn/Wox,kdar/Wox,mika76/Wox,orzFly/Wox,18098924759/Wox,gnowxilef/Wox,zlphoenix/Wox,qianlifeng/Wox,lances101/Wox,jondaniels/Wox,Megasware128/Wox,lances101/Wox,kdar/Wox,qianlifeng/Wox,apprentice3d/Wox,EmuxEvans/Wox,vebi...
WinAlfred.Plugin.System/ThirdpartyPluginIndicator.cs
WinAlfred.Plugin.System/ThirdpartyPluginIndicator.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WinAlfred.Plugin.System { public class ThirdpartyPluginIndicator : BaseSystemPlugin { private List<PluginPair> allPlugins = new List<PluginPair>(); private Action<string> changeQuery; prote...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WinAlfred.Plugin.System { public class ThirdpartyPluginIndicator : BaseSystemPlugin { private List<PluginPair> allPlugins = new List<PluginPair>(); private Action<string> changeQuery; prote...
mit
C#
69f1be91217bfbb53b7aa1fe95788c96cc968d3d
fix lint.
GoogleCloudPlatform/dotnet-docs-samples,GoogleCloudPlatform/dotnet-docs-samples,GoogleCloudPlatform/dotnet-docs-samples,GoogleCloudPlatform/dotnet-docs-samples
asset/quickstart/ExportAssetsTest/ExportAssetsTest.cs
asset/quickstart/ExportAssetsTest/ExportAssetsTest.cs
/* * Copyright (c) 2018 Google LLC. * * 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 a...
/* * Copyright (c) 2018 Google LLC. * * 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 a...
apache-2.0
C#
ebfb43969e2b935d5dd4f636f2e134869ab15380
Allow connection string for configuring StorageAccountDetails (#263)
Azure/durabletask,affandar/durabletask
src/DurableTask.AzureStorage/StorageAccountDetails.cs
src/DurableTask.AzureStorage/StorageAccountDetails.cs
// ---------------------------------------------------------------------------------- // Copyright Microsoft Corporation // 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....
// ---------------------------------------------------------------------------------- // Copyright Microsoft Corporation // 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-2.0
C#
58b3e4f816d4c3e843522ade9d9b593ace5b6c78
remove some namespaces
leotsarev/hardcode-analyzer
Tsarev.Analyzer.Helpers/EntityFrameworkHelpers.cs
Tsarev.Analyzer.Helpers/EntityFrameworkHelpers.cs
using System.Linq; using JetBrains.Annotations; using Microsoft.CodeAnalysis.CSharp.Syntax; namespace Tsarev.Analyzer.Helpers { /// <summary> /// Set of methods that used top detect some EF patterns that shoud not be analyzed /// </summary> public static class EntityFrameworkHelpers { /// <summary> ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using JetBrains.Annotations; using Microsoft.CodeAnalysis.CSharp.Syntax; namespace Tsarev.Analyzer.Helpers { /// <summary> /// Set of methods that used top detect some EF patterns that shoud not be ...
mit
C#
78b88e42c5d3cb7cf749c0eba078665d42b71776
Add guard in ExportInfo constructor.
RockFramework/Rock.StaticDependencyInjection,bfriesen/Rock.StaticDependencyInjection
src/StaticDependencyInjection/ExportInfo.Generated.cs
src/StaticDependencyInjection/ExportInfo.Generated.cs
using System; namespace Rock.StaticDependencyInjection { /// <summary> /// Provides information about an export. /// </summary> internal class ExportInfo { private const int _defaultPriority = -1; private readonly Type _targetClass; private readonly int _priority; ...
using System; namespace Rock.StaticDependencyInjection { /// <summary> /// Provides information about an export. /// </summary> internal class ExportInfo { private const int _defaultPriority = -1; private readonly Type _targetClass; private readonly int _priority; ...
mit
C#
2cc90a99001168b7ce2e4e13f4d644e01d976145
Update AssemblyInfo
pierre3/PlantUmlClassDiagramGenerator,pierre3/PlantUmlClassDiagramGenerator
PlantUmlClassDiagramGenerator/Properties/AssemblyInfo.cs
PlantUmlClassDiagramGenerator/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("PlantUmlClassDiagramGenerator")] [assembl...
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("PlantUmlClassDiagramGenerator")] [assembl...
mit
C#
12c82e96281683b087363b436723392d9dd3b66f
Add class CustomPSSnapIn stubs
mrward/Pash,WimObiwan/Pash,sburnicki/Pash,sillvan/Pash,Jaykul/Pash,ForNeVeR/Pash,WimObiwan/Pash,ForNeVeR/Pash,WimObiwan/Pash,mrward/Pash,Jaykul/Pash,WimObiwan/Pash,ForNeVeR/Pash,sburnicki/Pash,sburnicki/Pash,sillvan/Pash,ForNeVeR/Pash,sillvan/Pash,Jaykul/Pash,mrward/Pash,Jaykul/Pash,sburnicki/Pash,mrward/Pash,sillvan/P...
Source/System.Management/Automation/CustomPSSnapIn.cs
Source/System.Management/Automation/CustomPSSnapIn.cs
// Copyright (C) Pash Contributors. License: GPL/BSD. See https://github.com/Pash-Project/Pash/ using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Management.Automation.Runspaces; namespace System.Management.Automation { /// <summary> /// Base class for other c...
// Copyright (C) Pash Contributors. License: GPL/BSD. See https://github.com/Pash-Project/Pash/ //classtodo: Needs implementations of Runspaces.CmdletConfigurationEntry, Runspaces.FormatConfigurationEntry, Runspaces.TypeConfigurationEntry /* using System; using System.Collections.Generic; using System.Collections.Obj...
bsd-3-clause
C#
51556a809d578f159387664cf23ce26a856643b1
Fix variables not being used inside target string
ppy/osu,EVAST9919/osu,ppy/osu,UselessToucan/osu,smoogipooo/osu,UselessToucan/osu,ppy/osu,peppy/osu,smoogipoo/osu,smoogipoo/osu,johnneijzen/osu,NeoAdonis/osu,peppy/osu,EVAST9919/osu,smoogipoo/osu,peppy/osu-new,johnneijzen/osu,2yangk23/osu,UselessToucan/osu,peppy/osu,NeoAdonis/osu,2yangk23/osu,NeoAdonis/osu
osu.Game/Online/API/Requests/MarkChannelAsReadRequest.cs
osu.Game/Online/API/Requests/MarkChannelAsReadRequest.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Online.Chat; namespace osu.Game.Online.API.Requests { public class MarkChannelAsReadRequest : APIRequest { private readonly Channel chann...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Online.Chat; namespace osu.Game.Online.API.Requests { public class MarkChannelAsReadRequest : APIRequest { private readonly Channel chann...
mit
C#
228c5d7f6590272a3ceec5342cf30c71eecae3bd
Document fail-fast approach for exception bag property add after results collected
RehanSaeed/Serilog.Exceptions,RehanSaeed/Serilog.Exceptions
Source/Serilog.Exceptions/Core/ExceptionPropertiesBag.cs
Source/Serilog.Exceptions/Core/ExceptionPropertiesBag.cs
namespace Serilog.Exceptions.Core { using System; using System.Collections.Generic; using Serilog.Exceptions.Filters; internal class ExceptionPropertiesBag : IExceptionPropertiesBag { private readonly Type exceptionType; private readonly IExceptionPropertyFilter filter; priv...
namespace Serilog.Exceptions.Core { using System; using System.Collections.Generic; using Serilog.Exceptions.Filters; internal class ExceptionPropertiesBag : IExceptionPropertiesBag { private readonly Type exceptionType; private readonly IExceptionPropertyFilter filter; priv...
mit
C#
2e0eb93a7c20896471789353d8f492581b53b875
Fix crash in Serializer on MessageCommand.End or empty getter
Xeeynamo/KingdomHearts
kh.kh2/Messages/MsgSerializer.Text.cs
kh.kh2/Messages/MsgSerializer.Text.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.Text; namespace kh.kh2.Messages { public partial class MsgSerializer { public static string SerializeText(IEnumerable<MessageCommandModel> entries) { var sb = new StringBuilder(); for...
using System; using System.Collections.Generic; using System.Text; namespace kh.kh2.Messages { public partial class MsgSerializer { public static string SerializeText(IEnumerable<MessageCommandModel> entries) { var sb = new StringBuilder(); foreach (var entry in entries...
mit
C#
f5bdb497d0b99785ab0d855aceaeb707e768f4fb
Fix #8335: Make ConfigurationClientOptions.Version property internal. (#8336)
ayeletshpigelman/azure-sdk-for-net,ayeletshpigelman/azure-sdk-for-net,yugangw-msft/azure-sdk-for-net,markcowl/azure-sdk-for-net,jackmagic313/azure-sdk-for-net,jackmagic313/azure-sdk-for-net,hyonholee/azure-sdk-for-net,jackmagic313/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,AsrOneSdk/azure-sdk-for-net,AsrOneSdk/az...
sdk/appconfiguration/Azure.Data.AppConfiguration/src/ConfigurationClientOptions.cs
sdk/appconfiguration/Azure.Data.AppConfiguration/src/ConfigurationClientOptions.cs
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using Azure.Core; using Azure.Core.Pipeline; namespace Azure.Data.AppConfiguration { /// <summary> /// Options that allow to configure the management of the request sent to the service /// </summ...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using Azure.Core; using Azure.Core.Pipeline; namespace Azure.Data.AppConfiguration { /// <summary> /// Options that allow to configure the management of the request sent to the service /// </summ...
mit
C#
8f645cc7efe285f8b5c356040616f2dd7b2d8fb1
Apply suggestions from code review
bartdesmet/roslyn,CyrusNajmabadi/roslyn,sharwell/roslyn,shyamnamboodiripad/roslyn,dotnet/roslyn,physhi/roslyn,CyrusNajmabadi/roslyn,CyrusNajmabadi/roslyn,weltkante/roslyn,eriawan/roslyn,sharwell/roslyn,diryboy/roslyn,wvdd007/roslyn,eriawan/roslyn,KevinRansom/roslyn,sharwell/roslyn,bartdesmet/roslyn,eriawan/roslyn,wvdd0...
src/Tools/ExternalAccess/DotNetWatch/DotNetWatchEditAndContinueWorkspaceService.cs
src/Tools/ExternalAccess/DotNetWatch/DotNetWatchEditAndContinueWorkspaceService.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Immutable; using System.Composition; using System.Threading; using System.Th...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Immutable; using System.Composition; using System.Threading; using System.Th...
mit
C#
741154d653bb305699d8080d88065f2b929cdcd0
add more failing tests more specific to the particular problem in binding with complex property path like property.item1.item2.item3
jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,grokys/Perspex,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,Perspex/Perspex,wieslawsoltes/Perspex,jkoritzinsky/Perspex,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalo...
tests/Avalonia.Markup.UnitTests/Parsers/ExpressionObserverBuilderTests_Property.cs
tests/Avalonia.Markup.UnitTests/Parsers/ExpressionObserverBuilderTests_Property.cs
using System; using System.Collections.Generic; using System.Reactive.Linq; using System.Reactive.Subjects; using System.Threading.Tasks; using Avalonia.Data; using Avalonia.Markup.Parsers; using Xunit; namespace Avalonia.Markup.UnitTests.Parsers { public class ExpressionObserverBuilderTests_Property { ...
using Avalonia.Data; using Avalonia.Markup.Parsers; using System; using System.Collections.Generic; using System.Reactive.Linq; using System.Text; using System.Threading.Tasks; using Xunit; namespace Avalonia.Markup.UnitTests.Parsers { public class ExpressionObserverBuilderTests_Property { [Fact] ...
mit
C#
63386dc390ec777a7c60f8b75cc119ba9905334f
Add comment and add masking back.
Nabile-Rahmani/osu-framework,RedNesto/osu-framework,Tom94/osu-framework,naoey/osu-framework,peppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,paparony03/osu-framework,peppy/osu-framework,naoey/osu-framework,RedNesto/osu-framework,EVAST9919/osu-framework,default0/o...
osu.Framework/Graphics/Containers/CircularContainer.cs
osu.Framework/Graphics/Containers/CircularContainer.cs
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE using System; namespace osu.Framework.Graphics.Containers { /// <summary> /// A container which come with masking and automatic corner radius...
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE using System; namespace osu.Framework.Graphics.Containers { public class CircularContainer : Container { public override float Corne...
mit
C#
b37f430309526365f8aaa0ee8a84ca895e73c99b
Add ci target
xamarin/XamarinComponents,xamarin/XamarinComponents,xamarin/XamarinComponents,xamarin/XamarinComponents,xamarin/XamarinComponents,xamarin/XamarinComponents
Android/GoogleDagger/build.cake
Android/GoogleDagger/build.cake
#load "../../common.cake" var TARGET = Argument ("t", Argument ("target", "ci")); var DAGGERS_VERSION = "2.13"; var DAGGERS_NUGET_VERSION = DAGGERS_VERSION; var DAGGERS_URL = $"http://central.maven.org/maven2/com/google/dagger/dagger/{DAGGERS_VERSION}/dagger-{DAGGERS_VERSION}.jar"; Task ("externals") .WithCriteria...
#load "../../common.cake" var TARGET = Argument ("t", Argument ("target", "Default")); var DAGGERS_VERSION = "2.13"; var DAGGERS_NUGET_VERSION = DAGGERS_VERSION; var DAGGERS_URL = $"http://central.maven.org/maven2/com/google/dagger/dagger/{DAGGERS_VERSION}/dagger-{DAGGERS_VERSION}.jar"; Task ("externals") .WithCri...
mit
C#
129f82818e8729ee254c16cf84d24d94941975ff
put test
zhongzf/aspnetcore-demo,zhongzf/aspnetcore-demo,zhongzf/aspnetcore-demo
src/aspnetcore-demo/Program.cs
src/aspnetcore-demo/Program.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; namespace aspnetcore_demo { public class Program { public static void Main(string[] args) { ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; namespace aspnetcore_demo { public class Program { public static void Main(string[] args) { ...
mit
C#
485be2b972640a0401ae8cef6d6f891f138f753b
Fix comment explaining test
hubuk/CodeContracts,Microsoft/CodeContracts,sharwell/CodeContracts,SergeyTeplyakov/CodeContracts,danielcweber/CodeContracts,huoxudong125/CodeContracts,SergeyTeplyakov/CodeContracts,Microsoft/CodeContracts,danachap/CodeContracts,ndykman/CodeContracts,ndykman/CodeContracts,sharwell/CodeContracts,Microsoft/CodeContracts,S...
Foxtrot/Tests/Sources/ComplexGeneric.cs
Foxtrot/Tests/Sources/ComplexGeneric.cs
// CodeContracts // // Copyright (c) Microsoft Corporation // // All rights reserved. // // MIT License // // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including wit...
// CodeContracts // // Copyright (c) Microsoft Corporation // // All rights reserved. // // MIT License // // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including wit...
mit
C#
79d2a285c7129d8620921495d248ecc870aca261
Make EthernetDevice compile again and dispose resources better
eyecreate/tapcfg,eyecreate/tapcfg,eyecreate/tapcfg,eyecreate/tapcfg,zhanleewo/tapcfg,zhanleewo/tapcfg,juhovh/tapcfg,juhovh/tapcfg,zhanleewo/tapcfg,juhovh/tapcfg,juhovh/tapcfg,juhovh/tapcfg,eyecreate/tapcfg,zhanleewo/tapcfg,zhanleewo/tapcfg,juhovh/tapcfg
src/bindings/EthernetDevice.cs
src/bindings/EthernetDevice.cs
using System; using System.Runtime.InteropServices; namespace TAPCfg { public class EthernetDevice : IDisposable { private const int MTU = 1522; private IntPtr handle; private bool disposed = false; public EthernetDevice() { handle = tapcfg_init(); } public void Start() { tapcfg_start(handle); ...
using System; using System.Runtime.InteropServices; namespace TAPCfg { public class EthernetDevice : IDisposable { private const int MTU = 1522; private IntPtr handle; public EthernetDevice() { handle = tapcfg_init(); } public void Start() { tapcfg_start(handle); } public byte[] Read() { in...
lgpl-2.1
C#
477bd7fa613c75a6b535324cf59e42bdb7dce669
Change to Resolved attribute
smoogipooo/osu,peppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,peppy/osu-new,UselessToucan/osu,ppy/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu
osu.Game/Overlays/Settings/Sections/General/UpdateSettings.cs
osu.Game/Overlays/Settings/Sections/General/UpdateSettings.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; using osu.Framework.Allocation; using osu.Framework.Platform; using osu.Game.Configuration; using osu.Game.Updater; namespace osu.Game.Overlays.Set...
// 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; using osu.Framework.Allocation; using osu.Framework.Platform; using osu.Game.Configuration; using osu.Game.Updater; namespace osu.Game.Overlays.Set...
mit
C#
9486b0e987a27bd4b2791ba2abf1d43b1438bad8
Remove array allocation from IPAddressExtensions.Snapshot
MaggieTsang/corefx,dotnet-bot/corefx,seanshpark/corefx,cydhaselton/corefx,stone-li/corefx,weltkante/corefx,stephenmichaelf/corefx,krytarowski/corefx,rubo/corefx,krytarowski/corefx,ViktorHofer/corefx,krk/corefx,dhoehna/corefx,axelheer/corefx,lggomez/corefx,Ermiar/corefx,zhenlan/corefx,elijah6/corefx,wtgodbe/corefx,fgrei...
src/Common/src/System/Net/Internals/IPAddressExtensions.cs
src/Common/src/System/Net/Internals/IPAddressExtensions.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Diagnostics; namespace System.Net.Sockets { public static class IPAddressExtensions { ...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Diagnostics; namespace System.Net.Sockets { public static class IPAddressExtensions { ...
mit
C#
576d4eaf8d37bf1d13544a1a55e6047000122c79
Fix missing docs in 'RequestCultureFeature'
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/Microsoft.AspNet.Localization/RequestCultureFeature.cs
src/Microsoft.AspNet.Localization/RequestCultureFeature.cs
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.Framework.Internal; namespace Microsoft.AspNet.Localization { /// <summary> /// Provides the current request's culture infor...
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.Framework.Internal; namespace Microsoft.AspNet.Localization { /// <summary> /// Provides the current request's culture infor...
apache-2.0
C#
034d63ec039bb6942f553390c6e89d204a56b4ef
bump version to 1.5.6 and update copyright string
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#
0ebc6ebf218a9a0a2176d2c6ed13a7a0dec3c21b
Add strategy for glider and a row
sgrassie/gol
temporalcohesion.gol.core/DefaultGridPopulationStrategy.cs
temporalcohesion.gol.core/DefaultGridPopulationStrategy.cs
using System; namespace temporalcohesion.gol.core { public interface IGridPopulationStrategy { Cell[,] Populate(int x, int y); } public class DefaultGridPopulationStrategy : IGridPopulationStrategy { private readonly int _seed; public DefaultGridPopulationStrategy(int see...
using System; namespace temporalcohesion.gol.core { public interface IGridPopulationStrategy { Cell[,] Populate(int x, int y); } public class DefaultGridPopulationStrategy : IGridPopulationStrategy { private readonly int _seed; public DefaultGridPopulationStrategy(int see...
mit
C#
5d88a06eba5b4fb59e7fd470eec9c3a4da69ee93
Implement stat formulas in Memoria.ini
Albeoris/Memoria,Albeoris/Memoria,Albeoris/Memoria,Albeoris/Memoria
Assembly-CSharp/Memoria/Configuration/Access/Battle.cs
Assembly-CSharp/Memoria/Configuration/Access/Battle.cs
using System; namespace Memoria { public sealed partial class Configuration { public static class Battle { public static Boolean NoAutoTrance => Instance._battle.NoAutoTrance; public static Int32 Speed => Math.Max(Instance._battle.Speed, Instance._hacks.BattleSpeed); ...
using System; namespace Memoria { public sealed partial class Configuration { public static class Battle { public static Boolean NoAutoTrance => Instance._battle.NoAutoTrance; public static Int32 Speed => Math.Max(Instance._battle.Speed, Instance._hacks.BattleSpeed); ...
mit
C#
0d427ca705cb7a23aa5d4902b5e19f679c7b322e
Add back using to EventSourceException
krk/coreclr,cshung/coreclr,cshung/coreclr,wtgodbe/coreclr,cshung/coreclr,krk/coreclr,wtgodbe/coreclr,wtgodbe/coreclr,krk/coreclr,poizan42/coreclr,krk/coreclr,krk/coreclr,krk/coreclr,poizan42/coreclr,cshung/coreclr,wtgodbe/coreclr,cshung/coreclr,poizan42/coreclr,poizan42/coreclr,poizan42/coreclr,wtgodbe/coreclr,poizan42...
src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/EventSourceException.cs
src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/EventSourceException.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. #nullable enable using System; using System.Runtime.Serialization; #if ES_BUILD_STANDALONE using Environment = Micr...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable enable using System.Runtime.Serialization; #if ES_BUILD_STANDALONE using Environment = Microsoft.Diagnost...
mit
C#
4a4edc460f339113faa41155bdc9a019f7ee592e
Update JpegSkiaSharpExporter.cs
wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D
src/Core2D/FileWriter/SkiaSharp/JpegSkiaSharpExporter.cs
src/Core2D/FileWriter/SkiaSharp/JpegSkiaSharpExporter.cs
using System; using System.IO; using Core2D.Containers; using Core2D.Interfaces; using Core2D.Renderer; using SkiaSharp; namespace Core2D.FileWriter.SkiaSharpJpeg { /// <summary> /// SkiaSharp jpeg <see cref="IProjectExporter"/> implementation. /// </summary> public sealed class JpegSkiaSharpExporter ...
using System; using System.IO; using Core2D.Containers; using Core2D.Interfaces; using Core2D.Renderer; using SkiaSharp; namespace Core2D.FileWriter.SkiaSharpJpeg { /// <summary> /// SkiaSharp jpeg <see cref="IProjectExporter"/> implementation. /// </summary> public sealed class JpegSkiaSharpExporter ...
mit
C#
31b4904d256f29529e946b2262a3e38af01683d7
Update XmlnsDefinitionsViewModels.cs
wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D
src/Core2D/Serializer/Xaml/XmlnsDefinitionsViewModels.cs
src/Core2D/Serializer/Xaml/XmlnsDefinitionsViewModels.cs
using Core2D.Serializer.Xaml; using Portable.Xaml.Markup; [assembly: XmlnsDefinition(XamlConstants.ViewModelsNamespace, "Core2D.Containers", AssemblyName = "Core2D")] [assembly: XmlnsDefinition(XamlConstants.ViewModelsNamespace, "Core2D.Data", AssemblyName = "Core2D")] [assembly: XmlnsDefinition(XamlConstants.ViewMod...
using Core2D.Serializer.Xaml; using Portable.Xaml.Markup; [assembly: XmlnsDefinition(XamlConstants.ViewModelsNamespace, "Core2D.Containers", AssemblyName = "Core2D.ViewModels")] [assembly: XmlnsDefinition(XamlConstants.ViewModelsNamespace, "Core2D.Data", AssemblyName = "Core2D.ViewModels")] [assembly: XmlnsDefinition...
mit
C#
5b11518c90cef64cd488d561b2c0bc434c9fcfff
Disable Oracle CI databases.
sjp/Schematic,sjp/Schematic,sjp/Schematic,sjp/SJP.Schema,sjp/Schematic
src/SJP.Schematic.Oracle.Tests/Integration/OracleTest.cs
src/SJP.Schematic.Oracle.Tests/Integration/OracleTest.cs
using System.Data; using NUnit.Framework; using SJP.Schematic.Core; using Microsoft.Extensions.Configuration; namespace SJP.Schematic.Oracle.Tests.Integration { internal static class Config { public static IDbConnection Connection { get; } = OracleDialect.CreateConnectionAsync(ConnectionString).GetAwa...
using System.Data; using NUnit.Framework; using SJP.Schematic.Core; using Microsoft.Extensions.Configuration; namespace SJP.Schematic.Oracle.Tests.Integration { internal static class Config { public static IDbConnection Connection { get; } = OracleDialect.CreateConnectionAsync(ConnectionString).GetAwa...
mit
C#
89c40e588ef5aa094a6321835f91c138a574a87e
Handle the exception when parsing the arguments
celeron533/KeepOn
KeepOn/Program.cs
KeepOn/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Windows.Forms; namespace KeepOn { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static v...
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Windows.Forms; namespace KeepOn { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static v...
mit
C#
a873abf987071ead765bb8c458881c2863dfce4c
Add public method stubs for NFigStore
NFig/NFig
NFig/NFigStore.cs
NFig/NFigStore.cs
using System; using System.Collections.Generic; using System.Threading.Tasks; namespace NFig { /// <summary> /// Describes a connection to a data-store for NFig overrides and metadata. Store-providers must inherit from this class. /// </summary> public abstract class NFigStore<TTier, TDataCenter> ...
namespace NFig { /// <summary> /// Describes a connection to a data-store for NFig overrides and metadata. Store-providers must inherit from this class. /// </summary> public abstract class NFigStore<TTier, TDataCenter> where TTier : struct where TDataCenter : struct { // ...
mit
C#
dee819af6a2bf2610b9501a2dc52167c82dc9d5d
Set Stato Squadra - Abilitata la chiamata a OpService
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.FakePersistance.ExternalAPI/Servizi/OPService/SetStatoSquadra.cs
src/backend/SO115App.FakePersistance.ExternalAPI/Servizi/OPService/SetStatoSquadra.cs
using Microsoft.Extensions.Configuration; using Newtonsoft.Json; using SO115App.ExternalAPI.Client; using SO115App.Models.Classi.ServiziEsterni.OPService; using SO115App.Models.Servizi.Infrastruttura.SistemiEsterni.OPService; using System; using System.Net.Http; using System.Text.Json; using System.Threading.Tasks; n...
using Microsoft.Extensions.Configuration; using Newtonsoft.Json; using SO115App.ExternalAPI.Client; using SO115App.Models.Classi.ServiziEsterni.OPService; using SO115App.Models.Servizi.Infrastruttura.SistemiEsterni.OPService; using System; using System.Net.Http; using System.Text.Json; using System.Threading.Tasks; n...
agpl-3.0
C#
be40a5937223449e1353fc7ca54db434670f2ffc
test appHarhor -talles
Arionildo/Quiz-CWI,Arionildo/Quiz-CWI,Arionildo/Quiz-CWI
Quiz/Quiz.Web/App_Start/BundleConfig.cs
Quiz/Quiz.Web/App_Start/BundleConfig.cs
using System.Web; using System.Web.Optimization; namespace Quiz.Web { public class BundleConfig { // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862 public static void RegisterBundles(BundleCollection bundles) { bundles.Add(new ScriptBu...
using System.Web; using System.Web.Optimization; namespace Quiz.Web { public class BundleConfig { // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862 public static void RegisterBundles(BundleCollection bundles) { bundles.Add(new ScriptBu...
mit
C#
394f305d8f2dc97686c738b2633b16e4ca13673f
Fix media type constraint on media controller
GAnatoliy/geochallenger,GAnatoliy/geochallenger
GeoChallenger.Web.Api/Controllers/MediaController.cs
GeoChallenger.Web.Api/Controllers/MediaController.cs
using System.Net; using System.Net.Http; using System.Threading.Tasks; using System.Web.Http; using AutoMapper; using GeoChallenger.Services.Interfaces; using GeoChallenger.Services.Interfaces.DTO.Media; using GeoChallenger.Web.Api.Models.Media; using GeoChallenger.Web.Api.Models.Pois; namespace GeoChallenger.Web.Api...
using System.Net; using System.Net.Http; using System.Threading.Tasks; using System.Web.Http; using AutoMapper; using GeoChallenger.Services.Interfaces; using GeoChallenger.Services.Interfaces.DTO.Media; using GeoChallenger.Web.Api.Models.Media; using GeoChallenger.Web.Api.Models.Pois; namespace GeoChallenger.Web.Api...
mit
C#
0cbb2d419fcce69b19862bb174dfec8cbf78e53d
Update Assembly version to 1.7
ninjanye/SearchExtensions
NinjaNye.SearchExtensions/Properties/AssemblyInfo.cs
NinjaNye.SearchExtensions/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("Ni...
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("Ni...
mit
C#
74d472f96e44d8842cd21078adf1d710b32ef970
Add offset as optional parameter
mstrother/BmpListener
BmpListener/Bgp/IPAddrPrefix.cs
BmpListener/Bgp/IPAddrPrefix.cs
using System; using System.Linq; using System.Net; namespace BmpListener.Bgp { public class IPAddrPrefix { //TODO add offset to ctor public IPAddrPrefix(ArraySegment<byte> data, int offset = 0, AddressFamily afi = AddressFamily.IP) { DecodeFromBytes(data, afi); } ...
using System; using System.Linq; using System.Net; namespace BmpListener.Bgp { public class IPAddrPrefix { public IPAddrPrefix(ArraySegment<byte> data, Bgp.AddressFamily afi = Bgp.AddressFamily.IP) { DecodeFromBytes(data, afi); } public byte Length { get; private s...
mit
C#
52b9894e10022c67c13a4d7ad3a97b0ff7e0157a
Update Currency.cs
NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework
Test/AdventureWorksFunctionalModel/Sales/Currency.cs
Test/AdventureWorksFunctionalModel/Sales/Currency.cs
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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...
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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...
apache-2.0
C#
2bd174261115a2668bfa4aac1a717d76ac349780
fix typo
SoftwareFans/AstroPhotoGallery,SoftwareFans/AstroPhotoGallery,SoftwareFans/AstroPhotoGallery
AstroPhotoGallery/AstroPhotoGallery/Views/Home/About.cshtml
AstroPhotoGallery/AstroPhotoGallery/Views/Home/About.cshtml
@{ ViewBag.Title = "About Astrogallery"; } <div class="container"> <h2>@ViewBag.Title</h2> <br/> <div class="panel panel-default"> <div class="panel-heading"> <div class="row"> <div class="col-sm-12"> <div> <div class="wel...
@{ ViewBag.Title = "About Astrogallery"; } <div class="container"> <h2>@ViewBag.Title</h2> <br/> <div class="panel panel-default"> <div class="panel-heading"> <div class="row"> <div class="col-sm-12"> <div> <div class="wel...
mit
C#
9ecae7d22ea2609c684948b71f7b0a490f4f9bb8
use Singleton services
collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists
src/FilterLists.Services/DependencyInjection/Extensions/ConfigureServicesCollection.cs
src/FilterLists.Services/DependencyInjection/Extensions/ConfigureServicesCollection.cs
using AutoMapper; using FilterLists.Data; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; namespace FilterLists.Services.DependencyInjection.Extensions { public static class Co...
using AutoMapper; using FilterLists.Data; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; namespace FilterLists.Services.DependencyInjection.Extensions { public static class Co...
mit
C#
9ee8df443a4816155ca977352a4a776cb352d8ab
Update Dependency Resolver to include Requisition Service
ndrmc/cats,ndrmc/cats,ndrmc/cats
Web/Infrastructure/NinjectDependencyResolver.cs
Web/Infrastructure/NinjectDependencyResolver.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Cats.Data.UnitWork; using Ninject; using Cats.Services.EarlyWarning; namespace Cats.Infrastructure { public class NinjectDependencyResolver : IDependencyResolver { private IKernel kernel; ...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Cats.Data.UnitWork; using Ninject; using Cats.Services.EarlyWarning; namespace Cats.Infrastructure { public class NinjectDependencyResolver : IDependencyResolver { private IKernel kernel; ...
apache-2.0
C#
a5a2668ec8e0552bc74de2472adea878ba8d969c
Update `DriverOptionsJsonSection` comments
atata-framework/atata-configuration-json
src/Atata.Configuration.Json/DriverOptionsJsonSection.cs
src/Atata.Configuration.Json/DriverOptionsJsonSection.cs
using System.Collections.Generic; using OpenQA.Selenium.Chromium; namespace Atata.Configuration.Json { public class DriverOptionsJsonSection : JsonSection { public string Type { get; set; } public Dictionary<string, OpenQA.Selenium.LogLevel> LoggingPreferences { get; set; } public Js...
using System.Collections.Generic; using OpenQA.Selenium.Chromium; namespace Atata.Configuration.Json { public class DriverOptionsJsonSection : JsonSection { public string Type { get; set; } // Common, but actually used only by Chrome. public Dictionary<string, OpenQA.Selenium.LogLevel...
apache-2.0
C#
20fa53799c0c8236d6eb0840570210a565965ecd
Add GameDataOffset for correct memory access
Figglewatts/LSDStay
LSDStay/Memory.cs
LSDStay/Memory.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Diagnostics; using System.Runtime.InteropServices; namespace LSDStay { public static class Memory { [Flags] public enum ProcessAccessFlags : uint { All = 0x001F0FFF, Terminate...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Diagnostics; using System.Runtime.InteropServices; namespace LSDStay { public static class Memory { [Flags] public static enum ProcessAccessFlags : uint { All = 0x001F0FFF, Te...
mit
C#
7bf07a9b1ccc439f7e86ef4c54a2ddc8431098b7
Fix tests.
exKAZUu/Code2Xml,exKAZUu/Code2Xml,exKAZUu/Code2Xml,exKAZUu/Code2Xml
Code2Xml.Languages.Ruby18.Tests/Ruby18CodeToXmlTest.cs
Code2Xml.Languages.Ruby18.Tests/Ruby18CodeToXmlTest.cs
#region License // Copyright (C) 2011-2012 Kazunori Sakamoto // // 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 // // Unle...
#region License // Copyright (C) 2011-2012 Kazunori Sakamoto // // 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 // // Unle...
apache-2.0
C#
2a575dc6b0ccd793563bae069f1fdb607f5fbeb6
Bump assembly version
darthwalsh/StatusServer,darthwalsh/StatusServer
StatusServer/Properties/AssemblyInfo.cs
StatusServer/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("St...
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("St...
mit
C#
c7535f127c1419866109a9bff60cdeba6515b43d
fix build break due to aspnet\configuration #246
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/Microsoft.AspNet.Server.Kestrel/ServerInformation.cs
src/Microsoft.AspNet.Server.Kestrel/ServerInformation.cs
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using Microsoft.AspNet.Hosting.Server; using Microsoft.Framework.Configuration; namespace Microsoft.Asp...
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using Microsoft.AspNet.Hosting.Server; using Microsoft.Framework.Configuration; namespace Microsoft.Asp...
apache-2.0
C#
f3c322c3b49834f8a9ed1f01ae1288eccbabc3ef
fix disable plugin not working
vebin/Wox,sanbinabu/Wox,sanbinabu/Wox,zlphoenix/Wox,AlexCaranha/Wox,kdar/Wox,jondaniels/Wox,medoni/Wox,yozora-hitagi/Saber,EmuxEvans/Wox,Launchify/Launchify,EmuxEvans/Wox,danisein/Wox,zlphoenix/Wox,Launchify/Launchify,Megasware128/Wox,18098924759/Wox,mika76/Wox,kayone/Wox,mika76/Wox,yozora-hitagi/Saber,sanbinabu/Wox,18...
Wox.Core/Plugin/QueryDispatcher/BaseQueryDispatcher.cs
Wox.Core/Plugin/QueryDispatcher/BaseQueryDispatcher.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading; using Wox.Infrastructure; using Wox.Plugin; using Wox.Core.UserSettings; namespace Wox.Core.Plugin.QueryDispatcher { public abstract class BaseQueryDispatcher : IQueryDispatcher ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading; using Wox.Infrastructure; using Wox.Plugin; namespace Wox.Core.Plugin.QueryDispatcher { public abstract class BaseQueryDispatcher : IQueryDispatcher { protected abstr...
mit
C#
cae4a0e5da6ae175dddb94e31d98ea071bbd40ad
Set default version number in assembly attributes to 0.0.0.0. These are now set in the appveyor.yml instead and are replaced during the build. Having a 0 version number should help highlight any issues in the build too.
autofac/Autofac.Mef
src/Autofac.Integration.Mef/Properties/AssemblyInfo.cs
src/Autofac.Integration.Mef/Properties/AssemblyInfo.cs
using System; using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Security; [assembly: AssemblyTitle("Autofac.Integration.Mef")] [assembly: InternalsVisibleTo("Autofac.Tests.Integration.Mef, PublicKey=0024000004800000940000...
using System; using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Security; [assembly: AssemblyTitle("Autofac.Integration.Mef")] [assembly: InternalsVisibleTo("Autofac.Tests.Integration.Mef, PublicKey=0024000004800000940000...
mit
C#
c100c1400a352e5f255b3e2a66c9614b82c07daf
Test commit
kpnlora/LoRaClient
src/Kpn.LoRa.Api.Stub/src/Kpn.LoRa.Api.Stub/Startup.cs
src/Kpn.LoRa.Api.Stub/src/Kpn.LoRa.Api.Stub/Startup.cs
using Microsoft.AspNet.Builder; using Microsoft.AspNet.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; namespace Kpn.LoRa.Api.Stub { public class Startup { public Startup(IHostingEnvironment env) { ...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Swashbuckle.Application; ...
mit
C#
a12b266aaca81b13626f7ff246770331a9373d49
add basic login endpoint
elerch/SAML2,alexrster/SAML2
src/Owin.Security.Saml/SamlAuthenticationExtensions.cs
src/Owin.Security.Saml/SamlAuthenticationExtensions.cs
using System; using Owin.Security.Saml; namespace Owin { /// <summary> /// Extension methods for using <see cref="SamlAuthenticationMiddleware"/> /// </summary> public static class SamlAuthenticationExtensions { /// <summary> /// Adds the <see cref="SamlAuthenticationMiddleware"/> ...
using System; using Microsoft.Owin.Security; using SAML2.Config; using Owin.Security.Saml; namespace Owin { /// <summary> /// Extension methods for using <see cref="SamlAuthenticationMiddleware"/> /// </summary> public static class SamlAuthenticationExtensions { /// <summary> /// A...
mpl-2.0
C#
15736221d75b782ed83be7ac71a3a12233e948fe
enable app insights in employer finance message handlers webjob
SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice
src/SFA.DAS.EmployerFinance.MessageHandlers/Program.cs
src/SFA.DAS.EmployerFinance.MessageHandlers/Program.cs
using Microsoft.Azure.WebJobs; using System.Threading; using System.Threading.Tasks; using SFA.DAS.AutoConfiguration; using SFA.DAS.EmployerFinance.MessageHandlers.DependencyResolution; using SFA.DAS.EmployerFinance.Startup; using Microsoft.ApplicationInsights.Extensibility; using System.Configuration; namespace SFA....
using Microsoft.Azure.WebJobs; using System.Threading; using System.Threading.Tasks; using SFA.DAS.AutoConfiguration; using SFA.DAS.EmployerFinance.MessageHandlers.DependencyResolution; using SFA.DAS.EmployerFinance.Startup; namespace SFA.DAS.EmployerFinance.MessageHandlers { public class Program { pu...
mit
C#
ff68b9c216f3724468ca546b07ab5b5c02e01e16
Update header of AssemblyInfo
anjdreas/UnitsNet,anjdreas/UnitsNet
UnitsNet/Properties/AssemblyInfo.WindowsRuntimeComponent.cs
UnitsNet/Properties/AssemblyInfo.WindowsRuntimeComponent.cs
// Copyright (c) 2013 Andreas Gullberg Larsen (andreas.larsen84@gmail.com). // https://github.com/angularsen/UnitsNet // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restrictio...
// Copyright © 2007 Andreas Gullberg Larsen (andreas.larsen84@gmail.com). // https://github.com/angularsen/UnitsNet // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction...
mit
C#
a10a6b6913478a5a7f864c13623898a869a75ab5
Fix a bug in ArchiveFile that prevented it from properly detecting GZIP files.
Bloyteg/RWXViewer,Bloyteg/RWXViewer,Bloyteg/RWXViewer,Bloyteg/RWXViewer
RWXViewer/Models/ArchiveFile.cs
RWXViewer/Models/ArchiveFile.cs
using System.ComponentModel; using System.IO; using System.IO.Compression; using System.Linq; namespace RWXViewer.Models { public enum ArchiveType { Zip, Gzip, Unknown } public class ArchiveFile { public static Stream OpenArchiveStream(byte[] streamData) { ...
using System.ComponentModel; using System.IO; using System.IO.Compression; using System.Linq; namespace RWXViewer.Models { public enum ArchiveType { Zip, Gzip, Unknown } public class ArchiveFile { public static Stream OpenArchiveStream(byte[] streamData) { ...
apache-2.0
C#
10d1aae992815039e04b9c256617413731ffc632
Fix code vision order in not-unity projects
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/Rider/CodeInsights/UnityCodeInsightCodeInsightProvider.cs
resharper/resharper-unity/src/Rider/CodeInsights/UnityCodeInsightCodeInsightProvider.cs
using System.Collections.Generic; using JetBrains.Application.UI.Controls.GotoByName; using JetBrains.Platform.RdFramework.Util; using JetBrains.ProjectModel; using JetBrains.ReSharper.Host.Features.CodeInsights.Providers; using JetBrains.Rider.Model; namespace JetBrains.ReSharper.Plugins.Unity.Rider.CodeInsights { ...
using System.Collections.Generic; using JetBrains.Application.UI.Controls.GotoByName; using JetBrains.ProjectModel; using JetBrains.ReSharper.Host.Features.CodeInsights.Providers; using JetBrains.Rider.Model; namespace JetBrains.ReSharper.Plugins.Unity.Rider.CodeInsights { [SolutionComponent] public class...
apache-2.0
C#
7cbc2ce6925ed2400e2a9f213c305094496add51
update ServiceContract AssemblyVersion
gigya/microdot
Gigya.ServiceContract/Properties/AssemblyInfo.cs
Gigya.ServiceContract/Properties/AssemblyInfo.cs
#region Copyright // Copyright 2017 Gigya Inc. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // THI...
#region Copyright // Copyright 2017 Gigya Inc. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // THI...
apache-2.0
C#
28c2b7af2aa06e82a91ff62bbacf1bf512d642ed
Add VerifyEmail property to UserCreateRequest. Closes #152
auth0/auth0.net,jerriep/auth0.net,jerriep/auth0.net,jerriep/auth0.net,auth0/auth0.net
src/Auth0.ManagementApi/Models/UserCreateRequest.cs
src/Auth0.ManagementApi/Models/UserCreateRequest.cs
using Auth0.Core; using Newtonsoft.Json; namespace Auth0.ManagementApi.Models { /// <summary> /// /// </summary> public class UserCreateRequest : UserBase { /// <summary> /// Gets or sets the connection the user belongs to. /// </summary> [JsonProperty("connection"...
using Auth0.Core; using Newtonsoft.Json; namespace Auth0.ManagementApi.Models { /// <summary> /// /// </summary> public class UserCreateRequest : UserBase { /// <summary> /// Gets or sets the connection the user belongs to. /// </summary> [JsonProperty("connectio...
mit
C#
0e49d8b307710217560d21750cb3fb5e2376b859
Bump to v1.4.0
danielwertheim/requester
buildconfig.cake
buildconfig.cake
public class BuildConfig { private const string Version = "1.4.0"; private const bool IsPreRelease = false; public readonly string SrcDir = "./src/"; public readonly string OutDir = "./build/"; public string Target { get; private set; } public string SemVer { get; private set; } pu...
public class BuildConfig { private const string Version = "1.3.2"; private const bool IsPreRelease = false; public readonly string SrcDir = "./src/"; public readonly string OutDir = "./build/"; public string Target { get; private set; } public string SemVer { get; private set; } pu...
mit
C#
15c563d72952414ce693b6c46571793bfe8905c9
update formatting
designsbyjuan/UnityLib
ButtonManager.cs
ButtonManager.cs
using UnityEngine; using UnityEngine.UI; using System.Collections; public class ButtonManager : MonoBehaviour { public ViewManager viewManager; public Button[] buttons; public int fontSizeSelected = 16; public int fontSize = 14; private SkyboxInfo[] skyboxInfo; private Text text; // Use this for initi...
using UnityEngine; using UnityEngine.UI; using System.Collections; public class ButtonManager : MonoBehaviour { public ViewManager viewManager; public Button[] buttons; public int fontSizeSelected = 16; public int fontSize = 14; private SkyboxInfo[] skyboxInfo; private Text text; // Use this for initia...
mit
C#
032cb054cdac434c33fc9b2aaf4067bc04f5fbc0
Set NUGET_PACKAGES environment variable when running MSBuild commands
nkolev92/sdk,nkolev92/sdk
test/Microsoft.NET.TestFramework/Commands/MSBuildTest.cs
test/Microsoft.NET.TestFramework/Commands/MSBuildTest.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 System.Linq; using Microsoft.DotNet.Cli.Utils; namespace Microsoft.NET.TestFramework.Commands { public ...
// 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 System.Linq; using Microsoft.DotNet.Cli.Utils; namespace Microsoft.NET.TestFramework.Commands { public ...
mit
C#
711a4894b962c3ba26c0fc6eef57ddcb6e34cb76
add TODOs
collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists
src/FilterLists.Agent/ListArchiver/DownloadLists.cs
src/FilterLists.Agent/ListArchiver/DownloadLists.cs
using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using System.Threading.Tasks.Dataflow; using FilterLists.Agent.Entities; using MediatR; namespace FilterLists.Agent.ListArchiver { public static class DownloadLists { public class Command : IRequest { ...
using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using System.Threading.Tasks.Dataflow; using FilterLists.Agent.Entities; using MediatR; namespace FilterLists.Agent.ListArchiver { public static class DownloadLists { public class Command : IRequest { ...
mit
C#
c7325f0f775357a51f8d1c9963c825f8fc32cd2a
Add missing load delay
UselessToucan/osu,NeoAdonis/osu,peppy/osu,smoogipooo/osu,peppy/osu,peppy/osu-new,ppy/osu,UselessToucan/osu,ppy/osu,peppy/osu,smoogipoo/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu
osu.Game/Beatmaps/Drawables/UpdateableBeatmapSetCover.cs
osu.Game/Beatmaps/Drawables/UpdateableBeatmapSetCover.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 osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Game.Graphics; namespace osu.Game.Be...
// 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 osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Game.Graphics; namespace osu.Game.Be...
mit
C#
1b385de837642fe3ceda8153c609e8d23ad1f189
Add copyright header
SimplyCodeUK/packer-strategy,SimplyCodeUK/packer-strategy,SimplyCodeUK/packer-strategy
packer-strategy/Helpers/Attributes.cs
packer-strategy/Helpers/Attributes.cs
// // Copyright (c) Simply Code Ltd. All rights reserved. // Licensed under the MIT License. // See LICENSE file in the project root for full license information. // namespace packer_strategy.Helpers { using System; using System.Collections.Generic; using System.Linq; using System.Reflection; ///...
namespace packer_strategy.Helpers { using System; using System.Collections.Generic; using System.Linq; using System.Reflection; /// <summary> An attributes. </summary> public static class Attributes { /// <summary> An Enum extension method that short name. </summary> //...
mit
C#
4eca5f387756b32bfe9cceb156b9c8edd106a4aa
Set size of InputEventTypeFlag to 2 bytes
vbfox/pinvoke,AArnott/pinvoke,jmelosegui/pinvoke
src/Kernel32.Desktop/Kernel32+InputEventTypeFlag.cs
src/Kernel32.Desktop/Kernel32+InputEventTypeFlag.cs
// Copyright (c) to owners found in https://github.com/AArnott/pinvoke/blob/master/COPYRIGHT.md. All rights reserved. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. namespace PInvoke { using System; using System.Runtime.InteropServices; /// <cont...
// Copyright (c) to owners found in https://github.com/AArnott/pinvoke/blob/master/COPYRIGHT.md. All rights reserved. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. namespace PInvoke { using System; using System.Runtime.InteropServices; /// <cont...
mit
C#
0e37dce5c981454c3116ff2d9b082d9a9f47940d
Remove ReadAsAttribute from concrete response
elastic/elasticsearch-net,elastic/elasticsearch-net
src/Nest/XPack/Watcher/PutWatch/PutWatchResponse.cs
src/Nest/XPack/Watcher/PutWatch/PutWatchResponse.cs
using System.Runtime.Serialization; using Elasticsearch.Net; namespace Nest { public class PutWatchResponse : ResponseBase { [DataMember(Name = "created")] public bool Created { get; internal set; } [DataMember(Name = "_id")] public string Id { get; internal set; } [DataMember(Name = "_version")] publ...
using System.Runtime.Serialization; using Elasticsearch.Net; namespace Nest { [ReadAs(typeof(PutWatchResponse))] public class PutWatchResponse : ResponseBase { [DataMember(Name = "created")] public bool Created { get; internal set; } [DataMember(Name = "_id")] public string Id { get; internal set; } [D...
apache-2.0
C#
5d4cf2d3e04dcc75c7835e31d844f6276db32bbf
Add exchange_rate to the Balance Transaction resource
stripe/stripe-dotnet,richardlawley/stripe.net
src/Stripe.net/Entities/StripeBalanceTransaction.cs
src/Stripe.net/Entities/StripeBalanceTransaction.cs
namespace Stripe { using System; using System.Collections.Generic; using Newtonsoft.Json; using Stripe.Infrastructure; public class StripeBalanceTransaction : StripeEntityWithId { [JsonProperty("object")] public string Object { get; set; } [JsonProperty("amount")] ...
namespace Stripe { using System; using System.Collections.Generic; using Newtonsoft.Json; using Stripe.Infrastructure; public class StripeBalanceTransaction : StripeEntityWithId { [JsonProperty("object")] public string Object { get; set; } [JsonProperty("amount")] ...
apache-2.0
C#
22ae9118f081c98beffd3fcbbeae181910b12575
Rename Long to LongField
laicasaane/VFW
Assets/Plugins/Editor/Vexe/GUIs/BaseGUI/Controls/Longs.cs
Assets/Plugins/Editor/Vexe/GUIs/BaseGUI/Controls/Longs.cs
using UnityEngine; namespace Vexe.Editor.GUIs { public abstract partial class BaseGUI { public long LongField(long value) { return LongField(string.Empty, value); } public long LongField(string label, long value) { return LongField(label, value, null); } public long LongField(string label, stri...
using UnityEngine; namespace Vexe.Editor.GUIs { public abstract partial class BaseGUI { public long Long(long value) { return Long(string.Empty, value); } public long Long(string label, long value) { return Long(label, value, null); } public long Long(string label, string tooltip, long value) ...
mit
C#
6d1f3b73efffdb5d58e96eb14d7b4290a15e774f
update link
btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver
BTCPayServer/Views/Stores/UpdateCoinSwitchSettings.cshtml
BTCPayServer/Views/Stores/UpdateCoinSwitchSettings.cshtml
@using Microsoft.AspNetCore.Mvc.Rendering @model UpdateCoinSwitchSettingsViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData.SetActivePageAndTitle(StoreNavPages.Index, "Update Store CoinSwitch Settings"); } <h4>@ViewData["Title"]</h4> <partial name="_StatusMessage" for="StatusMessage"/> <div class=...
@using Microsoft.AspNetCore.Mvc.Rendering @model UpdateCoinSwitchSettingsViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData.SetActivePageAndTitle(StoreNavPages.Index, "Update Store CoinSwitch Settings"); } <h4>@ViewData["Title"]</h4> <partial name="_StatusMessage" for="StatusMessage"/> <div class=...
mit
C#
457a1a381a6e906b2ce7d836ae7d85b28e21cc16
Exclude exception
ucdavis/CRP,ucdavis/CRP,ucdavis/CRP
CRP.Mvc/App_Start/LogConfig.cs
CRP.Mvc/App_Start/LogConfig.cs
using FluentNHibernate.Utils; using Serilog; using Serilog.Exceptions.Destructurers; using SerilogWeb.Classic.Enrichers; namespace CRP.Mvc { public static class LogConfig { private static bool _loggingSetup; /// <summary> /// Configure Application Logging /// </su...
using Serilog; using Serilog.Exceptions.Destructurers; using SerilogWeb.Classic.Enrichers; namespace CRP.Mvc { public static class LogConfig { private static bool _loggingSetup; /// <summary> /// Configure Application Logging /// </summary> public static v...
mit
C#
90d5c48cd0767df4ee37b4e5b6f102c87915d683
add method to collect faults subsuming given faults
maul-esel/ssharp,isse-augsburg/ssharp,isse-augsburg/ssharp,maul-esel/ssharp,isse-augsburg/ssharp,maul-esel/ssharp,isse-augsburg/ssharp,maul-esel/ssharp,isse-augsburg/ssharp
Source/SafetySharp/Modeling/SubsumptionHelper.cs
Source/SafetySharp/Modeling/SubsumptionHelper.cs
namespace SafetySharp.Modeling { using System.Collections.Generic; using Runtime; public static class SubsumptionHelper { private static readonly IDictionary<Fault[], Fault[]> unprocessedSubsumptions = new Dictionary<Fault[], Fault[]>(); private static readonly IDictionary<FaultSet, F...
namespace SafetySharp.Modeling { using System.Collections.Generic; using Runtime; public static class SubsumptionHelper { private static readonly IDictionary<Fault[], Fault[]> unprocessedSubsumptions = new Dictionary<Fault[], Fault[]>(); private static readonly IDictionary<FaultSet, F...
mit
C#
38700dc60cf2af5d3dccc14da52e719336eea77f
Increment build number
emoacht/SnowyImageCopy
Source/SnowyImageCopy/Properties/AssemblyInfo.cs
Source/SnowyImageCopy/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // ass...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // ass...
mit
C#
eb085baac3ea5b65a7ee004f3ff6d632ef36bb90
Fix small spelling mistake
erooijak/oogstplanner,erooijak/oogstplanner,erooijak/oogstplanner,erooijak/oogstplanner
SowingCalendar.Tests/Controllers/CropControllerTest.cs
SowingCalendar.Tests/Controllers/CropControllerTest.cs
using System; using System.Web.Mvc; using NUnit.Framework; using SowingCalendar.Controllers; using SowingCalendar.Models; using SowingCalendar.Repositories; using SowingCalendar.Tests.Fakes; namespace SowingCalendar.Tests.Controllers { [TestFixture] public class CropControllerTest { private CropCo...
using System; using System.Web.Mvc; using NUnit.Framework; using SowingCalendar.Controllers; using SowingCalendar.Models; using SowingCalendar.Repositories; using SowingCalendar.Tests.Fakes; namespace SowingCalendar.Tests.Controllers { [TestFixture] public class CropControllerTest { private CropCo...
mit
C#
61e188f2af35eea7516351f7df8848d13f86f000
Correct test config
NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework
Spa/NakedObjects.Spa.Selenium.Test/tests/TestConfig.cs
Spa/NakedObjects.Spa.Selenium.Test/tests/TestConfig.cs
 namespace NakedObjects.Web.UnitTests.Selenium { public static class TestConfig { //public const string BaseUrl = "http://localhost:49998/"; public const string BaseUrl = "http://nakedobjectstest.azurewebsites.net/"; } }
 namespace NakedObjects.Web.UnitTests.Selenium { public static class TestConfig { public const string BaseUrl = "http://localhost:49998/"; //public const string BaseUrl = "http://nakedobjectstest.azurewebsites.net/"; } }
apache-2.0
C#
da8e211639c7e04e9bd966a166e216bc0ee838fb
Fix null assignment in default constructor
SICU-Stress-Measurement-System/frontend-cs
StressMeasurementSystem/ViewModels/PatientViewModel.cs
StressMeasurementSystem/ViewModels/PatientViewModel.cs
using System.Collections.Generic; using StressMeasurementSystem.Models; namespace StressMeasurementSystem.ViewModels { public class PatientViewModel { private Patient _patient; public PatientViewModel() { _patient = new Patient(); } public PatientViewModel...
using System.Collections.Generic; using StressMeasurementSystem.Models; namespace StressMeasurementSystem.ViewModels { public class PatientViewModel { private Patient _patient; public PatientViewModel() { _patient = null; } public PatientViewModel(Patient ...
apache-2.0
C#
1c1c1a5496faf2cfa46f82a310040442fc1fed4a
test edits
DnDGen/RollGen,Lirusaito/RollGen,DnDGen/RollGen,Lirusaito/RollGen
Tests/Integration/RandomWrappers/RandomWrapperTests.cs
Tests/Integration/RandomWrappers/RandomWrapperTests.cs
using System; using D20Dice.RandomWrappers; using NUnit.Framework; namespace D20Dice.Test.Integration.RandomWrappers { [TestFixture] public class RandomWrapperTests { private const Int32 MAX = 10; private const Int32 TESTRUNS = 1000000; private IRandomWrapper wrapper; [Se...
using System; using D20Dice.RandomWrappers; using NUnit.Framework; namespace D20Dice.Test.Integration.RandomWrappers { [TestFixture] public class RandomWrapperTests { private const Int32 POSMAX = 10; private const Int32 TESTRUNS = 1000000; private IRandomWrapper wrapper; ...
mit
C#
323cae5ca1dc67e43963d111a08eafd6dbf36bad
change version to v3.2.8
shabtaisharon/ds3_net_sdk,SpectraLogic/ds3_net_sdk,shabtaisharon/ds3_net_sdk,SpectraLogic/ds3_net_sdk,RachelTucker/ds3_net_sdk,SpectraLogic/ds3_net_sdk,shabtaisharon/ds3_net_sdk,RachelTucker/ds3_net_sdk,RachelTucker/ds3_net_sdk
VersionInfo.cs
VersionInfo.cs
/* * ****************************************************************************** * Copyright 2014-2016 Spectra Logic 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. A copy of the License i...
/* * ****************************************************************************** * Copyright 2014-2016 Spectra Logic 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. A copy of the License i...
apache-2.0
C#
6d8be10439c612dca0028957426ba702d7edfb86
Bump the version number
adz21c/miles
VersionInfo.cs
VersionInfo.cs
using System.Reflection; // 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: AssemblyCompany("Adam Burton")] [assembly: AssemblyProduct("Miles")] [assembly: AssemblyCopyri...
using System.Reflection; // 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: AssemblyCompany("Adam Burton")] [assembly: AssemblyProduct("Miles")] [assembly: AssemblyCopyri...
apache-2.0
C#
d5fd59b954ecff7125b5111c4f19fa74328301b4
Remove editorState from model before persisting
kgiszewski/Archetype,kjac/Archetype,Nicholas-Westby/Archetype,kipusoep/Archetype,imulus/Archetype,imulus/Archetype,kipusoep/Archetype,kipusoep/Archetype,kjac/Archetype,kgiszewski/Archetype,Nicholas-Westby/Archetype,Nicholas-Westby/Archetype,kjac/Archetype,kgiszewski/Archetype,imulus/Archetype
app/Umbraco/Umbraco.Archetype/Models/ArchetypeModel.cs
app/Umbraco/Umbraco.Archetype/Models/ArchetypeModel.cs
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using Newtonsoft.Json; using Newtonsoft.Json.Linq; namespace Archetype.Models { [JsonObject] public class ArchetypeModel : IEnumerable<ArchetypeFieldsetModel> { [JsonProperty("fieldsets")] public I...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using Newtonsoft.Json; using Newtonsoft.Json.Linq; namespace Archetype.Models { [JsonObject] public class ArchetypeModel : IEnumerable<ArchetypeFieldsetModel> { [JsonProperty("fieldsets")] public I...
mit
C#
e51a179342294a38c6a83670d1b1ed21b3c00d4e
fix wrong exception type
HarshPoint/HarshPoint,the-ress/HarshPoint,NaseUkolyCZ/HarshPoint
HarshPoint/Error.cs
HarshPoint/Error.cs
using System; using System.Globalization; namespace HarshPoint { internal static class Error { public static Exception ArgumentNull(String paramName) { return new ArgumentNullException(paramName); } public static Exception InvalidOperation(String message) {...
using System; using System.Globalization; namespace HarshPoint { internal static class Error { public static Exception ArgumentNull(String paramName) { return new ArgumentNullException(paramName); } public static Exception InvalidOperation(String message) {...
bsd-2-clause
C#
72ecfb918e8920332b43a90b21ccc3dff61658a6
fix code review issue.
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/Controls/LockScreen/PinLockScreenViewModel.cs
WalletWasabi.Gui/Controls/LockScreen/PinLockScreenViewModel.cs
using WalletWasabi.Gui.ViewModels; using WalletWasabi.Helpers; using System; using System.Reactive; using ReactiveUI; using System.Reactive.Disposables; using System.Reactive.Linq; using WalletWasabi.Gui.Helpers; namespace WalletWasabi.Gui.Controls.LockScreen { public class PinLockScreenViewModel : ViewModelBase, ILo...
using WalletWasabi.Gui.ViewModels; using WalletWasabi.Helpers; using System; using System.Reactive; using ReactiveUI; using System.Reactive.Disposables; using System.Reactive.Linq; using WalletWasabi.Gui.Helpers; namespace WalletWasabi.Gui.Controls.LockScreen { public class PinLockScreenViewModel : ViewModelBase, ILo...
mit
C#
70b5c01d994b25660f969e2694ffd514ff5fd06d
Remove dead code.
EamonNerbonne/ExpressionToCode,asd-and-Rizzo/ExpressionToCode
ExpressionToCodeLib/PAssert.cs
ExpressionToCodeLib/PAssert.cs
using System; using System.Linq.Expressions; namespace ExpressionToCodeLib { public static class PAssert { [Obsolete("Prefer PAssert.That: IsTrue is provided for compatibility with PowerAssert.NET")] public static void IsTrue(Expression<Func<bool>> assertion) { Th...
#if true using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; namespace ExpressionToCodeLib { public static class PAssert { [Obsolete("Prefer PAssert.That: IsTrue is provided for compatibility with PowerAssert.NET")] public static void Is...
apache-2.0
C#
7a315cd408fa0e753d54b596c537c7bd9b44613a
Bump version to 2.2.0.0
InfinniPlatform/InfinniPlatform,InfinniPlatform/InfinniPlatform,InfinniPlatform/InfinniPlatform
Files/Packaging/GlobalAssemblyInfo.cs
Files/Packaging/GlobalAssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Infinnity Solutions")] [assembly: AssemblyProduct("InfinniPlatform")] [assembly: AssemblyCopyright("Copyright © Infinnity Solutions 2017")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible...
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Infinnity Solutions")] [assembly: AssemblyProduct("InfinniPlatform")] [assembly: AssemblyCopyright("Copyright © Infinnity Solutions 2017")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible...
agpl-3.0
C#