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
1b36d4393c8c8533fe31bb6408240aa65f5ecb5c
Update Drivers/ManagePersonsPermissionCheckerTaskDisplayDriver.cs
Lombiq/Orchard-Training-Demo-Module,Lombiq/Orchard-Training-Demo-Module,Lombiq/Orchard-Training-Demo-Module
Drivers/ManagePersonsPermissionCheckerTaskDisplayDriver.cs
Drivers/ManagePersonsPermissionCheckerTaskDisplayDriver.cs
using Lombiq.TrainingDemo.Activities; using Lombiq.TrainingDemo.ViewModels; using OrchardCore.Workflows.Display; using OrchardCore.Workflows.Models; namespace Lombiq.TrainingDemo.Drivers; // ActivityDisplayDriver is specifically for implementing workflow tasks. It performs a simple mapping of a ManagePersonsPermissio...
using Lombiq.TrainingDemo.Activities; using Lombiq.TrainingDemo.ViewModels; using OrchardCore.Workflows.Display; using OrchardCore.Workflows.Models; namespace Lombiq.TrainingDemo.Drivers; // ActivityDisplayDriver is specifically for implementing workflow tasks. It performs a simple mapping of a ManagePersonsPermissio...
bsd-3-clause
C#
d7f829efefa5867dbe0c8bacb2c0290071e5813d
update the version number
mikebarker/Plethora.NET
src/AssemblyInfo.Common.cs
src/AssemblyInfo.Common.cs
//------------------------------------------------------------------------------ // Copyright 2007 The Plethora Project. // All rights reserved. // // Refer to the Licence.txt distributed with this file for licencing terms. //----------------------------------------------------------------------------...
//------------------------------------------------------------------------------ // Copyright 2007 The Plethora Project. // All rights reserved. // // Refer to the Licence.txt distributed with this file for licencing terms. //----------------------------------------------------------------------------...
mit
C#
78370f4032c369e307b9e5e139fd0a12a1ef833f
update license
NDark/ndinfrastructure,NDark/ndinfrastructure
Unity/Timer/CountDownTimer.cs
Unity/Timer/CountDownTimer.cs
/** MIT License Copyright (c) 2017 - 2018 NDark Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish...
/** MIT License Copyright (c) 2017 NDark Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distr...
mit
C#
f58c68747e8bccbc2b8e06984594897cab8fa04a
Update Mod.cs
Nuterra/Nuterra,maritaria/terratech-mod,Exund/nuterra
src/Nuterra/Sylver/Mod.cs
src/Nuterra/Sylver/Mod.cs
using System; using Nuterra; using UnityEngine; namespace Sylver { [Mod] public class Mod : TerraTechMod { public static GameObject BehaviorHolder; public override string Name => "Sylver's Mod"; public override string Description => "A mod made by Sylver/Exund"; public override void Load() { base.Lo...
using System; using Nuterra; using UnityEngine; namespace Sylver { [Mod] public class Mod : TerraTechMod { public static GameObject BehaviorHolder; public override string Name => "Sylver's Mod"; public override string Description => "A mod made by Sylver/Exund"; public override void Load() { base.Lo...
mit
C#
a5eb2551cc95b22a4e347baabf11a4a92b6876e3
Update code style
peopleware/net-ppwcode-vernacular-nhibernate
src/III.Tests/IntegrationTests/BaseRepositoryTests.cs
src/III.Tests/IntegrationTests/BaseRepositoryTests.cs
// Copyright 2020-2022 by PeopleWare n.v.. // 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 agreed to in ...
// Copyright 2020 by PeopleWare n.v.. // 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 agreed to in writi...
apache-2.0
C#
beace595c810492109bd79d71446656d63cb019d
Resolve #5
bcanseco/magnanibot
src/Magnanibot.Discord/Extensions/SystemExtensions.cs
src/Magnanibot.Discord/Extensions/SystemExtensions.cs
using System.Collections.Generic; using System.Globalization; using System.Linq; using CommonBotLibrary.Services.Models; using RedditSharp.Things; namespace Magnanibot.Extensions { public static class SystemExtensions { public static string KDisplay(this int number) => number > 999 ...
using System.Collections.Generic; using System.Globalization; using System.Linq; using CommonBotLibrary.Services.Models; using RedditSharp.Things; namespace Magnanibot.Extensions { public static class SystemExtensions { public static string KDisplay(this int number) => number > 999 ...
mit
C#
7d9a6297f972f4e52ccb965f6cf7c44d31da16c4
Fix debug string
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/Microsoft.AspNet.Mvc.Core/ReflectedActionDescriptor.cs
src/Microsoft.AspNet.Mvc.Core/ReflectedActionDescriptor.cs
using System.Diagnostics; using System.Reflection; namespace Microsoft.AspNet.Mvc { [DebuggerDisplay("CA {ControllerName}:{Name}(RC-{RouteConstraints.Count})")] public class ReflectedActionDescriptor : ActionDescriptor { public string ControllerName { get { ...
using System; using System.Diagnostics; using System.Reflection; namespace Microsoft.AspNet.Mvc { [DebuggerDisplay("CA {Path}:{Name}(RC-{RouteConstraints.Count})")] public class ReflectedActionDescriptor : ActionDescriptor { public string ControllerName { get { ...
apache-2.0
C#
e46467ae3c9ece2d866695e880559d2d7b41d046
fix HttpRequesterMiddleware does not call next bug (#830)
TomPallister/Ocelot,TomPallister/Ocelot,geffzhang/Ocelot,geffzhang/Ocelot
src/Ocelot/Requester/Middleware/HttpRequesterMiddleware.cs
src/Ocelot/Requester/Middleware/HttpRequesterMiddleware.cs
using Ocelot.Logging; using Ocelot.Middleware; using System.Threading.Tasks; namespace Ocelot.Requester.Middleware { public class HttpRequesterMiddleware : OcelotMiddleware { private readonly OcelotRequestDelegate _next; private readonly IHttpRequester _requester; public Htt...
using Ocelot.Logging; using Ocelot.Middleware; using System.Threading.Tasks; namespace Ocelot.Requester.Middleware { public class HttpRequesterMiddleware : OcelotMiddleware { private readonly OcelotRequestDelegate _next; private readonly IHttpRequester _requester; public Htt...
mit
C#
591acefded4f8db4f858e74c54350cdebd5d8939
Update ServiceEventsInstaller.cs
HighwayFramework/Highway.Onramp.Services
src/Templates.Service/Installers/ServiceEventsInstaller.cs
src/Templates.Service/Installers/ServiceEventsInstaller.cs
// [[Highway.Onramp.Services]] // Copyright 2013 Timothy J. Rayburn // // 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 // // Unl...
// [[Highway.Onramp.Services]] // Copyright 2013 Timothy J. Rayburn // // 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 // // Unl...
mit
C#
acfca90930cb7fecea5ad48f2d6738407e1ef180
Add Fluent assertions unit test sample
fredatgithub/UsefulFunctions
FluentAssertionsUnitTests/FluentUnitTestFunctionsString.cs
FluentAssertionsUnitTests/FluentUnitTestFunctionsString.cs
/* The MIT License(MIT) Copyright(c) 2015 Freddy Juhel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, pub...
/* The MIT License(MIT) Copyright(c) 2015 Freddy Juhel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, pub...
mit
C#
644021383639d599a978e6170ae3db7c5d787015
Fix order of games when calculating ratings
Variares/ELOSYSTEM,richardadalton/EloRate,richardadalton/EloRate,Variares/ELOSYSTEM
src/EloWeb/Models/Games.cs
src/EloWeb/Models/Games.cs
using System.Collections.Generic; using System.Linq; namespace EloWeb.Models { public class Games { public enum GamesSortOrder { MostRecentFirst = 1, MostRecentLast = 2 } private static List<Game> _games = new List<Game>(); public static void I...
using System.Collections.Generic; using System.Linq; namespace EloWeb.Models { public class Games { public enum GamesSortOrder { MostRecentFirst = 1, MostRecentLast = 2 } private static List<Game> _games = new List<Game>(); public static void I...
unlicense
C#
a75271d0dbbb251c4348f7c7c39d02032b438bdc
add scene query buffer size to sphere pointer inspector
killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity
Assets/MixedRealityToolkit.SDK/Inspectors/UX/Pointers/SpherePointerInspector.cs
Assets/MixedRealityToolkit.SDK/Inspectors/UX/Pointers/SpherePointerInspector.cs
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using Microsoft.MixedReality.Toolkit.Input.Editor; using Microsoft.MixedReality.Toolkit.Input; using UnityEditor; namespace Microsoft.MixedReality.Toolkit.Input { ...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using Microsoft.MixedReality.Toolkit.Input.Editor; using Microsoft.MixedReality.Toolkit.Input; using UnityEditor; namespace Microsoft.MixedReality.Toolkit.Input { ...
mit
C#
7869cd0921ed45c5e3191075890d9aa31af79c54
修改版本。
RabbitTeam/WeiXinSDK
Rabbit.WeiXin/SDK/Rabbit.WeiXin/Properties/AssemblyInfo.cs
Rabbit.WeiXin/SDK/Rabbit.WeiXin/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; // 有关程序集的常规信息通过以下 // 特性集控制。更改这些特性值可修改 // 与程序集关联的信息。 [assembly: AssemblyTitle("Rabbit.WeiXin")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Rabbit.WeiXin")] [assembly...
using System.Reflection; using System.Runtime.InteropServices; // 有关程序集的常规信息通过以下 // 特性集控制。更改这些特性值可修改 // 与程序集关联的信息。 [assembly: AssemblyTitle("Rabbit.WeiXin")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Rabbit.WeiXin")] [assembly...
apache-2.0
C#
3c1f5a700760eed462a2aad8f6bdef9d1c766c8f
Fix text cell not being editable
mono/xwt,lytico/xwt,TheBrainTech/xwt,antmicro/xwt,hwthomas/xwt
Xwt.Gtk/Xwt.GtkBackend.CellViews/CustomCellRendererText.cs
Xwt.Gtk/Xwt.GtkBackend.CellViews/CustomCellRendererText.cs
// // CustomCellRendererText.cs // // Author: // Lluis Sanchez <lluis@xamarin.com> // // Copyright (c) 2013 Xamarin Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without re...
// // CustomCellRendererText.cs // // Author: // Lluis Sanchez <lluis@xamarin.com> // // Copyright (c) 2013 Xamarin Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without re...
mit
C#
d0a90e67b9af7fe21630bbe0ddf0148b6c6628dc
Fix after rebase
cezarypiatek/Tellurium,cezarypiatek/Tellurium,cezarypiatek/MaintainableSelenium,cezarypiatek/MaintainableSelenium,cezarypiatek/MaintainableSelenium,cezarypiatek/Tellurium
Src/VisualAssertions/Screenshots/VisualAssertionsConfig.cs
Src/VisualAssertions/Screenshots/VisualAssertionsConfig.cs
using System; using Tellurium.VisualAssertions.Screenshots.Service; using Tellurium.VisualAssertions.Screenshots.Service.ComparisonStrategies; namespace Tellurium.VisualAssertions.Screenshots { public class VisualAssertionsConfig { public string BrowserName { get; set; } public string ProjectN...
using System; using Tellurium.VisualAssertions.Screenshots.Service; namespace Tellurium.VisualAssertions.Screenshots { public class VisualAssertionsConfig { public string BrowserName { get; set; } public string ProjectName { get; set; } public string ScreenshotCategory { get; set; } ...
mit
C#
7f1e911bc8bd94634746e5286378ad20dc22524c
Update ItemPickupEvent.cs
Notulp/Pluton,Notulp/Pluton
Pluton/Events/ItemPickupEvent.cs
Pluton/Events/ItemPickupEvent.cs
using System; namespace Pluton.Events { public class ItemPickupEvent : CountedInstance { private InvItem _item; private Player _player; private BaseEntity.RPCMessage _msg; private CollectibleEntity _ent; public ItemPickupEvent(CollectibleEntity ce, BaseEntity.RPCMessag...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Pluton.Events { public class ItemPickupEvent { private InvItem _item; private Player _player; private BaseEntity.RPCMessage _msg; private CollectibleEntity _ent; public Item...
mit
C#
108ad288c2963afa516d7f75b1c1be6f8eb6af9b
Update editor formats again
hicknhack-software/semantic-colorizer
RoslynColorizer/EditorFormats.cs
RoslynColorizer/EditorFormats.cs
using System.ComponentModel.Composition; using System.Windows.Media; using Microsoft.VisualStudio.Text.Classification; using Microsoft.VisualStudio.Utilities; namespace RoslynColorizer { [Export(typeof(EditorFormatDefinition))] [ClassificationType(ClassificationTypeNames = Constants.ParameterFormat)] [Name(Cons...
using System.ComponentModel.Composition; using System.Windows.Media; using Microsoft.VisualStudio.Text.Classification; using Microsoft.VisualStudio.Utilities; namespace RoslynColorizer { [Export(typeof(EditorFormatDefinition))] [ClassificationType(ClassificationTypeNames = Constants.ParameterFormat)] [Name(Cons...
apache-2.0
C#
b4c65fe12a05c21814c6964fe4ab475f8957d6ad
Update src/Umbraco.Core/Migrations/Upgrade/V_8_10_0/AddPropertyTypeLabelOnTopColumn.cs
marcemarc/Umbraco-CMS,dawoe/Umbraco-CMS,KevinJump/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,arknu/Umbraco-CMS,dawoe/Umbraco-CMS,abjerner/Umbraco-CMS,robertjf/Umbraco-CMS,leekelleher/Umbraco-CMS,arknu/Umbraco-CMS,KevinJump/Umbraco-CMS,madsoulswe/Umbraco-CMS,umbraco/Umbraco-CMS,robertjf/Umbraco-CMS,dawoe/Umbraco-CMS,Kevi...
src/Umbraco.Core/Migrations/Upgrade/V_8_10_0/AddPropertyTypeLabelOnTopColumn.cs
src/Umbraco.Core/Migrations/Upgrade/V_8_10_0/AddPropertyTypeLabelOnTopColumn.cs
using System.Linq; using Umbraco.Core.Persistence.Dtos; namespace Umbraco.Core.Migrations.Upgrade.V_8_10_0 { public class AddPropertyTypeLabelOnTopColumn : MigrationBase { public AddPropertyTypeLabelOnTopColumn(IMigrationContext context) : base(context) { } public overrid...
using System.Linq; using Umbraco.Core.Persistence.Dtos; namespace Umbraco.Core.Migrations.Upgrade.V_8_6_0 { public class AddPropertyTypeLabelOnTopColumn : MigrationBase { public AddPropertyTypeLabelOnTopColumn(IMigrationContext context) : base(context) { } public override...
mit
C#
2827e28ba62e8582bc5c21dcf8891d2deca1959b
Fix issue with tagHelper that requries field or property to target for
diolive/cache,diolive/cache
DioLive.Cache/src/DioLive.Cache.WebUI/Views/Shared/_SelectLanguagePartial.cshtml
DioLive.Cache/src/DioLive.Cache.WebUI/Views/Shared/_SelectLanguagePartial.cshtml
@using System.Globalization @using Microsoft.AspNetCore.Builder @using Microsoft.AspNetCore.Http @using Microsoft.AspNetCore.Localization @using Microsoft.Extensions.Options @inject IViewLocalizer Localizer @inject IOptions<RequestLocalizationOptions> LocOptions @{ var cultureItems = new SelectList(LocOptions.Va...
@using System.Globalization @using Microsoft.AspNetCore.Builder @using Microsoft.AspNetCore.Http @using Microsoft.AspNetCore.Localization @using Microsoft.Extensions.Options @inject IViewLocalizer Localizer @inject IOptions<RequestLocalizationOptions> LocOptions @{ var cultureItems = new SelectList(LocOptions.Va...
mit
C#
8b544916df64a5828a7611df4a591eb96aaa7e49
Fix error
wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D
tests/Core2D.ViewModels.UnitTests/Style/ArrowStyleTests.cs
tests/Core2D.ViewModels.UnitTests/Style/ArrowStyleTests.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 Core2D.Interfaces; using Core2D.Style; using Xunit; namespace Core2D.Style.UnitTests { public class ArrowStyleTests { private readonly IFact...
// 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 Core2D.Style; using Xunit; namespace Core2D.Style.UnitTests { public class ArrowStyleTests { private readonly IFactory _factory = new Factor...
mit
C#
3bd72be798d1d5858ce5f9c5af5739c653b65e12
Correct AssemblyProduct name from Security to Credentials
alansav/credentials
Credentials/src/Credentials/Properties/AssemblyInfo.cs
Credentials/src/Credentials/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: AssemblyConfigurat...
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: AssemblyConfigurat...
mit
C#
e7316b4fc72db69a3f7c1094bb26bb24a4a2fbbd
Strengthen data type of JsonIntegerLiteralSyntax.IntegerToken.
PenguinF/sandra-three
Eutherion/Shared/Text/Json/JsonIntegerLiteralSyntax.cs
Eutherion/Shared/Text/Json/JsonIntegerLiteralSyntax.cs
#region License /********************************************************************************* * JsonIntegerLiteralSyntax.cs * * Copyright (c) 2004-2019 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 /********************************************************************************* * JsonIntegerLiteralSyntax.cs * * Copyright (c) 2004-2019 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#
953001651c0ffb9863ca68ea6a3d87ccc181da95
Add typed OpenChannel to IActorBoundGateway.
SaladbowlCreative/Akka.Interfaced,SaladLab/Akka.Interfaced,SaladbowlCreative/Akka.Interfaced,SaladLab/Akka.Interfaced
plugins/Akka.Interfaced.SlimServer/Interface/IActorBoundGateway.cs
plugins/Akka.Interfaced.SlimServer/Interface/IActorBoundGateway.cs
using System.Threading.Tasks; using Akka.Actor; namespace Akka.Interfaced.SlimServer { public interface IActorBoundGateway : IInterfacedActor { Task<string> OpenChannel(InterfacedActorRef actor, ActorBindingFlags bindingFlags = 0); Task<string> OpenChannel(IActorRef actor, TaggedType[] types, ...
using System.Threading.Tasks; using Akka.Actor; namespace Akka.Interfaced.SlimServer { public interface IActorBoundGateway : IInterfacedActor { Task<string> OpenChannel(IActorRef actor, TaggedType[] types, ActorBindingFlags bindingFlags = 0); } }
mit
C#
c616969033f138f00448650434455868fa4c546b
Update ResourceSteamFontSourceExample.cs
asposewords/Aspose_Words_NET,aspose-words/Aspose.Words-for-.NET,aspose-words/Aspose.Words-for-.NET,asposewords/Aspose_Words_NET,asposewords/Aspose_Words_NET,aspose-words/Aspose.Words-for-.NET,asposewords/Aspose_Words_NET,aspose-words/Aspose.Words-for-.NET
Examples/CSharp/Rendering-Printing/ResourceSteamFontSourceExample.cs
Examples/CSharp/Rendering-Printing/ResourceSteamFontSourceExample.cs
using Aspose.Words.Fonts; using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace Aspose.Words.Examples.CSharp.Rendering_and_Printing { // ExStart:ResourceSteamFontSourceExampl...
using Aspose.Words.Fonts; using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace Aspose.Words.Examples.CSharp.Rendering_Printing { // ExStart:ResourceSteamFontSourceExample ...
mit
C#
d3d61cc54f4f9cc2a589d3e5d8d57bda2d6a1fe6
Drop the Xamarin copyright after the CLA has been signed to contribute this back to Microsoft
erichedstrom/azure-mobile-services,dcristoloveanu/azure-mobile-services,paulbatum/azure-mobile-services,paulbatum/azure-mobile-services,intellitour/azure-mobile-services,soninaren/azure-mobile-services,intellitour/azure-mobile-services,Reminouche/azure-mobile-services,jeremy50dj/azure-mobile-services,marianosz/azure-mo...
sdk/xamarin/ios/Microsoft.WindowsAzure.Mobile.Ext.iOS/Properties/AssemblyInfo.cs
sdk/xamarin/ios/Microsoft.WindowsAzure.Mobile.Ext.iOS/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("Mi...
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("Mi...
apache-2.0
C#
bdfb7a681167ddd108dd4dd2bd3e358ab3ae764f
Rename refactor
Weingartner/SolidworksAddinFramework
SolidworksAddinFramework/ObservableExceptionalExtensions.cs
SolidworksAddinFramework/ObservableExceptionalExtensions.cs
using System; using System.Collections.Generic; using System.Linq; using System.Reactive.Linq; using System.Text; using System.Threading.Tasks; using System.Reactive.Threading.Tasks; using System.Threading; using LanguageExt; using ReactiveUI; using SolidworksAddinFramework.Wpf; using Weingartner.Exceptional; using We...
using System; using System.Collections.Generic; using System.Linq; using System.Reactive.Linq; using System.Text; using System.Threading.Tasks; using System.Reactive.Threading.Tasks; using System.Threading; using LanguageExt; using ReactiveUI; using SolidworksAddinFramework.Wpf; using Weingartner.Exceptional; using We...
mit
C#
f8e9cd70a879d07176dca4928080a9330e346aee
Fix MVC caching key and issue with concurrent dictionary usage
kamsar/Synthesis,roberthardy/Synthesis
Source/Synthesis.Mvc/Pipelines/GetModel/GetFromSynthesis.cs
Source/Synthesis.Mvc/Pipelines/GetModel/GetFromSynthesis.cs
using System; using System.Collections.Concurrent; using Sitecore.Diagnostics; using Sitecore.Mvc.Pipelines.Response.GetModel; using Sitecore.Mvc.Presentation; using Synthesis.Mvc.Pipelines.GetRenderer; using Synthesis.Mvc.Utility; namespace Synthesis.Mvc.Pipelines.GetModel { public class GetFromSynthesis : GetMod...
using System; using System.Collections.Concurrent; using Sitecore.Diagnostics; using Sitecore.Mvc.Pipelines.Response.GetModel; using Sitecore.Mvc.Presentation; using Synthesis.Mvc.Pipelines.GetRenderer; using Synthesis.Mvc.Utility; namespace Synthesis.Mvc.Pipelines.GetModel { public class GetFromSynthesis : GetMod...
mit
C#
ef01a07496968140ca20e96f66e48e8750154212
Increment the version to 1.3.0.0
ladimolnar/BitcoinDatabaseGenerator
Sources/BitcoinDatabaseGenerator/Properties/AssemblyInfo.cs
Sources/BitcoinDatabaseGenerator/Properties/AssemblyInfo.cs
//----------------------------------------------------------------------- // <copyright file="AssemblyInfo.cs"> // Copyright © Ladislau Molnar. All rights reserved. // </copyright> //----------------------------------------------------------------------- using System; using System.Reflection; using System.Runtime.Int...
//----------------------------------------------------------------------- // <copyright file="AssemblyInfo.cs"> // Copyright © Ladislau Molnar. All rights reserved. // </copyright> //----------------------------------------------------------------------- using System; using System.Reflection; using System.Runtime.Int...
apache-2.0
C#
205d2689ad1360ac30fddd4e18b0e74677601dd3
make readonly.
mgoertz-msft/roslyn,wvdd007/roslyn,sharwell/roslyn,aelij/roslyn,MichalStrehovsky/roslyn,jasonmalinowski/roslyn,tannergooding/roslyn,tannergooding/roslyn,sharwell/roslyn,gafter/roslyn,jasonmalinowski/roslyn,AmadeusW/roslyn,KirillOsenkov/roslyn,panopticoncentral/roslyn,tmat/roslyn,brettfo/roslyn,diryboy/roslyn,davkean/ro...
src/Features/CSharp/Portable/UseIndexOrRangeOperator/MemberInfo.cs
src/Features/CSharp/Portable/UseIndexOrRangeOperator/MemberInfo.cs
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.CodeAnalysis.CSharp.UseIndexOrRangeOperator { internal readonly struct MemberInfo { /// <summary> /// The Length/...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.CodeAnalysis.CSharp.UseIndexOrRangeOperator { internal struct MemberInfo { /// <summary> /// The Length/Count pro...
mit
C#
9802f515d286ede9e10eaaff49a40d12e646364c
Enable disable audio tests
EVAST9919/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework
osu.Framework.Tests/Visual/Audio/TestSceneLoopingSample.cs
osu.Framework.Tests/Visual/Audio/TestSceneLoopingSample.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.Audio.Sample; using osu.Framework.Audio.Track; namespace osu.Framework.Tests.Visual.Audio { ...
// 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.Audio.Sample; using osu.Framework.Audio.Track; namespace osu.Framework.Tests.Visual.Audio { ...
mit
C#
2f29ca1d4e539a15120eb61bff7747d5d9f95171
fix error when setting file is corrupted.
dsplaisted/NuGetPackageExplorer,campersau/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer,BreeeZe/NuGetPackageExplorer,NuGetPackageExplorer/NuGetPackageExplorer
Core/Utility/XmlUtility.cs
Core/Utility/XmlUtility.cs
using System; using System.IO; using System.Xml.Linq; namespace NuGet { internal static class XmlUtility { internal static XDocument GetOrCreateDocument(XName rootName, IFileSystem fileSystem, string path) { if (fileSystem.FileExists(path)) { ...
using System.IO; using System.Xml.Linq; namespace NuGet { internal static class XmlUtility { internal static XDocument GetOrCreateDocument(XName rootName, IFileSystem fileSystem, string path) { if (fileSystem.FileExists(path)) { try ...
mit
C#
e1c63a8f4e6814bc3c13683e9238fad7389efb5d
Update version to 0.11.19-beta
askheaves/Its.Cqrs,askheaves/Its.Cqrs,commonsensesoftware/Its.Cqrs,commonsensesoftware/Its.Cqrs,askheaves/Its.Cqrs,commonsensesoftware/Its.Cqrs
AssemblyInfoVersion.cs
AssemblyInfoVersion.cs
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Reflection; // Don't edit this version. [assembly: AssemblyVersion("0.11.5.0")] // Edit these for each release + update dependencies in .nuspec ...
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Reflection; // Don't edit this version. [assembly: AssemblyVersion("0.11.5.0")] // Edit these for each release + update dependencies in .nuspec ...
mit
C#
d27c98b46cd4904b1a062a8f27a479f914557dc9
Add more semantic names.
acaly/LightDX
LightDx/InputAttributes.cs
LightDx/InputAttributes.cs
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; namespace LightDx.InputAttributes { public abstract class InputAttribute : Attribute { internal abstract IntPtr SemanticName { get; } intern...
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; namespace LightDx.InputAttributes { public abstract class InputAttribute : Attribute { internal abstract IntPtr SemanticName { get; } intern...
mit
C#
3aa5908de8d0bd691c5a5839130e3ce66fabe107
Remove unused using statement
ppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,peppy/osu,peppy/osu
osu.Game/Graphics/Containers/IExpandingContainer.cs
osu.Game/Graphics/Containers/IExpandingContainer.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.Allocation; using osu.Framework.Graphics.Containers; namespace osu.Game.Graphics.Containers { /// <summary> /// A target expanding container ...
// 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.Allocation; using osu.Framework.Graphics.Containers; using osu.Game.Overlays; namespace osu.Game.Graphics.Containers { /// <summary> /// A ta...
mit
C#
0097adea73ec9d84284cd9cf7093f2af7b4cd61c
Update copyright
awesome-inc/FluentAssertions.Autofac
SolutionInfo.cs
SolutionInfo.cs
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyDescription("FluentAssertions.Autofac")] [assembly: AssemblyProduct("FluentAssertions.Autofac")] #if DEBUG [assembly: AssemblyConfiguration("Debug")] #else [assembly: AssemblyConfiguration("Release")] #endif [assembly: Asse...
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyDescription("FluentAssertions.Autofac")] [assembly: AssemblyProduct("FluentAssertions.Autofac")] #if DEBUG [assembly: AssemblyConfiguration("Debug")] #else [assembly: AssemblyConfiguration("Release")] #endif [assembly: Ass...
mit
C#
1555833d859cf9076ea4ff3ec1a8d14360921b17
bump ver
AntonyCorbett/OnlyT,AntonyCorbett/OnlyT
SolutionInfo.cs
SolutionInfo.cs
using System.Reflection; using System.Resources; [assembly: AssemblyCompany("SoundBox")] [assembly: AssemblyProduct("OnlyT")] [assembly: AssemblyCopyright("Copyright © 2019, 2021 Antony Corbett")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: NeutralResourcesLanguage("en-GB")] [assemb...
using System.Reflection; using System.Resources; [assembly: AssemblyCompany("SoundBox")] [assembly: AssemblyProduct("OnlyT")] [assembly: AssemblyCopyright("Copyright © 2019, 2021 Antony Corbett")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: NeutralResourcesLanguage("en-GB")] [assemb...
mit
C#
16d39ebf19961173959d44fe79869a2debc9bdd0
Add helper .ctr to CCRepeatForever that takes a variable number of Actions and creates a CCSequence out of them internally.
zmaruo/CocosSharp,TukekeSoft/CocosSharp,zmaruo/CocosSharp,TukekeSoft/CocosSharp,haithemaraissia/CocosSharp,hig-ag/CocosSharp,MSylvia/CocosSharp,hig-ag/CocosSharp,netonjm/CocosSharp,haithemaraissia/CocosSharp,netonjm/CocosSharp,mono/CocosSharp,mono/CocosSharp,MSylvia/CocosSharp
cocos2d/actions/action_intervals/CCRepeatForever.cs
cocos2d/actions/action_intervals/CCRepeatForever.cs
using System.Diagnostics; namespace CocosSharp { public class CCRepeatForever : CCActionInterval { protected CCActionInterval m_pInnerAction; #region Constructors public CCActionInterval InnerAction { get { return m_pInnerAction; } set { m_pInnerAction...
using System.Diagnostics; namespace CocosSharp { public class CCRepeatForever : CCActionInterval { protected CCActionInterval m_pInnerAction; #region Constructors public CCActionInterval InnerAction { get { return m_pInnerAction; } set { m_pInnerAction...
mit
C#
a459490137c3d13878648dfbf08fe9fd408e763e
remove unused using
marihachi/CrystalResonanceForDesktop
src/Program.cs
src/Program.cs
using CrystalResonanceDesktop.Utility; using DxLibDLL; using DxSharp; using DxSharp.Data; using DxSharp.Data.Enum; using DxSharp.Storage; using DxSharp.Utility; using System; using System.Drawing; using System.Windows.Forms; namespace CrystalResonanceDesktop { class Program { static void Main(string[] args) { ...
using CrystalResonanceDesktop.Utility; using DxLibDLL; using DxSharp; using DxSharp.Data; using DxSharp.Data.Enum; using DxSharp.Storage; using DxSharp.Utility; using System; using System.Drawing; using System.Linq; using System.Windows.Forms; namespace CrystalResonanceDesktop { class Program { static void Main(s...
mit
C#
0bc159ed7042b2f06ee2220c6d4972f98a884bd0
introduce path param from Get2
zhangyuan/UFO-API,zhangyuan/UFO-API,zhangyuan/UFO-API
test/ProductFacts.cs
test/ProductFacts.cs
using System.Linq; using System.Net; using System.Net.Http; using Newtonsoft.Json; using Xunit; namespace test { public class ProductFacts : TestBase { private HttpResponseMessage httpResponseMessage; [Fact] public void ShouldReturnOk() { var httpResponseMessage = ...
using System.Linq; using System.Net; using System.Net.Http; using Newtonsoft.Json; using Xunit; namespace test { public class ProductFacts : TestBase { private HttpResponseMessage httpResponseMessage; [Fact] public void ShouldReturnOk() { var httpResponseMessage = ...
mit
C#
787b3ba17422cbacaad75f129d57c2a19fec6b27
Update registration view and registration model to include additional fields. Tested with connection string to RDS. [#135473125]
RevProject-1/UI,RevProject-1/UI,RevProject-1/UI
ClientManagement.UI/ClientManagement.UI.MVC/Views/Home/Index.cshtml
ClientManagement.UI/ClientManagement.UI.MVC/Views/Home/Index.cshtml
@{ ViewBag.Title = "Home"; } <div class="jumbotron"> <h1>Client Manager</h1> <p class="lead">ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.</p> <p><a href="http://asp.net" class="btn btn-primary btn-lg">Learn more &raquo;</a></p> </div...
@{ ViewBag.Title = "Home"; } <div class="jumbotron"> <h1>ASP.NET</h1> <p class="lead">ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.</p> <p><a href="http://asp.net" class="btn btn-primary btn-lg">Learn more &raquo;</a></p> </div> <div...
mit
C#
fee9e05501c43ab1ee36047aefdf1c74447710f1
Rename argument name
faygan/r-ceptor
Core/R-ceptor.Core/ServiceProxy/Provider/IRequestContextProvider.cs
Core/R-ceptor.Core/ServiceProxy/Provider/IRequestContextProvider.cs
using System.Reflection; using Rceptor.Core.ServiceClient; namespace Rceptor.Core.ServiceProxy.Provider { public interface IRequestContextProvider { RestRequestContext GetRequestContext(object[] callArguments, MethodInfo invokeMethod = null); } }
using System.Reflection; using Rceptor.Core.ServiceClient; namespace Rceptor.Core.ServiceProxy.Provider { public interface IRequestContextProvider { RestRequestContext GetRequestContext(object[] arguments, MethodInfo invokeMethod = null); } }
mit
C#
428805ccbfc4205a908aee2df8b4e1e5217f461a
Fix misspelling
Wyamio/Wyam.Web,Wyamio/Wyam.Web
input/recipes/blog/pipelines.cshtml
input/recipes/blog/pipelines.cshtml
Order: 4 Description: The pipelines involved in the recipe and what they do. --- <p>The following pipelines are defined for this recipe and are executed in the order below. You can extend or adjust the recipe by <a href="/docs/concepts/recipes#pipelines">modifying these pipelines and/or by creating new pipelines</a>.</...
Order: 4 Description: The pipelines involved in the recipe and what they do. --- <p>The following pipelines are defined for this recipe and are executed in the order below. You can extend or adjust the recipe by <a href="/docs/concepts/recipes#pipelines">modiying these pipelines and/or by creating new pipelines</a>.</p...
mit
C#
93b2d81780b2711cff41f2170651e1c20ff9e516
Add ColumnMapping documentation (closes #16)
felipebz/ndapi
Ndapi/ColumnMapping.cs
Ndapi/ColumnMapping.cs
using Ndapi.Core.Handles; using Ndapi.Enums; namespace Ndapi { /// <summary> /// Represents a column mapping for lists of values. /// </summary> public class ColumnMapping : NdapiObject { /// <summary> /// Creates a column mapping. /// </summary> /// <param name="lo...
using Ndapi.Core.Handles; using Ndapi.Enums; namespace Ndapi { public class ColumnMapping : NdapiObject { public ColumnMapping(FormModule module, string name) { Create(name, ObjectType.ColumnMapping, module); } internal ColumnMapping(ObjectSafeHandle handle) : base...
mit
C#
244843445f6dc3f5cf0a795c10d53b46cc4cff09
Remove unused using
picklesdoc/pickles,magicmonty/pickles,dirkrombauts/pickles,dirkrombauts/pickles,magicmonty/pickles,picklesdoc/pickles,magicmonty/pickles,picklesdoc/pickles,dirkrombauts/pickles,blorgbeard/pickles,irfanah/pickles,blorgbeard/pickles,dirkrombauts/pickles,irfanah/pickles,picklesdoc/pickles,blorgbeard/pickles,ludwigjossieau...
src/Pickles/Pickles.Test/WhenParsingTestResultFiles.cs
src/Pickles/Pickles.Test/WhenParsingTestResultFiles.cs
using System; using System.IO.Abstractions.TestingHelpers; using System.Linq; using System.Reflection; using Autofac; using StreamReader = System.IO.StreamReader; namespace PicklesDoc.Pickles.Test { public abstract class WhenParsingTestResultFiles<TResults> : BaseFixture { private readonly string[] r...
using System; using System.IO.Abstractions; using System.IO.Abstractions.TestingHelpers; using System.Linq; using System.Reflection; using Autofac; using StreamReader = System.IO.StreamReader; namespace PicklesDoc.Pickles.Test { public abstract class WhenParsingTestResultFiles<TResults> : BaseFixture { ...
apache-2.0
C#
65224dac7abed2d4d5de49ccbcf15254369edd6d
load all wallets.
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/Controls/WalletExplorer/WalletExplorerViewModel.cs
WalletWasabi.Gui/Controls/WalletExplorer/WalletExplorerViewModel.cs
using AvalonStudio.Extensibility; using AvalonStudio.MVVM; using AvalonStudio.Shell; using ReactiveUI; using Splat; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Composition; using System.Linq; using WalletWasabi.Gui.ViewModels; using WalletWasabi.Wallets; namespace WalletWasabi....
using AvalonStudio.Extensibility; using AvalonStudio.MVVM; using AvalonStudio.Shell; using ReactiveUI; using Splat; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Composition; using System.IO; using System.Linq; using WalletWasabi.Gui.ViewModels; using WalletWasabi.Wallets; namesp...
mit
C#
b7ff7504f16abb0843dd2a9ae4a88d6c02716b58
write additional parameters to textbox
kreuzhofer/SignalR.ConnectionManager,kreuzhofer/SignalR.ConnectionManager
SignalR.ConnectionManager/HubTest.UWP/MainPage.xaml.cs
SignalR.ConnectionManager/HubTest.UWP/MainPage.xaml.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices.WindowsRuntime; using Windows.Foundation; using Windows.Foundation.Collections; using Windows.UI.Core; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows....
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices.WindowsRuntime; using Windows.Foundation; using Windows.Foundation.Collections; using Windows.UI.Core; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows....
mit
C#
5ea7eebf0546ccae8f293e6451c9eca8ce8dd5cb
Allow setting UpdateAssemblyInfo from GitVersionAttribute
nuke-build/nuke,nuke-build/nuke,nuke-build/nuke,nuke-build/nuke
source/Nuke.Common/Tools/GitVersion/GitVersionAttribute.cs
source/Nuke.Common/Tools/GitVersion/GitVersionAttribute.cs
// Copyright 2019 Maintainers of NUKE. // Distributed under the MIT License. // https://github.com/nuke-build/nuke/blob/master/LICENSE using System; using System.Linq; using System.Reflection; using JetBrains.Annotations; using Nuke.Common.Execution; using Nuke.Common.Tooling; namespace Nuke.Common.Tools.GitVersion ...
// Copyright 2019 Maintainers of NUKE. // Distributed under the MIT License. // https://github.com/nuke-build/nuke/blob/master/LICENSE using System; using System.Linq; using System.Reflection; using JetBrains.Annotations; using Nuke.Common.Execution; using Nuke.Common.Tooling; namespace Nuke.Common.Tools.GitVersion ...
mit
C#
2601700c861bce70e34bd7fa4d58f4f7f9d25ccf
Bump to version 6.3.0
MindscapeHQ/raygun4net,MindscapeHQ/raygun4net,MindscapeHQ/raygun4net
Mindscape.Raygun4Net.AspNetCore/Properties/AssemblyVersionInfo.cs
Mindscape.Raygun4Net.AspNetCore/Properties/AssemblyVersionInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can defaul...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can defaul...
mit
C#
1e940c85feb06e15f306d77213d5a808f92be329
fix name of interest field
bhaveshmaniya/Habitat,nurunquebec/Habitat,GoranHalvarsson/Habitat,GoranHalvarsson/Habitat,ClearPeopleLtd/Habitat,nurunquebec/Habitat,bhaveshmaniya/Habitat,ClearPeopleLtd/Habitat,zyq524/Habitat,zyq524/Habitat
src/Domain/Accounts/code/Views/Accounts/EditProfile.cshtml
src/Domain/Accounts/code/Views/Accounts/EditProfile.cshtml
@using System.Web.Mvc.Html @using Habitat.Accounts.Texts @using Habitat.Framework.SitecoreExtensions.HtmlHelpers @using Sitecore.Mvc.Configuration @model Habitat.Accounts.Models.EditProfile @using (Html.BeginRouteForm(MvcSettings.SitecoreRouteName, FormMethod.Post)) { @Html.Sitecore().FormHandler() <div class...
@using System.Web.Mvc.Html @using Habitat.Accounts.Texts @using Habitat.Framework.SitecoreExtensions.HtmlHelpers @using Sitecore.Mvc.Configuration @model Habitat.Accounts.Models.EditProfile @using (Html.BeginRouteForm(MvcSettings.SitecoreRouteName, FormMethod.Post)) { @Html.Sitecore().FormHandler() <div class...
apache-2.0
C#
16fc08eb1b8b1cf9b4e617952f68d3359a3eb02b
fix issue with designer
Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns
TCC.Core/UI/TemplateSelectors/SkillTemplateSelector.cs
TCC.Core/UI/TemplateSelectors/SkillTemplateSelector.cs
using System.ComponentModel; using System.Windows; using System.Windows.Controls; using TCC.Data; namespace TCC.UI.TemplateSelectors { public class SkillTemplateSelector : DataTemplateSelector { public DataTemplate RoundTemplate { get; set; } public DataTemplate SquareTemplate { get; set; } ...
using System.Windows; using System.Windows.Controls; using TCC.Data; namespace TCC.UI.TemplateSelectors { public class SkillTemplateSelector : DataTemplateSelector { public DataTemplate RoundTemplate { get; set; } public DataTemplate SquareTemplate { get; set; } public override DataTe...
mit
C#
b92a73a1741f38ba910b3c770c2ddf3055c1e7c4
add incrementing counter
Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen
Dashen.Tests/Scratchpad.cs
Dashen.Tests/Scratchpad.cs
using System; using System.Diagnostics; using System.Threading; using Dashen.Components; using Xunit; namespace Dashen.Tests { public class Scratchpad { [Fact] public void When_running_the_dashboard() { if (Debugger.IsAttached == false) { return; } var dashboard = DashboardBuilder.Create(new ...
using System; using System.Diagnostics; using System.Threading; using Dashen.Components; using Xunit; namespace Dashen.Tests { public class Scratchpad { [Fact] public void When_running_the_dashboard() { if (Debugger.IsAttached == false) { return; } var dashboard = DashboardBuilder.Create(new ...
lgpl-2.1
C#
9e28040206f71ed8bfcee34f3d981afbdad55f54
Remove no longer needed display name fallback
arkivverket/arkade5,arkivverket/arkade5,arkivverket/arkade5
src/Arkivverket.Arkade.Core/Base/ArkadeTestNameProvider.cs
src/Arkivverket.Arkade.Core/Base/ArkadeTestNameProvider.cs
using Arkivverket.Arkade.Core.Resources; using Arkivverket.Arkade.Core.Util; namespace Arkivverket.Arkade.Core.Base { public static class ArkadeTestNameProvider { public static string GetDisplayName(IArkadeTest arkadeTest) { TestId testId = arkadeTest.GetId(); string te...
using Arkivverket.Arkade.Core.Base.Addml.Processes; using Arkivverket.Arkade.Core.Resources; using Arkivverket.Arkade.Core.Util; namespace Arkivverket.Arkade.Core.Base { public static class ArkadeTestNameProvider { public static string GetDisplayName(IArkadeTest arkadeTest) { TestId...
agpl-3.0
C#
2513a050ad092e836563468e750b6eeedd51c5ef
Add ResourceParameters.None
Glimpse/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,zanetdev/Glimpse.Prototype,zanetdev/Glimpse.Prototype,pranavkm/Glimpse.Prototype,zanetdev/Glimpse.Prototype,pranavkm/Glimpse.Prototype,Glimpse/Glimpse.Prototype,zanetdev/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,peter...
src/Glimpse.Server.Web/Framework/ResourceParameters.cs
src/Glimpse.Server.Web/Framework/ResourceParameters.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Glimpse.Server.Web { public class ResourceParameters : List<ResourceParameter> { public ResourceParameters() { } public static ResourceParameters None { get; } = new ResourceParamet...
using System.Collections.Generic; using System.Linq; using System.Text; namespace Glimpse.Server.Web { public class ResourceParameters : List<ResourceParameter> { public ResourceParameters() { } public ResourceParameters(params ResourceParameter[] resourceParameters) { ...
mit
C#
46561e88533ca41d628c2644ad2910180c33019a
Add Fast ToMessage extension to convert byte[] to runtime Message<T>
timba/NServiceKit,ZocDoc/ServiceStack,NServiceKit/NServiceKit,MindTouch/NServiceKit,NServiceKit/NServiceKit,nataren/NServiceKit,nataren/NServiceKit,ZocDoc/ServiceStack,MindTouch/NServiceKit,meebey/ServiceStack,timba/NServiceKit,timba/NServiceKit,NServiceKit/NServiceKit,ZocDoc/ServiceStack,nataren/NServiceKit,timba/NSer...
src/ServiceStack.Common/Messaging/MessageExtensions.cs
src/ServiceStack.Common/Messaging/MessageExtensions.cs
using System; using System.Collections.Generic; using System.Reflection; using System.Threading; using ServiceStack.Text; namespace ServiceStack.Messaging { public static class MessageExtensions { public static string ToString(byte[] bytes) { #if !SILVERLIGHT return System.Text.Encoding.UTF8.Get...
using ServiceStack.Text; namespace ServiceStack.Messaging { public static class MessageExtensions { public static string ToString(byte[] bytes) { #if !SILVERLIGHT return System.Text.Encoding.UTF8.GetString(bytes); #else return System.Text.Encoding.UTF8.GetString(bytes, 0, bytes.Length)...
bsd-3-clause
C#
c730b1d9616ada695f0f6b281e211e16619945a8
bump version part 2
Lone-Coder/letsencrypt-win-simple
letsencrypt-win-simple/Properties/AssemblyInfo.cs
letsencrypt-win-simple/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("Let's Encrypt Simple Windows Client")] [...
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("Let's Encrypt Simple Windows Client")] [...
apache-2.0
C#
902bdcf35cfcfef7555fbc12ba45a9f64fa6c71e
Use post for check linked items api method
dawoe/umbraco-nexu,dawoe/umbraco-nexu,dawoe/umbraco-nexu
src/Our.Umbraco.Nexu.Web/Api/RelationCheckApiController.cs
src/Our.Umbraco.Nexu.Web/Api/RelationCheckApiController.cs
namespace Our.Umbraco.Nexu.Web.Api { using System; using System.Collections.Generic; using System.Net; using System.Net.Http; using System.Web.Http; using global::Umbraco.Core; using global::Umbraco.Web.Editors; using Our.Umbraco.Nexu.Common.Interfaces.Services; /// <summary> ...
namespace Our.Umbraco.Nexu.Web.Api { using System; using System.Collections.Generic; using System.Net; using System.Net.Http; using System.Web.Http; using global::Umbraco.Core; using global::Umbraco.Web.Editors; using Our.Umbraco.Nexu.Common.Interfaces.Services; /// <summary> ...
mit
C#
44e11b158660f6f9b5143012fcedc57dff325ae2
Fix CGPDFStreamCopyData signature. Fixes #4404.
cwensley/maccore,mono/maccore,jorik041/maccore
src/CoreGraphics/CGPDFStream.cs
src/CoreGraphics/CGPDFStream.cs
// // CGPDFStream.cs: Implements the managed CGPDFStream binding // // Authors: Miguel de Icaza // // Copyright 2010 Novell, Inc // // 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 wi...
// // CGPDFStream.cs: Implements the managed CGPDFStream binding // // Authors: Miguel de Icaza // // Copyright 2010 Novell, Inc // // 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 wi...
apache-2.0
C#
a6efe4696f32f103c454ee62d1987e72d7944b3c
Update BaseTest.cs
vivet/GoogleApi
GoogleApi.Test/BaseTest.cs
GoogleApi.Test/BaseTest.cs
namespace GoogleApi.Test { public abstract class BaseTest { public string _apiKey = ""; // your API key goes here... } }
namespace GoogleApi.Test { public abstract class BaseTest { public string _apiKey = "AIzaSyCh-Kr-9s7LSJPLflpk8k2BvLjEetm0laE"; // your API key goes here... } }
mit
C#
f580a2ca8bcbcc6fb8d6657d90c09c9c48bb33f2
Add Scripts section and Bootstrap styling.
alastairs/cgowebsite,alastairs/cgowebsite
src/CGO.Web/Areas/Admin/Views/Shared/_Layout.cshtml
src/CGO.Web/Areas/Admin/Views/Shared/_Layout.cshtml
<!DOCTYPE html> <html lang="en"> <head> <meta name="viewport" content="width=device-width" /> <title>@ViewBag.Title</title> @Styles.Render("~/Content/bootstrap.min.css") </head> <body> <div> @RenderBody() </div> @RenderSection("Scripts", false) </bo...
<!DOCTYPE html> <html lang="en"> <head> <meta name="viewport" content="width=device-width" /> <title>@ViewBag.Title</title> </head> <body> <div> @RenderBody() </div> </body> </html>
mit
C#
0d34ed64742716ee10ce7b6e14a67bfdc7cef9d6
Update #283 - Root issue that was preventing EF6 from working
sorenhl/Glimpse,dudzon/Glimpse,rho24/Glimpse,sorenhl/Glimpse,paynecrl97/Glimpse,gabrielweyer/Glimpse,sorenhl/Glimpse,flcdrg/Glimpse,dudzon/Glimpse,Glimpse/Glimpse,Glimpse/Glimpse,flcdrg/Glimpse,Glimpse/Glimpse,codevlabs/Glimpse,elkingtonmcb/Glimpse,SusanaL/Glimpse,SusanaL/Glimpse,gabrielweyer/Glimpse,rho24/Glimpse,elki...
source/Glimpse.EF/AlternateType/GlimpseDbDependencyResolver.cs
source/Glimpse.EF/AlternateType/GlimpseDbDependencyResolver.cs
using System; using System.Data.Entity.Config; using System.Data.Entity.Core.Common; using System.Data.Entity.Infrastructure; using System.Reflection; namespace Glimpse.EF.AlternateType { public class GlimpseDbDependencyResolver : IDbDependencyResolver { private readonly IDbDependencyResolver rootRe...
using System; using System.Data.Entity.Config; using System.Data.Entity.Core.Common; using System.Data.Entity.Infrastructure; using System.Reflection; namespace Glimpse.EF.AlternateType { public class GlimpseDbDependencyResolver : IDbDependencyResolver { private readonly IDbDependencyResolver rootRe...
apache-2.0
C#
aba31705d7ab0a85f66cf909e00527329fbfb8e3
Make the stream position label visible again
ixfalia/banshee,stsundermann/banshee,arfbtwn/banshee,arfbtwn/banshee,dufoli/banshee,GNOME/banshee,babycaseny/banshee,dufoli/banshee,GNOME/banshee,babycaseny/banshee,ixfalia/banshee,Carbenium/banshee,dufoli/banshee,ixfalia/banshee,stsundermann/banshee,Carbenium/banshee,Carbenium/banshee,arfbtwn/banshee,babycaseny/banshe...
src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/SeekDialog.cs
src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/SeekDialog.cs
// // SeekDialog.cs // // Author: // Aaron Bockover <abockover@novell.com> // Gabriel Burt <gburt@novell.com> // // Copyright 2006-2010 Novell, Inc. // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal ...
// // SeekDialog.cs // // Author: // Aaron Bockover <abockover@novell.com> // Gabriel Burt <gburt@novell.com> // // Copyright 2006-2010 Novell, Inc. // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal ...
mit
C#
68cc8ce92c034c4d54172ff5dc1db277d5afd0af
Add model to change email view
SkillsFundingAgency/das-employerusers,SkillsFundingAgency/das-employerusers,SkillsFundingAgency/das-employerusers
src/SFA.DAS.EmployerUsers.Web/Views/Account/ChangeEmail.cshtml
src/SFA.DAS.EmployerUsers.Web/Views/Account/ChangeEmail.cshtml
 @model SFA.DAS.EmployerUsers.Web.Models.ChangeEmailViewModel @{ ViewBag.PageID = "page-change-email-address"; ViewBag.Title = "Change your email address"; } @if (!Model.Valid) { <div class="error-summary" role="group" tabindex="-1"> <h1 class="heading-medium error-summary-heading" id=...
@{ ViewBag.PageID = "page-change-email-address"; ViewBag.Title = "Change your email address"; } @if (!Model.Valid) { <div class="error-summary" role="group" tabindex="-1"> <h1 class="heading-medium error-summary-heading" id="error-summary-heading"> Errors to fix </h1> <p>Check the...
mit
C#
e86885776bedf6035ea4d81c48c76b8b9d85b779
use FakeSpecimenContext.
jwChung/Experimentalism,jwChung/Experimentalism
test/Experiment.AutoFixtureUnitTest/TestFixtureAdapterTest.cs
test/Experiment.AutoFixtureUnitTest/TestFixtureAdapterTest.cs
using System; using Ploeh.AutoFixture; using Ploeh.AutoFixture.Kernel; using Xunit; namespace Jwc.Experiment { public class TestFixtureAdapterTest { [Fact] public void SutIsTestFixture() { var sut = new TestFixtureAdapter(); Assert.IsAssignableFrom<ITestFixture>...
using System; using Ploeh.AutoFixture; using Ploeh.AutoFixture.Kernel; using Xunit; namespace Jwc.Experiment { public class TestFixtureAdapterTest { [Fact] public void SutIsTestFixture() { var sut = new TestFixtureAdapter(); Assert.IsAssignableFrom<ITestFixture>...
mit
C#
36fe807d5a947bd9a338dacf87742bc01b0d55a2
Fix some flaky OData JSON tests using string comparison
lewischeng-ms/WebApi,congysu/WebApi,chimpinano/WebApi,scz2011/WebApi,scz2011/WebApi,yonglehou/WebApi,LianwMS/WebApi,yonglehou/WebApi,abkmr/WebApi,lungisam/WebApi,lungisam/WebApi,abkmr/WebApi,lewischeng-ms/WebApi,congysu/WebApi,LianwMS/WebApi,chimpinano/WebApi
test/System.Web.Http.OData.Test/OData/Formatter/JsonAssert.cs
test/System.Web.Http.OData.Test/OData/Formatter/JsonAssert.cs
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. using Microsoft.TestCommon; using Newtonsoft.Json.Linq; namespace System.Web.Http.OData.Formatter { internal static class JsonAssert { public static void Equal(string e...
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. using System.Linq; using Microsoft.TestCommon; namespace System.Web.Http.OData.Formatter { internal static class JsonAssert { public static void Equal(string expected, ...
mit
C#
36927feac1021f18d4ca9485582ccce98878befe
Fix asmdef analysers working on external files
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/AsmDef/Feature/Services/Daemon/AsmDefProblemAnalyzer.cs
resharper/resharper-unity/src/AsmDef/Feature/Services/Daemon/AsmDefProblemAnalyzer.cs
using JetBrains.ReSharper.Feature.Services.Daemon; using JetBrains.ReSharper.Plugins.Unity.JsonNew.Psi; using JetBrains.ReSharper.Plugins.Unity.ProjectModel; using JetBrains.ReSharper.Psi; using JetBrains.ReSharper.Psi.Tree; namespace JetBrains.ReSharper.Plugins.Unity.AsmDef.Feature.Services.Daemon { public abstr...
using JetBrains.ReSharper.Feature.Services.Daemon; using JetBrains.ReSharper.Plugins.Unity.JsonNew.Psi; using JetBrains.ReSharper.Plugins.Unity.ProjectModel; using JetBrains.ReSharper.Psi; using JetBrains.ReSharper.Psi.Tree; namespace JetBrains.ReSharper.Plugins.Unity.AsmDef.Feature.Services.Daemon { public abstr...
apache-2.0
C#
3f7d7927ee141c019e802e3c7a2c82cb407e2316
Change tests for inlines
christophano/markdig,lunet-io/markdig
src/Testamina.Markdig.Benchmarks/Program.cs
src/Testamina.Markdig.Benchmarks/Program.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Running; using Textamina.Markdig.Formatters; using Textamina.Markdig.Parsers; namespace Testamina.Markd...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Running; using Textamina.Markdig.Formatters; using Textamina.Markdig.Parsers; namespace Testamina.Markd...
bsd-2-clause
C#
99d983499f5412febf07aafe2bf03872319b412b
fix errors related to old sdk
AvaloniaUI/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,grokys/Perspex,jkoritzinsky/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,jkoritzinsky/Avalonia...
src/Windows/Avalonia.Win32/Win32NativeToManagedMenuExporter.cs
src/Windows/Avalonia.Win32/Win32NativeToManagedMenuExporter.cs
using System.Collections.Generic; using Avalonia.Controls; using Avalonia.Controls.Platform; #nullable enable namespace Avalonia.Win32 { internal class Win32NativeToManagedMenuExporter : INativeMenuExporter { private NativeMenu? _nativeMenu; public void SetNativeMenu(NativeMenu? nativeMenu) ...
using System.Collections.Generic; using Avalonia.Controls; using Avalonia.Controls.Platform; #nullable enable namespace Avalonia.Win32 { internal class Win32NativeToManagedMenuExporter : INativeMenuExporter { private NativeMenu? _nativeMenu; public void SetNativeMenu(NativeMenu? nativeMenu) ...
mit
C#
fe9d8ad943a3ce8b1cced2269aa0f536e0ec81fc
Remove revision number
mdavid/SuperSocket,mdavid/SuperSocket,mdavid/SuperSocket
SocketServiceCore/GlobalAssemblyInfo.cs
SocketServiceCore/GlobalAssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // [assembly: AssemblyVersion("0.0.1.0")] ...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // [assembly: AssemblyVersion("0.0.1.53845"...
apache-2.0
C#
f3cb4d9f896d9e8670694f54cffba4ac246acec7
Add expiration time
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Gui/TransactionNotifier.cs
WalletWasabi.Gui/TransactionNotifier.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Runtime.InteropServices; using WalletWasabi.Logging; using WalletWasabi.Models; namespace WalletWasabi.Gui { internal class TransactionNotifier { public readonly static TransactionNotifier Current = new Transa...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Runtime.InteropServices; using WalletWasabi.Logging; using WalletWasabi.Models; namespace WalletWasabi.Gui { internal class TransactionNotifier { public readonly static TransactionNotifier Current = new Transa...
mit
C#
1fb228a96b279b7f1a6988d8653890653f789b87
add debug info, because doesn't find '¥n'
kheiakiyama/speech-eng-functions
SentenceScraping/run.csx
SentenceScraping/run.csx
#r "System.Configuration" #r "System.Collections" #r "System.Linq.Expressions" #load "../QuestionEntity.csx" using System.Net; using System.Net.Http; using System.Configuration; using System.Linq; using Newtonsoft.Json; using Microsoft.Azure; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.T...
#r "System.Configuration" #r "System.Collections" #r "System.Linq.Expressions" #load "../QuestionEntity.csx" using System.Net; using System.Net.Http; using System.Configuration; using System.Linq; using Newtonsoft.Json; using Microsoft.Azure; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.T...
mit
C#
d37a1b432b76adf38b7228a63c2c15113362591a
Update AssemblyInfo.cs
Jack109/MahApps.Metro,Evangelink/MahApps.Metro,batzen/MahApps.Metro,p76984275/MahApps.Metro,MahApps/MahApps.Metro,Danghor/MahApps.Metro,xxMUROxx/MahApps.Metro,pfattisc/MahApps.Metro,ye4241/MahApps.Metro,chuuddo/MahApps.Metro,psinl/MahApps.Metro,jumulr/MahApps.Metro
MahApps.Metro/Properties/AssemblyInfo.cs
MahApps.Metro/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; using System.Windows.Markup; [assembly: AssemblyCopyright("Copyright © MahApps.Metro 2011-2015")] [assembly: ComVisible(false)] [assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDic...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; using System.Windows.Markup; [assembly: AssemblyCopyright("Copyright © MahApps.Metro 2011-2015")] [assembly: ComVisible(false)] [assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDic...
mit
C#
dcdcd9ebefc6a0d9724d5104fc562f78550377be
Update SolidColorBrushImpl.cs
grokys/Perspex,SuperJMN/Avalonia,grokys/Perspex,kekekeks/Perspex,AvaloniaUI/Avalonia,OronDF343/Avalonia,susloparovdenis/Perspex,SuperJMN/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,danwalmsley/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,OronDF343/Avalonia,bbqchickenrobot/Perspex,wieslawso...
src/Windows/Perspex.Direct2D1/Media/SolidColorBrushImpl.cs
src/Windows/Perspex.Direct2D1/Media/SolidColorBrushImpl.cs
// ----------------------------------------------------------------------- // <copyright file="SolidColorBrushImpl.cs" company="Steven Kirk"> // Copyright 2015 MIT Licence. See licence.md for more information. // </copyright> // ----------------------------------------------------------------------- namespace Perspex...
// ----------------------------------------------------------------------- // <copyright file="SolidColorBrushImpl.cs" company="Steven Kirk"> // Copyright 2015 MIT Licence. See licence.md for more information. // </copyright> // ----------------------------------------------------------------------- namespace Perspex...
mit
C#
7f90f08d93bb609222dc7bcc58a5cec86a3b5c1c
Update ExtendedTableService.cs
tamasflamich/effort
Main/Source/Effort.Shared/Internal/DbManagement/Engine/Services/ExtendedTableService.cs
Main/Source/Effort.Shared/Internal/DbManagement/Engine/Services/ExtendedTableService.cs
// -------------------------------------------------------------------------------------------- // <copyright file="ExtendedTableService.cs" company="Effort Team"> // Copyright (C) Effort Team // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associa...
// -------------------------------------------------------------------------------------------- // <copyright file="ExtendedTableService.cs" company="Effort Team"> // Copyright (C) Effort Team // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associa...
mit
C#
360e61dfc5f30c3c8eaec33dda9b0bbf38476db9
Update Flags.cs
jcheng31/ForecastPCL,jcheng31/DarkSkyApi
ForecastPCL/Models/Flags.cs
ForecastPCL/Models/Flags.cs
namespace ForecastIOPortable.Models { using System.Collections.Generic; using System.Runtime.Serialization; /// <summary> /// Metadata associated with a forecast. /// </summary> [DataContract] public class Flags { /// <summary> /// Gets or sets the IDs for each data sou...
namespace ForecastIOPortable.Models { using System.Collections.Generic; using System.Runtime.Serialization; /// <summary> /// Metadata associated with a forecast. /// </summary> [DataContract] public class Flags { /// <summary> /// Gets or sets the IDs for each data sou...
mit
C#
7f313c9f772e3c8b1c689ede11ae0887fe0c4e7e
Add comment
60071jimmy/UartOscilloscope,60071jimmy/UartOscilloscope
QueueDataGraphic/QueueDataGraphic/CSharpFiles/QueueDataGraphic.cs
QueueDataGraphic/QueueDataGraphic/CSharpFiles/QueueDataGraphic.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace QueueDataGraphic.CSharpFiles { class QueueDataGraphic // QueueDataGraphic class, QueueDataGraphic類別 { ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace QueueDataGraphic.CSharpFiles { class QueueDataGraphic { // QueueDataGraphic class start, 進入QueueDataGraphic類別 } ...
apache-2.0
C#
d9a2f1e074fabfc5cf24e0cf88adfa84deb7f326
Format code and remove wrong doc comment
ulrichb/Roflcopter,ulrichb/Roflcopter
Src/Roflcopter.Plugin/MismatchedFileNames/MismatchedFileNameHighlighting.cs
Src/Roflcopter.Plugin/MismatchedFileNames/MismatchedFileNameHighlighting.cs
using JetBrains.DocumentModel; using JetBrains.ReSharper.Feature.Services.Daemon; using JetBrains.ReSharper.Psi.CSharp; using JetBrains.ReSharper.Psi.Tree; using ReSharperExtensionsShared.Highlighting; using Roflcopter.Plugin.MismatchedFileNames; [assembly: RegisterConfigurableSeverity( MismatchedFileNameHighligh...
using JetBrains.DocumentModel; using JetBrains.ReSharper.Feature.Services.Daemon; using JetBrains.ReSharper.Psi.CSharp; using JetBrains.ReSharper.Psi.Tree; using ReSharperExtensionsShared.Highlighting; using Roflcopter.Plugin.MismatchedFileNames; [assembly: RegisterConfigurableSeverity( MismatchedFileNameHighligh...
mit
C#
d4db28bd128aecf9e578c3de9f2fcf34b9d99680
Rename Development category to Software Development.
LykkeCity/CompetitionPlatform,LykkeCity/CompetitionPlatform,LykkeCity/CompetitionPlatform
src/CompetitionPlatform/Data/ProjectCategory/ProjectCategoriesRepository.cs
src/CompetitionPlatform/Data/ProjectCategory/ProjectCategoriesRepository.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using CompetitionPlatform.Data.ProjectCategory; namespace CompetitionPlatform.Data.ProjectCategory { public class ProjectCategoriesRepository : IProjectCategoriesRepository { public List<string> GetCategor...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using CompetitionPlatform.Data.ProjectCategory; namespace CompetitionPlatform.Data.ProjectCategory { public class ProjectCategoriesRepository : IProjectCategoriesRepository { public List<string> GetCategor...
mit
C#
44de718c2ddca5c6cce237f4bc1205b6fc6028f6
更新 RequestMessager_Register_Corp.cs 注释 #2276
mc7246/WeiXinMPSDK,lishewen/WeiXinMPSDK,JeffreySu/WeiXinMPSDK,mc7246/WeiXinMPSDK,lishewen/WeiXinMPSDK,mc7246/WeiXinMPSDK,lishewen/WeiXinMPSDK,JeffreySu/WeiXinMPSDK,JeffreySu/WeiXinMPSDK
src/Senparc.Weixin.Work/Senparc.Weixin.Work/Entities/Request/ThirdPartyInfo/RequestMessager_Register_Corp.cs
src/Senparc.Weixin.Work/Senparc.Weixin.Work/Entities/Request/ThirdPartyInfo/RequestMessager_Register_Corp.cs
/*---------------------------------------------------------------- Copyright (C) 2020 Senparc 文件名:RequestMessager_Register_Corp.cs 文件功能描述:推广二维码注册企业微信完成通知 创建标识:Billzjh - 20201210 ----------------------------------------------------------------*/ using Senparc.NeuChar.Entities; name...
 namespace Senparc.Weixin.Work.Entities { /// <summary> /// 推广二维码注册企业微信完成通知 /// </summary> public class RequestMessager_Register_Corp : ThirdPartyInfoBase, IThirdPartyInfoBase { //public override RequestMsgType MsgType //{ // get { return RequestMsgType.Unknown; } ...
apache-2.0
C#
9d655b1ad36b6907345b46cae22a472232eedfe0
Fix issue that HRESULT returned by DWMAPI isn't converted.
Grabacr07/MetroRadiance
source/MetroRadiance.Core/Interop/Win32/Dwmapi.cs
source/MetroRadiance.Core/Interop/Win32/Dwmapi.cs
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; namespace MetroRadiance.Interop.Win32 { public static class Dwmapi { [DllImport("Dwmapi.dll", ExactSpelling = true, PreserveSig = false)] public static extern void DwmGetColorizationColor([Out] out...
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; namespace MetroRadiance.Interop.Win32 { public static class Dwmapi { [DllImport("Dwmapi.dll", ExactSpelling = true)] public static extern void DwmGetColorizationColor([Out] out uint pcrColorization...
mit
C#
f80a51963d515f52c7517881eafef320a4ed94f9
Update AddingArcControl.cs
aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,asposecells/Aspose_Cells...
Examples/CSharp/DrawingObjects/Controls/AddingArcControl.cs
Examples/CSharp/DrawingObjects/Controls/AddingArcControl.cs
using System.IO; using Aspose.Cells; using Aspose.Cells.Drawing; using System.Drawing; namespace Aspose.Cells.Examples.DrawingObjects.Controls { public class AddingArcControl { public static void Main(string[] args) { //ExStart:1 // The path to the documents directory. ...
using System.IO; using Aspose.Cells; using Aspose.Cells.Drawing; using System.Drawing; namespace Aspose.Cells.Examples.DrawingObjects.Controls { public class AddingArcControl { public static void Main(string[] args) { // The path to the documents directory. string dataD...
mit
C#
39b04c1ac2283672936efa635849d70f23aaf1f7
Fix SaveToDiskSender on non Windows environments
lukencode/FluentEmail,lukencode/FluentEmail
src/FluentEmail.Core/Defaults/SaveToDiskSender.cs
src/FluentEmail.Core/Defaults/SaveToDiskSender.cs
using System; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using FluentEmail.Core.Interfaces; using FluentEmail.Core.Models; namespace FluentEmail.Core.Defaults { public class SaveToDiskSender : ISender { private readonly string _directory; public ...
using System; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using FluentEmail.Core.Interfaces; using FluentEmail.Core.Models; namespace FluentEmail.Core.Defaults { public class SaveToDiskSender : ISender { private readonly string _directory; public ...
mit
C#
51bb3cccab0df50decaeb0b4b23a2e342527fcc1
Add missing using directive
dreamrain21/Portable.Licensing,dreamrain21/Portable.Licensing,dnauck/Portable.Licensing,dnauck/Portable.Licensing
src/Portable.Licensing/Properties/AssemblyInfo.cs
src/Portable.Licensing/Properties/AssemblyInfo.cs
// // Copyright © 2012 - 2013 Nauck IT KG http://www.nauck-it.de // // Author: // Daniel Nauck <d.nauck(at)nauck-it.de> // // 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 wit...
// // Copyright © 2012 - 2013 Nauck IT KG http://www.nauck-it.de // // Author: // Daniel Nauck <d.nauck(at)nauck-it.de> // // 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 wit...
mit
C#
c1c5e614dcf7598dee54b42e9284150cca48abe0
Disable uncompleted InfoXmlCreator
arkivverket/arkade5,arkivverket/arkade5,arkivverket/arkade5
src/Arkivverket.Arkade/Metadata/MetadataFilesCreator.cs
src/Arkivverket.Arkade/Metadata/MetadataFilesCreator.cs
using System.IO; using Arkivverket.Arkade.Core; using Arkivverket.Arkade.Util; namespace Arkivverket.Arkade.Metadata { public class MetadataFilesCreator { private readonly DiasMetsCreator _diasMetsCreator; private readonly DiasPremisCreator _diasPremisCreator; private readonly EacCpfCre...
using System.IO; using Arkivverket.Arkade.Core; using Arkivverket.Arkade.Util; namespace Arkivverket.Arkade.Metadata { public class MetadataFilesCreator { private readonly DiasMetsCreator _diasMetsCreator; private readonly DiasPremisCreator _diasPremisCreator; private readonly EacCpfCre...
agpl-3.0
C#
4b2ef1337ead8a1c63d1b8a6b55ab3d5ad1c2e3c
Add SourceAFIS namespace reference
BS-Pro/Multi-Fingerprint-Authenticator
MultiFingerPrint/Program.cs
MultiFingerPrint/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; using SourceAFIS.Simple; namespace MultiFingerPrint { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace MultiFingerPrint { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static...
apache-2.0
C#
0cf4793c636a233b6ed1ae18493cb6050d2233cd
Fix using unreachable benchmark
HangfireIO/Cronos
benchmarks/Cronos.Benchmarks/Program.cs
benchmarks/Cronos.Benchmarks/Program.cs
using System; using BenchmarkDotNet.Running; namespace Cronos.Benchmarks { class Program { static void Main(string[] args) { /*var benchmarks = new CronBenchmarks(); for (var i = 0; i < 100000000; i++) { benchmarks.NextUnreachableSimple(); ...
using System; using BenchmarkDotNet.Running; namespace Cronos.Benchmarks { class Program { static void Main(string[] args) { /*var benchmarks = new CronBenchmarks(); for (var i = 0; i < 100000000; i++) { benchmarks.IsUnreachable(); ...
mit
C#
a2b07449fbee203c5af864309a980ecfdb6d0766
Bump version.
dbckr/Data.HashFunction,brandondahler/Data.HashFunction
SolutionInfo.cs
SolutionInfo.cs
using System; using System.Reflection; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Data.HashFunction Developers")] [assembly: AssemblyCopyright("Copyright 2014")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: CLSCompliant(false)] [assembly: AssemblyVersion("1.5.1...
using System; using System.Reflection; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Data.HashFunction Developers")] [assembly: AssemblyCopyright("Copyright 2014")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: CLSCompliant(false)] [assembly: AssemblyVersion("1.4.2...
mit
C#
d233c9fdc3d579279a9343f6d9fff490862bb12f
Update Method.cs
hprose/hprose-dotnet
src/Hprose.RPC/Method.cs
src/Hprose.RPC/Method.cs
/*--------------------------------------------------------*\ | | | hprose | | | | Official WebSite: https://hprose.com | | ...
/*--------------------------------------------------------*\ | | | hprose | | | | Official WebSite: https://hprose.com | | ...
mit
C#
c9df79c60327f53d5ac46d394fc187f875ef38b5
add collect traveldiary service
CtripHackthon/TravelOnline,CtripHackthon/TravelOnline,CtripHackthon/TravelOnline
TravelOnline/TravelService.Service/Travel/CollectTravelDiary.cs
TravelOnline/TravelService.Service/Travel/CollectTravelDiary.cs
using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; using MySql.Data.MySqlClient; using TravelService.DataService; using TravelService.Model; using TravelService.Model.ServiceModel; using TravelService.Service.Utilities; namespace Trav...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using TravelService.Model; using TravelService.Model.ServiceModel; using TravelService.Service.Utilities; namespace TravelService.Service.Travel { public class CollectTravelDiary : IService { ...
apache-2.0
C#
df89f7eab590befe8354227fa31895beb90a7254
Switch to version 1.3.6
Abc-Arbitrage/Zebus,rbouallou/Zebus,biarne-a/Zebus,AtwooTM/Zebus
src/SharedVersionInfo.cs
src/SharedVersionInfo.cs
using System.Reflection; [assembly: AssemblyVersion("1.3.6")] [assembly: AssemblyFileVersion("1.3.6")] [assembly: AssemblyInformationalVersion("1.3.6")]
using System.Reflection; [assembly: AssemblyVersion("1.3.5")] [assembly: AssemblyFileVersion("1.3.5")] [assembly: AssemblyInformationalVersion("1.3.5")]
mit
C#
783f6f9d5cc0d55908da011fe87f5577cf888424
Update nuget version to 1.20
msft-shahins/BotBuilder,mmatkow/BotBuilder,dr-em/BotBuilder,stevengum97/BotBuilder,xiangyan99/BotBuilder,yakumo/BotBuilder,xiangyan99/BotBuilder,mmatkow/BotBuilder,dr-em/BotBuilder,msft-shahins/BotBuilder,yakumo/BotBuilder,stevengum97/BotBuilder,msft-shahins/BotBuilder,yakumo/BotBuilder,mmatkow/BotBuilder,dr-em/BotBuil...
CSharp/Library/Properties/AssemblyInfo.cs
CSharp/Library/Properties/AssemblyInfo.cs
using System.Resources; 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 assembl...
using System.Resources; 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 assembl...
mit
C#
c8e232d21c163f38e6252613c66f023ad5b05a28
Build fixed.
Squidex/squidex,Squidex/squidex,Squidex/squidex,Squidex/squidex,Squidex/squidex
backend/src/Squidex.Infrastructure/UniqueConstraintException.cs
backend/src/Squidex.Infrastructure/UniqueConstraintException.cs
// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ===========================...
// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ===========================...
mit
C#
7ae78f4dc830de4d5432bf7e46478295cc93e403
Use the query repository factory.
ucdavis/Purchasing,ucdavis/Purchasing,ucdavis/Purchasing
Purchasing.Core/IQueryRepositoryFactory.cs
Purchasing.Core/IQueryRepositoryFactory.cs
using System; using Purchasing.Core.Queries; using UCDArch.Core.PersistanceSupport; namespace Purchasing.Core { public interface IQueryRepositoryFactory { IRepository<Access> AccessRepository { get; set; } IRepository<OrganizationDescendant> OrganizationDescendantRepository { get; set; } ...
using Purchasing.Core.Queries; using UCDArch.Core.PersistanceSupport; namespace Purchasing.Core { public interface IQueryRepositoryFactory { IRepository<Access> AccessRepository { get; set; } IRepository<OrganizationDescendant> OrganizationDescendantRepository { get; set; } IRepository...
mit
C#
7d1547831a7d8f82fbaac69c27a3fb596a12c78d
Add a test method 'StringUtilsTest#GetPositionByIndexTest'
lury-lang/compiler-base
UnitTest/StringUtilsTest.cs
UnitTest/StringUtilsTest.cs
using System; using Lury.Compiling.Utils; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace UnitTest { [TestClass] public class StringUtilsTest { [TestMethod] public void GetNumberOfLineTest() { Assert.AreEqual(0, StringUtils.GetNumberOfLine(null)); ...
using System; using Lury.Compiling.Utils; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace UnitTest { [TestClass] public class StringUtilsTest { [TestMethod] public void GetNumberOfLineTest() { Assert.AreEqual(0, StringUtils.GetNumberOfLine(null)); ...
mit
C#
db23ba6a0262e2e24d206d78f9bd7d332fd0d2de
add test
ysdiong/Sharp-Architecture,alphacloud/Sharp-Architecture,chenkaibin/Sharp-Architecture
src/SharpArch/SharpArch.Tests/SharpArch.Core.NHibernateValidator/ValidatorProvider/NHibernateValidatorProviderTests.cs
src/SharpArch/SharpArch.Tests/SharpArch.Core.NHibernateValidator/ValidatorProvider/NHibernateValidatorProviderTests.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web.Mvc; using NHibernate.Validator.Constraints; using NUnit.Framework; using SharpArch.Core.NHibernateValidator.ValidatorProvider; namespace Tests.SharpArch.Core.NHibernateValidator.ValidatorProvider { [TestFixture...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web.Mvc; using NHibernate.Validator.Constraints; using NUnit.Framework; using SharpArch.Core.NHibernateValidator.ValidatorProvider; namespace Tests.SharpArch.Core.NHibernateValidator.ValidatorProvider { [TestFixture...
bsd-3-clause
C#
c9ef9f624be1669aee088c5321d1d93160d5d6e0
Disable with compiler constant instead.
nostek/UnityCodebase
Scripts/Coroutines/EditorCoroutineTween.cs
Scripts/Coroutines/EditorCoroutineTween.cs
#if !NO_DOTWEEN using System; using System.Collections; using UnityEngine; using DG.Tweening; public class EditorCoroutineTween { public static EditorCoroutine Run(Tween t) { EditorCoroutineTween ct = new EditorCoroutineTween(); return EditorCoroutine.Start(ct.UpdateTween(t)); } IEnumerator UpdateTween(Twe...
using System; using System.Collections; using UnityEngine; //using DG.Tweening; public class EditorCoroutineTween { /* public static EditorCoroutine Run(Tween t) { EditorCoroutineTween ct = new EditorCoroutineTween(); return EditorCoroutine.Start(ct.UpdateTween(t)); } IEnumerator UpdateTween(Tween t) { ...
mit
C#
68426e6e6c09b78a5299777295183389039efc3c
Update ListHeavyPageModel.cs
molinch/FFImageLoading,luberda-molinet/FFImageLoading
samples/ImageLoading.Forms.Sample/Shared/Pages/ListHeavyPageModel.cs
samples/ImageLoading.Forms.Sample/Shared/Pages/ListHeavyPageModel.cs
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Windows.Input; using Xamarin.Forms; using Xamvvm; namespace FFImageLoading.Forms.Sample { public class ListHeavyPageModel : BasePageModel { public ListHeavyPageModel() { ItemSelectedC...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Windows.Input; using Xamarin.Forms; using Xamvvm; namespace FFImageLoading.Forms.Sample { public class ListHeavyPageModel : BasePageModel { public ListHeavyPageModel() { ItemSele...
mit
C#
aca50b6f480cda0a712513aa084bb4a5d096680d
rename .tmp to .contest_tmp (In our case collisions are unlikely but also possibles...).
amiralles/contest,amiralles/contest
src/Contest.Core/ContestConstants.cs
src/Contest.Core/ContestConstants.cs
namespace Contest.Core { using System; using System.Globalization; public class ContestConstants { public static readonly string TMP = ".contest_tmp", MODDAT = "moddat", DATE_FORMAT = "yyyy/MM/dd hh:mm:ss.fff"; public static readonly CultureInfo Culture = new CultureInfo("en-US"); } }...
namespace Contest.Core { using System; using System.Globalization; public class ContestConstants { public static readonly string TMP = ".tmp", MODDAT = "moddat", DATE_FORMAT = "yyyy/MM/dd hh:mm:ss.fff"; public static readonly CultureInfo Culture = new CultureInfo("en-US"); } }
mit
C#
13cfdc8d6c079d49afe71480be76b4e4e0955d51
Update profile information and website url (#336)
planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin
src/Firehose.Web/Authors/DanRigby.cs
src/Firehose.Web/Authors/DanRigby.cs
using System; using System.Collections.Generic; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class DanRigby : IWorkAtXamarinOrMicrosoft { public string FirstName => "Dan"; public string LastName => "Rigby"; public string ShortBioOrTagLine => "is a Technica...
using System; using System.Collections.Generic; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class DanRigby : IWorkAtXamarinOrMicrosoft { public string FirstName => "Dan"; public string LastName => "Rigby"; public string ShortBioOrTagLine => "is a Xamarin ...
mit
C#
6f9591e665da8cc43ed29343c539ce0d5ecfd1e1
Add default values to DependencyPropertyUtility
SaberSnail/GoldenAnvil.Utility
GoldenAnvil.Utility.Windows/DependencyPropertyUtility.cs
GoldenAnvil.Utility.Windows/DependencyPropertyUtility.cs
using System; using System.Linq.Expressions; using System.Windows; namespace GoldenAnvil.Utility.Windows { public static class DependencyPropertyUtility<T> { public static DependencyProperty Register<TValue>(Expression<Func<T, TValue>> selector, TValue defaultValue = default(TValue)) { return DependencyPrope...
using System; using System.Linq.Expressions; using System.Windows; namespace GoldenAnvil.Utility.Windows { public static class DependencyPropertyUtility<T> { public static DependencyProperty Register<TValue>(Expression<Func<T, TValue>> selector) { return DependencyProperty.Register(ReflectionUtility<T>.GetMe...
mit
C#
bc2dccd97c7480968b8815bb0cefd59ba5d363bc
fix when an app setting is not there, null reference exception occurs in .net core
volkanceylan/Serenity,volkanceylan/Serenity,rolembergfilho/Serenity,rolembergfilho/Serenity,WasimAhmad/Serenity,volkanceylan/Serenity,volkanceylan/Serenity,WasimAhmad/Serenity,volkanceylan/Serenity,WasimAhmad/Serenity,rolembergfilho/Serenity,rolembergfilho/Serenity,WasimAhmad/Serenity,rolembergfilho/Serenity,WasimAhmad...
Serenity.Data/Utility/AppSettingsJsonConfigRepository.cs
Serenity.Data/Utility/AppSettingsJsonConfigRepository.cs
#if COREFX using Microsoft.Extensions.Configuration; #else using System.Configuration; #endif namespace Serenity.Configuration { using Serenity; using Serenity.Abstractions; using Serenity.ComponentModel; using System; using System.Reflection; public class AppSettingsJsonConfigR...
#if COREFX using Microsoft.Extensions.Configuration; #else using System.Configuration; #endif namespace Serenity.Configuration { using Serenity; using Serenity.Abstractions; using Serenity.ComponentModel; using System; using System.Reflection; public class AppSettingsJsonConfigR...
mit
C#