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
268812e10fe17e8177dc5ca680128b286207c82f
Add test for MemoryStream's buffer after Capacity reset (#36580)
ViktorHofer/corefx,ericstj/corefx,ericstj/corefx,shimingsg/corefx,ViktorHofer/corefx,BrennanConroy/corefx,wtgodbe/corefx,wtgodbe/corefx,ViktorHofer/corefx,shimingsg/corefx,ericstj/corefx,ViktorHofer/corefx,ericstj/corefx,shimingsg/corefx,ViktorHofer/corefx,ericstj/corefx,ViktorHofer/corefx,BrennanConroy/corefx,ViktorHo...
src/System.IO/tests/MemoryStream/MemoryStream.GetBufferTests.cs
src/System.IO/tests/MemoryStream/MemoryStream.GetBufferTests.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 Xunit; namespace System.IO.Tests { public class MemoryStream_GetBufferTests { [Fact] ...
// 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 Xunit; namespace System.IO.Tests { public class MemoryStream_GetBufferTests { [Fact] ...
mit
C#
2543de22bd4f2bf5c8fe95f46944419312cb9361
Simplify DeletedChildrenPlaceholder behavior
peppy/osu,ppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,EVAST9919/osu,UselessToucan/osu,smoogipooo/osu,ppy/osu,NeoAdonis/osu,peppy/osu,peppy/osu,2yangk23/osu,EVAST9919/osu,2yangk23/osu,NeoAdonis/osu,johnneijzen/osu,smoogipoo/osu,peppy/osu-new,UselessToucan/osu,johnneijzen/osu,UselessToucan/osu,smoogipoo/osu
osu.Game/Overlays/Comments/DeletedChildrenPlaceholder.cs
osu.Game/Overlays/Comments/DeletedChildrenPlaceholder.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Graphics.Containers; using osu.Framework.Graphics; using osu.Game.Graphics; using osu.Framework.Graphics.Sprites; using osuTK; using osu.Framework.Bi...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Graphics.Containers; using osu.Framework.Graphics; using osu.Game.Graphics; using osu.Framework.Graphics.Sprites; using osuTK; using osu.Framework.Bi...
mit
C#
573f861717e1d116f736bd7c7eaf8839b9fb3b26
Remove accidental M
seancpeters/templating,seancpeters/templating,seancpeters/templating,mlorbetske/templating,seancpeters/templating,mlorbetske/templating
template_feed/Microsoft.DotNet.Web.ProjectTemplates.2.0/content/WebApi-CSharp/Extensions/AzureAdB2COptions.cs
template_feed/Microsoft.DotNet.Web.ProjectTemplates.2.0/content/WebApi-CSharp/Extensions/AzureAdB2COptions.cs
namespace Microsoft.AspNetCore.Authentication { public class AzureAdB2COptions { public string ClientId { get; set; } public string Instance { get; set; } public string Domain { get; set; } public string SignUpSignInPolicyId { get; set; } } }
namespace MMicrosoft.AspNetCore.Authentication { public class AzureAdB2COptions { public string ClientId { get; set; } public string Instance { get; set; } public string Domain { get; set; } public string SignUpSignInPolicyId { get; set; } } }
mit
C#
e03c3f31a41f7f00e13ebc9fb45be763c303e3cc
Add basePath and baseUrl parameters at AddPiranhaFileStorage extension method.
PiranhaCMS/piranha.core,PiranhaCMS/piranha.core,PiranhaCMS/piranha.core,PiranhaCMS/piranha.core
core/Piranha.Local.FileStorage/FileStorageExtensions.cs
core/Piranha.Local.FileStorage/FileStorageExtensions.cs
/* * Copyright (c) 2018 Håkan Edling * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. * * https://github.com/piranhacms/piranha.core * */ using Microsoft.Extensions.DependencyInjection; using Piranha; using Piranha.Local; ...
/* * Copyright (c) 2018 Håkan Edling * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. * * https://github.com/piranhacms/piranha.core * */ using Microsoft.Extensions.DependencyInjection; using Piranha; using Piranha.Local; public stati...
mit
C#
b15864bc690ca94c77020339f8245d500124e0c2
Update BinanceSymbol.cs
JKorf/Binance.Net
Binance.Net/Objects/BinanceSymbol.cs
Binance.Net/Objects/BinanceSymbol.cs
using Binance.Net.Converters; using Newtonsoft.Json; using System.Collections.Generic; namespace Binance.Net.Objects { public class BinanceSymbol { /// <summary> /// The symbol /// </summary> [JsonProperty("symbol")] public string Name { get; set; } /// <summary...
using Binance.Net.Converters; using Newtonsoft.Json; using System.Collections.Generic; namespace Binance.Net.Objects { public class BinanceSymbol { /// <summary> /// The symbol /// </summary> [JsonProperty("symbol")] public string Name { get; set; } /// <summary...
mit
C#
45cbc8d55a830be9f076457349ae5defa4f6bfed
Allow only http/https schemes, and href attribute to contain an uri.
CollActionteam/CollAction,CollActionteam/CollAction,CollActionteam/CollAction,CollActionteam/CollAction,CollActionteam/CollAction
CollAction/Helpers/InputSanitizer.cs
CollAction/Helpers/InputSanitizer.cs
using Ganss.XSS; namespace CollAction.Helpers { public static class InputSanitizer { public static string Sanitize(string input) { var saniziter = new HtmlSanitizer( allowedTags: new[] { "p", "br", "strong", "em", "i", "u", "a", "ol", "ul", "li" }, al...
using Ganss.XSS; namespace CollAction.Helpers { public static class InputSanitizer { public static string Sanitize(string input) { var saniziter = new HtmlSanitizer( allowedTags: new[] { "p", "br", "strong", "em", "i", "u", "a", "ol", "ul", "li" }, al...
agpl-3.0
C#
aeaab87207afc144ebc1e99526c2efd1f892293c
Adjust edges of non-scrollable views to show entire content of view
l8s/Eto,PowerOfCode/Eto,l8s/Eto,PowerOfCode/Eto,bbqchickenrobot/Eto-1,bbqchickenrobot/Eto-1,bbqchickenrobot/Eto-1,PowerOfCode/Eto,l8s/Eto
Source/Eto.Platform.iOS/Forms/Controls/NavigationHandler.cs
Source/Eto.Platform.iOS/Forms/Controls/NavigationHandler.cs
using System; using MonoTouch.UIKit; using Eto.Forms; using MonoTouch.ObjCRuntime; using Eto.Drawing; using System.Collections.Generic; using System.Linq; namespace Eto.Platform.iOS.Forms.Controls { internal class RotatableNavigationController : UINavigationController { [Obsolete] public override bool ShouldAuto...
using System; using MonoTouch.UIKit; using Eto.Forms; using MonoTouch.ObjCRuntime; using Eto.Drawing; using System.Collections.Generic; using System.Linq; namespace Eto.Platform.iOS.Forms.Controls { internal class RotatableNavigationController : UINavigationController { [Obsolete] public override bool ShouldAuto...
bsd-3-clause
C#
91cef69de573188a0767266a15f5d76fe1503c6b
Add comments
holance/helix-toolkit,chrkon/helix-toolkit,Iluvatar82/helix-toolkit,helix-toolkit/helix-toolkit,JeremyAnsel/helix-toolkit
Source/HelixToolkit.SharpDX.Shared/Interface/IRenderCore.cs
Source/HelixToolkit.SharpDX.Shared/Interface/IRenderCore.cs
using System; using System.Collections.Generic; using System.Text; #if !NETFX_CORE namespace HelixToolkit.Wpf.SharpDX #else namespace HelixToolkit.UWP #endif { public interface IRenderCore : IGUID { /// <summary> /// If render core is attached or not /// </summary> bool IsAttac...
using System; using System.Collections.Generic; using System.Text; #if !NETFX_CORE namespace HelixToolkit.Wpf.SharpDX #else namespace HelixToolkit.UWP #endif { public interface IRenderCore : IGUID { void Attach(IRenderHost host, RenderTechnique technique); void Detach(); void Render(...
mit
C#
7f76affd691b1bfd64c8812a3cf46bcf2aae4e47
Update basic tests
markashleybell/MAB.DotIgnore,markashleybell/MAB.DotIgnore
IgnoreSharp.Tests/IgnoreRuleTests.cs
IgnoreSharp.Tests/IgnoreRuleTests.cs
using NUnit.Framework; using System; using System.Collections.Generic; using System.Text; using System.Linq; namespace IgnoreSharp.Tests { [TestFixture] public class IgnoreRuleTests { private string _basePath; [OneTimeSetUp] public void OneTimeSetUp() { _basePa...
using NUnit.Framework; using System; using System.Collections.Generic; using System.Text; using System.Linq; namespace IgnoreSharp.Tests { [TestFixture] public class IgnoreRuleTests { private string _basePath; [OneTimeSetUp] public void OneTimeSetUp() { _basePa...
mit
C#
db91ce496027388e71fcb4b0728545ab627dba51
Fix link
cake-build/website,cake-build/website,cake-build/website
input/docs/integrations/editors/vscode/index.cshtml
input/docs/integrations/editors/vscode/index.cshtml
Order: 20 Title: Visual Studio Code Description: Extensions and supported features for Visual Studio Code RedirectFrom: docs/editors/vscode --- <p> The <a href="https://marketplace.visualstudio.com/items/cake-build.cake-vscode" target="_blank">Cake extension for Visual Studio Code</a> brings the following feat...
Order: 20 Title: Visual Studio Code Description: Extensions and supported features for Visual Studio Code RedirectFrom: docs/editors/vscode --- <p> The <a href="https://marketplace.visualstudio.com/items/cake-build.cake-vscode" target="_blank">Cake extension for Visual Studio Code</a> brings the following feat...
mit
C#
cc53b47db7c349c9675adb1fa75184b576670b85
fix for issue #54
furore-fhir/spark,furore-fhir/spark,furore-fhir/spark
src/Spark.Mongo/Search/Infrastructure/MongoIndexStore.cs
src/Spark.Mongo/Search/Infrastructure/MongoIndexStore.cs
using MongoDB.Bson; using MongoDB.Driver; using Spark.Engine.Core; using Spark.Engine.Extensions; using System; using Spark.Store.Mongo; namespace Spark.Mongo.Search.Common { public class MongoIndexStore { private MongoDatabase database; public MongoCollection<BsonDocument> Collection; ...
using MongoDB.Bson; using MongoDB.Driver; using Spark.Engine.Core; using Spark.Engine.Extensions; using System; using Spark.Store.Mongo; namespace Spark.Mongo.Search.Common { public class MongoIndexStore { private MongoDatabase database; public MongoCollection<BsonDocument> Collection; ...
bsd-3-clause
C#
a5b739e7675000873bde1e3745b1a9e9d01a306d
fix artists' song count
pkzxs/Aurora.Music
Aurora.Music/ViewModels/ArtistsPageViewModel.cs
Aurora.Music/ViewModels/ArtistsPageViewModel.cs
using Aurora.Music.Core.Storage; using Aurora.Shared.MVVM; using System; using System.Collections.ObjectModel; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; using Windows.ApplicationModel.Core; namespace Aurora.Music.ViewModels { class ArtistsPageViewModel : ViewModelBase { ...
using Aurora.Music.Core.Storage; using Aurora.Shared.MVVM; using System; using System.Collections.ObjectModel; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; using Windows.ApplicationModel.Core; namespace Aurora.Music.ViewModels { class ArtistsPageViewModel : ViewModelBase { ...
mit
C#
0ec6a1b3e6e32f62c5441a3514d2933afb7edd32
Fix bug: Searching too fast in dialog returns no results when enter is pressed Work items: 598
OneGet/nuget,zskullz/nuget,oliver-feng/nuget,mrward/NuGet.V2,GearedToWar/NuGet2,RichiCoder1/nuget-chocolatey,ctaggart/nuget,rikoe/nuget,OneGet/nuget,pratikkagda/nuget,GearedToWar/NuGet2,indsoft/NuGet2,OneGet/nuget,chester89/nugetApi,jholovacs/NuGet,mrward/nuget,mono/nuget,akrisiun/NuGet,dolkensp/node.net,rikoe/nuget,mr...
src/Dialog/PackageManagerUI/BaseProvider/PackagesSearchNode.cs
src/Dialog/PackageManagerUI/BaseProvider/PackagesSearchNode.cs
using System; using System.Linq; using Microsoft.VisualStudio.ExtensionsExplorer; namespace NuGet.Dialog.Providers { internal class PackagesSearchNode : PackagesTreeNodeBase { private string _searchText; private readonly PackagesTreeNodeBase _baseNode; public PackagesTreeNodeB...
using System; using System.Linq; using Microsoft.VisualStudio.ExtensionsExplorer; namespace NuGet.Dialog.Providers { internal class PackagesSearchNode : PackagesTreeNodeBase { private string _searchText; private readonly PackagesTreeNodeBase _baseNode; public PackagesTreeNodeB...
apache-2.0
C#
d5da3f57dfaacf96f48fa7259d4026ce3a98d9ea
fix #14
chiguniiita/Playground
src/Playground.Sample/Program.cs
src/Playground.Sample/Program.cs
using Playground.Core; using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; namespace Playground.Sample { class Program { static void Main(string[] args) { Console.WriteLi...
using Playground.Core; using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; namespace Playground.Sample { class Program { static void Main(string[] args) { Console.WriteLi...
mit
C#
19f5e91454323e63d85a4562e320ddca338d27f7
disable debugging compilermodule
wwwlicious/R4MVC,wwwlicious/R4MVC,artiomchi/R4MVC,wwwlicious/R4MVC,T4MVC/R4MVC,artiomchi/R4MVC
src/R4Mvc/R4MVCCompilerModule.cs
src/R4Mvc/R4MVCCompilerModule.cs
namespace R4Mvc { using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime.Roslyn; public class R4MVCCompilerModule : ICompileModule { priva...
namespace R4Mvc { using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.Framework.Runtime; using Microsoft.Framework.Runtime.Roslyn; public class R4MVCCompilerModule : ICompileModule { priva...
apache-2.0
C#
cd607fa91b4d484dd3b1817243f4ba6bcd689f4d
Implement MSSQLSchemaAggregator
Ackara/Daterpillar
src/Daterpillar.NET/Data/MSSQLSchemaAggregator.cs
src/Daterpillar.NET/Data/MSSQLSchemaAggregator.cs
using System.Data; namespace Gigobyte.Daterpillar.Data { public class MSSQLSchemaAggregator : SchemaAggregatorBase { public MSSQLSchemaAggregator(string connectionString) : this(new System.Data.SqlClient.SqlConnection(connectionString)) { } public MSSQLSchemaAggregator(IDbConn...
using Gigobyte.Daterpillar.Data; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data; namespace Gigobyte.Daterpillar.Data { public class MSSQLSchemaAggregator : SchemaAggregatorBase { public MSSQLSchemaAggregator(IDbConn...
mit
C#
d2f413cf417ae8dd55e66f2fdcc97ae3d21fd562
remove pause from PC queue
kreeben/resin,kreeben/resin
src/Sir/ProducerConsumerQueue.cs
src/Sir/ProducerConsumerQueue.cs
using System; using System.Collections.Concurrent; using System.Threading; using System.Threading.Tasks; namespace Sir.Core { /// <summary> /// Enque items and forget about it. They will be consumed by another thread. /// Call ProducerConsumerQueue.Dispose() to have consumer thread join main. /// </su...
using System; using System.Collections.Concurrent; using System.Threading; using System.Threading.Tasks; namespace Sir.Core { /// <summary> /// Enque items and forget about it. They will be consumed by another thread. /// Call ProducerConsumerQueue.Dispose() to have consumer thread join main. /// </su...
mit
C#
b04d3b915b6db59d7246b4b56595cfc7ba248093
Set version number to 0.26
simplic-systems/simplic-cdn-api-csharp,simplic/simplic-cdn-api-csharp,simplic/simplic-cdn-api-csharp,simplic-systems/simplic-cdn-api-csharp
src/Simplic.CDN.CSharp/Properties/AssemblyInfo.cs
src/Simplic.CDN.CSharp/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
mit
C#
80fc1edc6cdc2e059543dd71d79f188d92bb80d2
Fix Compile Error
lidgren/lidgren-network-gen3,RainsSoft/lidgren-network-gen3,forestrf/lidgren-network-gen3,jbruening/lidgren-network-gen3
Lidgren.Network/Platform/PlatformConstrained.cs
Lidgren.Network/Platform/PlatformConstrained.cs
#if __CONSTRAINED__ || UNITY_STANDALONE_LINUX || UNITY using System; using System.Collections.Generic; using System.Net; using System.Security.Cryptography; namespace Lidgren.Network { public static partial class NetUtility { private static byte[] s_randomMacBytes; static NetUtility() { } [CLSComplian...
#if __CONSTRAINED__ || UNITY_STANDALONE_LINUX || UNITY using System; using System.Collections.Generic; using System.Net; using System.Security.Cryptography; namespace Lidgren.Network { public static partial class NetUtility { private static byte[] s_randomMacBytes; static NetUtility() { } [CLSComplian...
mit
C#
82a5079c95b556e76a3f2e3ee394adfd95fafceb
Update assembly info for development of the next version
nanathan/ManeuverNodeSplitter
ManeuverNodeSplitter/Properties/AssemblyInfo.cs
ManeuverNodeSplitter/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("Ma...
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("Ma...
mit
C#
2c9867c2dd11b3c5e685425dc7ddec181ca3ef62
Fix logging of TeamCityClient requests
amoerie/teamcity-theatre,amoerie/teamcity-theatre,amoerie/teamcity-theatre,amoerie/teamcity-theatre,amoerie/teamcity-theatre
src/TeamCityTheatre.Core/Client/TeamCityClient.cs
src/TeamCityTheatre.Core/Client/TeamCityClient.cs
using System; using System.Linq; using System.Threading.Tasks; using Microsoft.Extensions.Options; using RestSharp; using Serilog; using TeamCityTheatre.Core.Options; namespace TeamCityTheatre.Core.Client { public interface ITeamCityClient { Task<TResponse> ExecuteRequestAsync<TResponse>(IRestRequest restReques...
using System; using System.Linq; using System.Threading.Tasks; using Microsoft.Extensions.Options; using RestSharp; using Serilog; using TeamCityTheatre.Core.Options; namespace TeamCityTheatre.Core.Client { public interface ITeamCityClient { Task<TResponse> ExecuteRequestAsync<TResponse>(IRestRequest restReques...
mit
C#
2b57e9e35009316c96ce86780f469b73bf0be87d
clean up using statements
Pondidum/NuCache,Pondidum/NuCache,Pondidum/NuCache
NuCache/PackageSources/ProxyingPackageSource.cs
NuCache/PackageSources/ProxyingPackageSource.cs
using System; using System.Net.Http; using System.Threading.Tasks; using NuCache.Infrastructure; using NuCache.ProxyBehaviour; using NuCache.Rewriters; namespace NuCache.PackageSources { public class ProxyingPackageSource : IPackageSource { private readonly ApplicationSettings _settings; private readonly WebCli...
using System; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Threading.Tasks; using NuCache.ProxyBehaviour; using NuCache.Rewriters; using WebClient = NuCache.Infrastructure.WebClient; namespace NuCache.PackageSources { public class ProxyingPackageSource : IPackageSource { pr...
lgpl-2.1
C#
f0a2be5c7f49ae178be4f917239410b2e8d7f927
Use camelCase for new widgets
ParcelForMe/p4m-demo-shop,ParcelForMe/p4m-demo-shop,ParcelForMe/p4m-demo-shop,ParcelForMe/p4m-demo-shop
OpenOrderFramework/Controllers/JsonNetResult.cs
OpenOrderFramework/Controllers/JsonNetResult.cs
using Newtonsoft.Json; using Newtonsoft.Json.Serialization; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace OpenOrderFramework.Controllers { public class JsonNetResult : JsonResult { public override void ExecuteResult(ControllerConte...
using Newtonsoft.Json; using Newtonsoft.Json.Serialization; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace OpenOrderFramework.Controllers { public class JsonNetResult : JsonResult { public override void ExecuteResult(ControllerConte...
mit
C#
eaa48e821654b50b8086d904d5d68dad6a1e2357
Remove the extra slash that causes /try/ to be interpreted as / in context.Request.Path
projectkudu/SimpleWAWS,projectkudu/SimpleWAWS,davidebbo/SimpleWAWS,projectkudu/TryAppService,davidebbo/SimpleWAWS,fashaikh/SimpleWAWS,projectkudu/SimpleWAWS,projectkudu/TryAppService,fashaikh/SimpleWAWS,projectkudu/TryAppService,fashaikh/SimpleWAWS,projectkudu/TryAppService,davidebbo/SimpleWAWS,davidebbo/SimpleWAWS,fas...
SimpleWAWS/Authentication/GoogleAuthProvider.cs
SimpleWAWS/Authentication/GoogleAuthProvider.cs
using System; using System.Collections.Generic; using System.Configuration; using System.Globalization; using System.Linq; using System.Net; using System.Text; using System.Web; namespace SimpleWAWS.Authentication { public class GoogleAuthProvider : BaseOpenIdConnectAuthProvider { public override stri...
using System; using System.Collections.Generic; using System.Configuration; using System.Globalization; using System.Linq; using System.Net; using System.Text; using System.Web; namespace SimpleWAWS.Authentication { public class GoogleAuthProvider : BaseOpenIdConnectAuthProvider { public override stri...
apache-2.0
C#
edda457ff882bd2a0cb311f4efadfbb93373d100
update bundles
csyntax/BlogSystem
Source/BlogSystem.Web/App_Start/BundleConfig.cs
Source/BlogSystem.Web/App_Start/BundleConfig.cs
namespace BlogSystem.Web { using System.Web.Optimization; public class BundleConfig { // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862 public static void RegisterBundles(BundleCollection bundles) { RegisterScripts(bundles); ...
namespace BlogSystem.Web { using System.Web.Optimization; public class BundleConfig { // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862 public static void RegisterBundles(BundleCollection bundles) { RegisterScripts(bundles); ...
mit
C#
6dfe95db74b6d12d1ed5b9567a0652eb6303d589
Allow RulesetConfigCache to return null configs
smoogipoo/osu,EVAST9919/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,ZLima12/osu,2yangk23/osu,johnneijzen/osu,peppy/osu,ppy/osu,smoogipoo/osu,peppy/osu,UselessToucan/osu,EVAST9919/osu,ZLima12/osu,johnneijzen/osu,NeoAdonis/osu,smoogipooo/osu,peppy/osu-new,ppy/osu,2yangk23/osu,peppy/osu,UselessToucan/osu,smo...
osu.Game/Rulesets/RulesetConfigCache.cs
osu.Game/Rulesets/RulesetConfigCache.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Concurrent; using osu.Framework.Graphics; using osu.Game.Configuration; using osu.Game.Rulesets.Configuration; namespace osu.Game...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Concurrent; using osu.Framework.Graphics; using osu.Game.Configuration; using osu.Game.Rulesets.Configuration; namespace osu.Game...
mit
C#
88f678c1a027999077aed0782502367d215a1d8e
Remove some temp logic for update settings
panjkov/OpenLiveWriter,Gordon-Beeming/OpenLiveWriter,willduff/OpenLiveWriter-1,Gordon-Beeming/OpenLiveWriter,willduff/OpenLiveWriter-1,Gordon-Beeming/OpenLiveWriter,randrey/OpenLiveWriter,willduff/OpenLiveWriter-1,punker76/OpenLiveWriter,willduff/OpenLiveWriter-1,KirillOsenkov/OpenLiveWriter,adilmughal/OpenLiveWriter,P...
src/managed/OpenLiveWriter.PostEditor/Updates/UpdateSettings.cs
src/managed/OpenLiveWriter.PostEditor/Updates/UpdateSettings.cs
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for details. using System; using System.Collections.Generic; using System.Text; using OpenLiveWriter.CoreServices; using OpenLiveWriter.CoreServices.Settings; namespace OpenLiveWriter.PostEdi...
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for details. using System; using System.Collections.Generic; using System.Text; using OpenLiveWriter.CoreServices; using OpenLiveWriter.CoreServices.Settings; namespace OpenLiveWriter.PostEdi...
mit
C#
268eca922f6bffd8b36cc8fe27bffd70bd322f30
Bump version to 8.7.0-rc
robertjf/Umbraco-CMS,arknu/Umbraco-CMS,mattbrailsford/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,leekelleher/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,tcmorris/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,madsoulswe/Umbraco-CMS,hfloyd/Umbraco-CMS,tcmorris/Umbraco-CMS,bjarnef/Umbraco-CMS,madsoulswe/Umbraco-CMS,KevinJump/Umb...
src/SolutionInfo.cs
src/SolutionInfo.cs
using System.Reflection; using System.Resources; [assembly: AssemblyCompany("Umbraco")] [assembly: AssemblyCopyright("Copyright © Umbraco 2020")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: NeutralResourcesLanguage("en-US")] // versions // read https://stackoverflow.com/questions/64...
using System.Reflection; using System.Resources; [assembly: AssemblyCompany("Umbraco")] [assembly: AssemblyCopyright("Copyright © Umbraco 2020")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: NeutralResourcesLanguage("en-US")] // versions // read https://stackoverflow.com/questions/64...
mit
C#
716421272ef5d824811b829641284d916a569c7f
Improve TableGeneratur unit tests.
stone-pagamentos/StrangerData
test/StrangerData.UnitTests/Generator/TableGeneratorTests.cs
test/StrangerData.UnitTests/Generator/TableGeneratorTests.cs
using Moq; using StrangerData.Generator; using Xunit; namespace StrangerData.UnitTests.Generator { public class TableGeneratorTests { [Fact] public void Constructor_TablesFromDatabasesWithDifferentConnectionString_GetTableSchemaInfoFromBothDatabases() { // Arrange ...
using Moq; using StrangerData.Generator; using Xunit; namespace StrangerData.UnitTests.Generator { public class TableGeneratorTests { [Fact] public void Constructor_TablesFromDifferentDatabasesWithSameName_GetTableSchemaInfoFromBothDatabases() { // Arrange Mock<...
mit
C#
efffa14902a8adb7baca794df95d33e54cd5a240
Disable translate API test (#5257)
elastic/elasticsearch-net,elastic/elasticsearch-net
tests/Tests/XPack/Sql/TranslateSql/TranslateSqlQueryApiTests.cs
tests/Tests/XPack/Sql/TranslateSql/TranslateSqlQueryApiTests.cs
// Licensed to Elasticsearch B.V under one or more agreements. // Elasticsearch B.V licenses this file to you under the Apache 2.0 License. // See the LICENSE file in the project root for more information using System; using Elastic.Elasticsearch.Xunit.XunitPlumbing; using Elastic.Transport; using FluentAssertions; us...
// Licensed to Elasticsearch B.V under one or more agreements. // Elasticsearch B.V licenses this file to you under the Apache 2.0 License. // See the LICENSE file in the project root for more information using System; using Elastic.Transport; using FluentAssertions; using Nest; using Tests.Core.ManagedElasticsearch.C...
apache-2.0
C#
3f0f59338df03d41abdef7a6b26548620e12448d
Simplify reading resources.
KirillOsenkov/MSBuildStructuredLog,KirillOsenkov/MSBuildStructuredLog
src/StructuredLogger/Strings/ResourcesCollection.cs
src/StructuredLogger/Strings/ResourcesCollection.cs
using System; using System.Collections.Generic; using System.Globalization; using System.Runtime.Serialization.Json; using ResourcesDictionary = System.Collections.Generic.Dictionary<string, System.Collections.Generic.Dictionary<string, string>>; namespace Microsoft.Build.Logging.StructuredLogger { public...
using System; using System.Collections.Generic; using System.Globalization; using System.Runtime.Serialization.Json; namespace Microsoft.Build.Logging.StructuredLogger { public class ResourcesCollection { public Dictionary<string, Dictionary<string, string>> CultureResources { get; set; } ...
mit
C#
843b1ab1a19692dfb3f761f554cd3ca767c686a9
Fix copyright
sharwell/roslyn,AlekseyTs/roslyn,jmarolf/roslyn,gafter/roslyn,ErikSchierboom/roslyn,davkean/roslyn,jmarolf/roslyn,mavasani/roslyn,tmat/roslyn,wvdd007/roslyn,AlekseyTs/roslyn,eriawan/roslyn,davkean/roslyn,shyamnamboodiripad/roslyn,KevinRansom/roslyn,KirillOsenkov/roslyn,bartdesmet/roslyn,panopticoncentral/roslyn,brettfo...
src/Features/Core/Portable/ChangeSignature/Parameter.cs
src/Features/Core/Portable/ChangeSignature/Parameter.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 namespace Microsoft.CodeAnalysis.ChangeSignature { internal abstract class Parameter { ...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #nullable enable namespace Microsoft.CodeAnalysis.ChangeSignature { internal abstract class Parameter { public abstract bool HasExplicitDefa...
mit
C#
7633033c0c7c1afdf64c9dc5802ec2551236b41c
fix comments
CyrusNajmabadi/roslyn,dotnet/roslyn,shyamnamboodiripad/roslyn,dotnet/roslyn,CyrusNajmabadi/roslyn,bartdesmet/roslyn,jasonmalinowski/roslyn,dotnet/roslyn,jasonmalinowski/roslyn,bartdesmet/roslyn,CyrusNajmabadi/roslyn,mavasani/roslyn,shyamnamboodiripad/roslyn,mavasani/roslyn,jasonmalinowski/roslyn,shyamnamboodiripad/rosl...
src/Features/Core/Portable/Snippets/ISnippetProvider.cs
src/Features/Core/Portable/Snippets/ISnippetProvider.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Threading.T...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Threading.T...
mit
C#
2e2b48e007fb6e31cacaac0e3797217a920b609c
Update ChrisHamons.cs
stvansolano/planetxamarin,beraybentesen/planetxamarin,planetxamarin/planetxamarin,beraybentesen/planetxamarin,planetxamarin/planetxamarin,MabroukENG/planetxamarin,stvansolano/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,MabroukENG/planetxamarin,stvansolano/planetxamarin,beraybentesen/planetxama...
src/Firehose.Web/Authors/ChrisHamons.cs
src/Firehose.Web/Authors/ChrisHamons.cs
using System; using System.Collections.Generic; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class ChrisHamons : IWorkAtXamarinOrMicrosoft { public string FirstName => "Chris"; public string LastName => "Hamons"; public string ShortBioOrTagLine => "is the ...
using System; using System.Collections.Generic; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class ChrisHamons : IWorkAtXamarinOrMicrosoft { public string FirstName => "Chris"; public string LastName => "Hamons"; public string ShortBioOrTagLine => "Xamarin...
mit
C#
a4ba1c41bcdf0380afcb4232a61117fc4b8235fc
Update version output to client (#2754)
LtRipley36706/ACE,LtRipley36706/ACE,ACEmulator/ACE,LtRipley36706/ACE,ACEmulator/ACE,ACEmulator/ACE
Source/ACE.Server/Network/Handlers/GetServerVersionHandler.cs
Source/ACE.Server/Network/Handlers/GetServerVersionHandler.cs
using ACE.Database; using ACE.Entity.Enum; using ACE.Server.Network.Enum; using ACE.Server.Network.GameMessages; using ACE.Server.Network.GameMessages.Messages; using System.Diagnostics; using System.Reflection; namespace ACE.Server.Network.Handlers { public static class GetServerVersionHandler { [Gam...
using ACE.Database; using ACE.Entity.Enum; using ACE.Server.Network.Enum; using ACE.Server.Network.GameMessages; using ACE.Server.Network.GameMessages.Messages; using System.Diagnostics; using System.Reflection; namespace ACE.Server.Network.Handlers { public static class GetServerVersionHandler { [Gam...
agpl-3.0
C#
43ba89cca7b8bce26e3bffe76867346a10d7a1e5
test commented
Risvana/Code.Library,Abhith/Code.Library,Abhith/Code.Library
Source/Code.Library/Code.Library.Tests/DateTimeHelperTests.cs
Source/Code.Library/Code.Library.Tests/DateTimeHelperTests.cs
using System; namespace Code.Library.Tests { public class DateTimeHelperTests { //[Fact] public void GetArabianStandardTimeTest() { // Arrange var serverDate = DateTime.Now; var uaeTime = serverDate.GetArabianStandardTime(); } } }
using Code.Library; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Code.Library.Tests { [TestClass()] public class DateTimeHelperTests { [TestMethod()] public ...
apache-2.0
C#
52de7ce6a730ad9134418a0333764a0940070c30
Add ExpectedException to failing test case as per @gabikliot's comment on #846
jdom/orleans,Joshua-Ferguson/orleans,ibondy/orleans,jokin/orleans,gabikliot/orleans,Liversage/orleans,pherbel/orleans,jokin/orleans,ticup/orleans,shlomiw/orleans,rrector/orleans,waynemunro/orleans,kylemc/orleans,Carlm-MS/orleans,dariobottazzi/orleans,centur/orleans,shlomiw/orleans,veikkoeeva/orleans,Joshua-Ferguson/orl...
src/Tester/ExceptionPropagationTests.cs
src/Tester/ExceptionPropagationTests.cs
/* Project Orleans Cloud Service SDK ver. 1.0 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, inc...
/* Project Orleans Cloud Service SDK ver. 1.0 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, inc...
mit
C#
60e2f490f7d6d114d144370f58b118b057dfeea6
Correct spacing issue in console output
GuitarRich/Unicorn,bllue78/Unicorn,bllue78/Unicorn,MacDennis76/Unicorn,rmwatson5/Unicorn,PetersonDave/Unicorn,kamsar/Unicorn,PetersonDave/Unicorn,rmwatson5/Unicorn,GuitarRich/Unicorn,kamsar/Unicorn,MacDennis76/Unicorn
src/Unicorn/ControlPanel/SyncConsole.cs
src/Unicorn/ControlPanel/SyncConsole.cs
using System; using System.Linq; using System.Web; using Kamsar.WebConsole; using Unicorn.Dependencies; using Unicorn.Loader; using Unicorn.Logging; namespace Unicorn.ControlPanel { /// <summary> /// Runs a Unicorn sync using current DI configuration in a WebConsole, and logs it to the Sitecore log as well /// </s...
using System; using System.Linq; using System.Web; using Kamsar.WebConsole; using Unicorn.Dependencies; using Unicorn.Loader; using Unicorn.Logging; namespace Unicorn.ControlPanel { /// <summary> /// Runs a Unicorn sync using current DI configuration in a WebConsole, and logs it to the Sitecore log as well /// </s...
mit
C#
c70473f762a86f02d57f3ed9396aedbf7e886c60
Break failing test into working & non-working parts
auth0/auth0.net,auth0/auth0.net
tests/Auth0.ManagementApi.IntegrationTests/StatsTests.cs
tests/Auth0.ManagementApi.IntegrationTests/StatsTests.cs
using System; using System.Threading.Tasks; using FluentAssertions; using Xunit; using Auth0.Tests.Shared; using System.Linq; namespace Auth0.ManagementApi.IntegrationTests { public class StatsTests : TestBase { [Fact] public async Task Daily_Stats_Returns_Values() { string...
using System; using System.Threading.Tasks; using FluentAssertions; using Xunit; using Auth0.Tests.Shared; namespace Auth0.ManagementApi.IntegrationTests { public class StatsTests : TestBase { [Fact(Skip = "Inactivity causes these to fail")] public async Task Test_stats_sequence() { ...
mit
C#
2b9f7d551f7214fba14b38f8629ba6b539700c4a
Fix incorrect type specification
johnneijzen/osu,ppy/osu,smoogipooo/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,peppy/osu,ZLima12/osu,peppy/osu-new,UselessToucan/osu,2yangk23/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,johnneijzen/osu,smoogipoo/osu,ZLima12/osu,NeoAdonis/osu,EVAST9919/osu,smoogipoo/osu,EVAST9919/osu,2yangk23/osu...
osu.Game/Online/API/Requests/Responses/APIChangelogBuild.cs
osu.Game/Online/API/Requests/Responses/APIChangelogBuild.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 Newtonsoft.Json; using System; using System.Collections.Generic; namespace osu.Game.Online.API.Requests.Responses { public class APIChangelogBuild : IEquatabl...
// 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 Newtonsoft.Json; using System; using System.Collections.Generic; namespace osu.Game.Online.API.Requests.Responses { public class APIChangelogBuild : IEquatabl...
mit
C#
d82dc2601150a930543e1564d53137bdd47067fb
add BaseController and add ninject implementation for db
Aleksandyr/HR-Agency-System,Aleksandyr/HR-Agency-System
HRAgencySystem/HRAgencySystem.Web/Controllers/HomeController.cs
HRAgencySystem/HRAgencySystem.Web/Controllers/HomeController.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using HRAgencySystem.Data.DataLayer; namespace HRAgencySystem.Web.Controllers { public class HomeController : BaseController { public HomeController(IHRAgancyData data) : base(data) ...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using HRAgencySystem.Data.DataLayer; namespace HRAgencySystem.Web.Controllers { public class HomeController : BaseController { public HomeController(IHRAgancyData data) : base(data) ...
mit
C#
3bb80289548a289cb3aa453e013da029fae2845a
mark model as CLS compliant
keith-hall/schemazen,ruediger-stevens/schemazen,sethreno/schemazen,sethreno/schemazen,Zocdoc/schemazen
model/Properties/AssemblyInfo.cs
model/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("model")] [assembly: AssemblyDescription(...
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("model")] [assembly: AssemblyDescription(...
mit
C#
58742afd99f131baeb23f0bc85b8161da1559847
Add failing test case
peppy/osu-new,smoogipoo/osu,ppy/osu,peppy/osu,peppy/osu,peppy/osu,UselessToucan/osu,smoogipooo/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipoo/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,NeoAdonis/osu,ppy/osu
osu.Game.Rulesets.Mania.Tests/ManiaLegacyModConversionTest.cs
osu.Game.Rulesets.Mania.Tests/ManiaLegacyModConversionTest.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 NUnit.Framework; using osu.Game.Beatmaps.Legacy; using osu.Game.Rulesets.Mania.Mods; using osu.Game.Tests.Beatmaps; namespace osu.Game.Rulesets.Mani...
// 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 NUnit.Framework; using osu.Game.Beatmaps.Legacy; using osu.Game.Rulesets.Mania.Mods; using osu.Game.Tests.Beatmaps; namespace osu.Game.Rulesets.Mani...
mit
C#
2c6be614e89eb6506c8de18864c3d4c218913dd8
fix documentation
GestionSystemesTelecom/gst-library,GestionSystemesTelecom/gst-library
src/GST.Library.Data/Model/DataAnnotations/InListAttribute.cs
src/GST.Library.Data/Model/DataAnnotations/InListAttribute.cs
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Globalization; using System.Linq; namespace GST.Library.Data.Model.DataAnnotations { /// <summary> /// Validate that the data is in the list /// </summary> [AttributeUsage(AttributeTargets.Propert...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Globalization; using System.Linq; namespace GST.Library.Data.Model.DataAnnotations { /// <summary> /// Validate that the data is in the list /// </summary> [AttributeUsage(AttributeTargets.Propert...
mit
C#
eb89ad91e35c7cfe30708d3babe805f407a1a6fc
Add eval table border
mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander
Battery-Commander.Web/Views/Reports/EvaluationsDue.cshtml
Battery-Commander.Web/Views/Reports/EvaluationsDue.cshtml
@model IEnumerable<BatteryCommander.Web.Models.Evaluation> <h1>Past Due and Upcoming Evaluations</h1> <table border="1"> <thead> <tr> <th>Ratee</th> <th>Rater</th> <th>Senior Rater</th> <th>Due Date</th> <th>Last Update</th> </tr> </t...
@model IEnumerable<BatteryCommander.Web.Models.Evaluation> <h1>Past Due and Upcoming Evaluations</h1> <table class="table table-condensed"> <thead> <tr> <th>Ratee</th> <th>Rater</th> <th>Senior Rater</th> <th>Due Date</th> <th>Last Update</th> ...
mit
C#
48639e31fd23d8d84c424bae3562c1f91dde9773
Fix crash if several division have same tag
roman-yagodin/R7.News,roman-yagodin/R7.News,roman-yagodin/R7.News
R7.News/Integrations/UniversityDivisionTermUrlProvider.cs
R7.News/Integrations/UniversityDivisionTermUrlProvider.cs
// // UniversityDivisionTermUrlProvider.cs // // Author: // Roman M. Yagodin <roman.yagodin@gmail.com> // // Copyright (c) 2016 Roman M. Yagodin // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Sof...
// // UniversityDivisionTermUrlProvider.cs // // Author: // Roman M. Yagodin <roman.yagodin@gmail.com> // // Copyright (c) 2016 Roman M. Yagodin // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Sof...
agpl-3.0
C#
a96436a9a3f0d5f281f0a1950418f824723208eb
fix pinned messages handling
Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns
TCC.Core/Controls/ChatControls/DefaultMessageBody.xaml.cs
TCC.Core/Controls/ChatControls/DefaultMessageBody.xaml.cs
using System.Diagnostics; using System.Linq; using System.Windows; using System.Windows.Input; using Dragablz; using TCC.Data; using TCC.ViewModels; namespace TCC.Controls.ChatControls { /// <summary> /// Interaction logic for DefaultMessageBody.xaml /// </summary> public partial class DefaultMessageB...
using System.Linq; using System.Windows; using System.Windows.Input; using TCC.Data; using TCC.ViewModels; namespace TCC.Controls.ChatControls { /// <summary> /// Interaction logic for DefaultMessageBody.xaml /// </summary> public partial class DefaultMessageBody { public DefaultMessageBod...
mit
C#
fdfe24f063b1c78b07a4997e60941ad30d62c591
Fix warnings
amironov73/ManagedIrbis,amironov73/ManagedIrbis,amironov73/ManagedIrbis,amironov73/ManagedIrbis,amironov73/ManagedIrbis
Source/Classic/Libs/ManagedIrbis.Office/Properties/AssemblyInfo.cs
Source/Classic/Libs/ManagedIrbis.Office/Properties/AssemblyInfo.cs
// This is an open source non-commercial project. Dear PVS-Studio, please check it. // PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com /* AssemblyInfo.cs * Ars Magna project, http://arsmagna.ru * ------------------------------------------------------- * Status: poor */ #region Using dire...
// This is an open source non-commercial project. Dear PVS-Studio, please check it. // PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com /* AssemblyInfo.cs * Ars Magna project, http://arsmagna.ru * ------------------------------------------------------- * Status: poor */ #region Using dire...
mit
C#
9ca1ee4c5408ff01244953593b0186829da061c8
Fix FILETIME handling
msgpack/msgpack-cli,undeadlabs/msgpack-cli,modulexcite/msgpack-cli,modulexcite/msgpack-cli,undeadlabs/msgpack-cli,msgpack/msgpack-cli,scopely/msgpack-cli,scopely/msgpack-cli
cli/src/MsgPack/Serialization/DefaultMarshalers/System_Runtime_InteropServices_ComTypes_FILETIMEMessageMarshaler.cs
cli/src/MsgPack/Serialization/DefaultMarshalers/System_Runtime_InteropServices_ComTypes_FILETIMEMessageMarshaler.cs
#region -- License Terms -- // // MessagePack for CLI // // Copyright (C) 2010 FUJIWARA, Yusuke // // 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.or...
#region -- License Terms -- // // MessagePack for CLI // // Copyright (C) 2010 FUJIWARA, Yusuke // // 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.or...
apache-2.0
C#
81ac40e82dbb106d6b8402affde2aec6dfb0eebf
Fix a bad copy-paste \n\nCommit migrated from https://github.com/dotnet/aspnetcore-tooling/commit/d63c6bbc2cfdc6e89ebc06763674b94ab66ae3fb
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
src/Razor/test/Microsoft.AspNetCore.Razor.Test.ComponentShim/Microsoft.AspNetCore.Components/EventCallbackFactory.cs
src/Razor/test/Microsoft.AspNetCore.Razor.Test.ComponentShim/Microsoft.AspNetCore.Components/EventCallbackFactory.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.Threading.Tasks; namespace Microsoft.AspNetCore.Components { public sealed class EventCallbackFactory { pub...
// 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.Threading.Tasks; namespace Microsoft.AspNetCore.Components { public sealed class EventCallbackFactory { pub...
apache-2.0
C#
2529497967352672235ebadf78770bde0289e476
Update HomeController.cs
jennings/AspNetIdentityExamples
CookieAuthentication/Controllers/HomeController.cs
CookieAuthentication/Controllers/HomeController.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Web; using System.Web.Mvc; using CookieAuthentication.Views.Home; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Identity.Owin; namespace CookieAuthentication.Controllers { public class HomeContr...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Web; using System.Web.Mvc; using CookieAuthentication.Views.Home; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Identity.Owin; namespace CookieAuthentication.Controllers { public class HomeContr...
mit
C#
24f372619f061086ffacd7370041d85b037f586d
Revert "Navigate up many parents"
Gibe/Gibe.DittoProcessors
Gibe.DittoProcessors/Processors/ParentAttribute.cs
Gibe.DittoProcessors/Processors/ParentAttribute.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Gibe.DittoProcessors.Processors { public class ParentAttribute : TestableDittoProcessorAttribute { public override object ProcessValue() { return Context.Content.Parent; } } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Gibe.DittoProcessors.Processors { public class ParentAttribute : TestableDittoProcessorAttribute { private readonly uint _parentDepth; public ParentAttribute(uint parentDepth = 1) { ...
mit
C#
f207d9386f7e6b73531f854da24f048480f7fb88
Remove internal static strings in InternalSR.cs
dotnet/wcf,KKhurin/wcf,ElJerry/wcf,MattGal/wcf,StephenBonikowsky/wcf,dotnet/wcf,mconnew/wcf,KKhurin/wcf,shmao/wcf,MattGal/wcf,hongdai/wcf,imcarolwang/wcf,dotnet/wcf,shmao/wcf,ericstj/wcf,ericstj/wcf,imcarolwang/wcf,hongdai/wcf,zhenlan/wcf,mconnew/wcf,mconnew/wcf,ElJerry/wcf,zhenlan/wcf,imcarolwang/wcf,StephenBonikowsky...
src/System.Private.ServiceModel/src/Internals/InternalSR.cs
src/System.Private.ServiceModel/src/Internals/InternalSR.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.ServiceModel; namespace System.Runtime { internal class InternalSR { internal static ...
// 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.ServiceModel; namespace System.Runtime { internal class InternalSR { internal static ...
mit
C#
1e000e1e738a1e0d0abca8948a4611c03577377c
Change version to 0.0.4
another-guy/Murmansk.ComponentModel
Murmansk.ComponentModel/Properties/AssemblyInfo.cs
Murmansk.ComponentModel/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("Murmansk.ComponentModel")] [assembly: Ass...
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("Murmansk.ComponentModel")] [assembly: Ass...
mit
C#
fb9a338bc4f3c621b3fc38c4a32359eb90e6608d
Update svn properties.
ft-/arribasim-dev-extras,M-O-S-E-S/opensim,OpenSimian/opensimulator,TomDataworks/opensim,ft-/arribasim-dev-tests,bravelittlescientist/opensim-performance,RavenB/opensim,ft-/opensim-optimizations-wip-extras,M-O-S-E-S/opensim,ft-/arribasim-dev-extras,bravelittlescientist/opensim-performance,OpenSimian/opensimulator,ft-/a...
OpenSim/Framework/Statistics/BaseStatsCollector.cs
OpenSim/Framework/Statistics/BaseStatsCollector.cs
/* * Copyright (c) Contributors, http://opensimulator.org/ * See CONTRIBUTORS.TXT for a full list of copyright holders. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must ...
/* * Copyright (c) Contributors, http://opensimulator.org/ * See CONTRIBUTORS.TXT for a full list of copyright holders. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code...
bsd-3-clause
C#
a9916e88ca3d47f0c9e83ed13fbc4db089c08366
add commented random alternative
iarovyi/SortingExtensions
SortingExtensions/Implementation/RandomProvider.cs
SortingExtensions/Implementation/RandomProvider.cs
using System; using System.Threading; namespace SortingExtensions.Implementation { internal static class RandomProvider { private static int _seed = Environment.TickCount; //Alternative: private static readonly ThreadLocal<Random> ThreadLocalRandom = new ThreadLocal<Random>(() => new...
using System; using System.Threading; namespace SortingExtensions.Implementation { internal static class RandomProvider { private static int _seed = Environment.TickCount; private static readonly ThreadLocal<Random> ThreadLocalRandom = new ThreadLocal<Random>(() => new Random(Interlo...
mit
C#
b68c1fa810d8d248d504d706dd48c28a342af487
Add attributes that can't be easily tested due to being public in the current target framework
JakeGinnivan/ApiApprover
src/PublicApiGenerator/AttributeFilter.RequiredAttributeNames.cs
src/PublicApiGenerator/AttributeFilter.RequiredAttributeNames.cs
using System.Collections.Generic; namespace PublicApiGenerator { partial class AttributeFilter { private static readonly HashSet<string> RequiredAttributeNames = new HashSet<string> { "System.Diagnostics.CodeAnalysis.AllowNullAttribute", "System.Diagnostics.CodeAnalysis....
using System.Collections.Generic; namespace PublicApiGenerator { partial class AttributeFilter { private static readonly HashSet<string> RequiredAttributeNames = new HashSet<string> { "System.Diagnostics.CodeAnalysis.AllowNullAttribute", "System.Diagnostics.CodeAnalysis....
mit
C#
c4c032b4d5d4d82d689f3fa349522fb4936945ad
Bump TweetDuck.Video project version
chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck
video/Properties/AssemblyInfo.cs
video/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("TweetDuck Video")] [assembly: AssemblyDesc...
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("TweetDuck Video")] [assembly: AssemblyDesc...
mit
C#
5dfedb211b0e84c89aae2116ace823387f1e9c86
Add Retrieve method to GameBinariesHandler class
lucasdavid/Gamedalf,lucasdavid/Gamedalf
Gamedalf/Infrastructure/Games/GameBinariesHandler.cs
Gamedalf/Infrastructure/Games/GameBinariesHandler.cs
using Gamedalf.Infrastructure.Exceptions; using System; using System.IO; using System.Web; namespace Gamedalf.Infrastructure.Games { public class GameBinariesHandler : GameFilesHandler { private const string BasePath = "~/GamesBinaries"; private HttpPostedFileBase _binary; ...
using Gamedalf.Infrastructure.Exceptions; using System; using System.IO; using System.Web; namespace Gamedalf.Infrastructure.Games { public class GameBinariesHandler : GameFilesHandler { private const string BasePath = "~/GamesBinaries"; private HttpPostedFileBase _binary; ...
mit
C#
25e5905de7e0c7a1a712532695199d67eafce7f0
Update null check
ninjanye/SearchExtensions
NinjaNye.SearchExtensions/FluentLevenshteinSearch.cs
NinjaNye.SearchExtensions/FluentLevenshteinSearch.cs
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using NinjaNye.SearchExtensions.Helpers; using NinjaNye.SearchExtensions.Validation; namespace NinjaNye.SearchExtensions { public static class FluentLevenshteinSearch { /// <summary> /// Begin a L...
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using NinjaNye.SearchExtensions.Helpers; namespace NinjaNye.SearchExtensions { public static class FluentLevenshteinSearch { /// <summary> /// Begin a Levenshtein comparison on Enumerable collecti...
mit
C#
ba0e60dc85abb8d9fdd82775f84e4a9cff3c5d6d
Remove unusage variable
NAXAM/xf-mapbox
Naxam.Mapbox.Platform.iOS/Extensions/NativeViewExtensions.cs
Naxam.Mapbox.Platform.iOS/Extensions/NativeViewExtensions.cs
using System; using CoreGraphics; using UIKit; using Xamarin.Forms; using Xamarin.Forms.Platform.iOS; namespace Naxam.Mapbox.Platform.iOS.Extensions { public static class NativeViewExtensions { public static UIView FormsToNative(this Xamarin.Forms.View formView) { if (formView == n...
using System; using CoreGraphics; using UIKit; using Xamarin.Forms; using Xamarin.Forms.Platform.iOS; namespace Naxam.Mapbox.Platform.iOS.Extensions { public static class NativeViewExtensions { public static UIView FormsToNative(this Xamarin.Forms.View formView) { var xxx = formVie...
mit
C#
fbb65ef08f2d5ffc21d4c542705c33047881f684
Stabilize firefox driver version fetch
rosolko/WebDriverManager.Net
WebDriverManager/DriverConfigs/Impl/FirefoxConfig.cs
WebDriverManager/DriverConfigs/Impl/FirefoxConfig.cs
using System.Linq; using System.Net; using System.Runtime.InteropServices; using AngleSharp.Html.Parser; using Architecture = WebDriverManager.Helpers.Architecture; namespace WebDriverManager.DriverConfigs.Impl { public class FirefoxConfig : IDriverConfig { private const string DownloadUrl = "https://g...
using System.Linq; using System.Net; using System.Runtime.InteropServices; using AngleSharp.Html.Parser; using Architecture = WebDriverManager.Helpers.Architecture; namespace WebDriverManager.DriverConfigs.Impl { public class FirefoxConfig : IDriverConfig { private const string DownloadUrl = "https://g...
mit
C#
3c36d950330329febb44228a39aeb8c87b2def28
Make AssemblyInformation nullable friendly
ASP-NET-MVC-Boilerplate/Templates,ASP-NET-MVC-Boilerplate/Templates
Source/ApiTemplate/Source/ApiTemplate/AssemblyInformation.cs
Source/ApiTemplate/Source/ApiTemplate/AssemblyInformation.cs
namespace ApiTemplate { using System.Reflection; public record AssemblyInformation(string Product, string Description, string Version) { public static readonly AssemblyInformation Current = new AssemblyInformation(typeof(AssemblyInformation).Assembly); public AssemblyInformation(Assembly a...
namespace ApiTemplate { using System.Reflection; public record AssemblyInformation(string Product, string Description, string Version) { public static readonly AssemblyInformation Current = new AssemblyInformation(typeof(AssemblyInformation).Assembly); public AssemblyInformation(Assembly a...
mit
C#
28b17e16c1965bb1ada58b740db5865ad1593fec
save work
Iezious/OrleansTests
StreamAsQueueTest/StreamAsQueueTest/Model/TestStreamGrain.cs
StreamAsQueueTest/StreamAsQueueTest/Model/TestStreamGrain.cs
using System; using System.Threading.Tasks; using Orleans; using Orleans.Streams; namespace StreamAsQueueTest { [ImplicitStreamSubscription("NAMER")] public class TestStreamGrain : Grain, ITestGrain { private int index = 0; public override async Task OnActivateAsync() { ...
using System; using System.Threading.Tasks; using Orleans; using Orleans.Streams; namespace StreamAsQueueTest { [ImplicitStreamSubscription("NAMER")] public class TestStreamGrain : Grain, ITestGrain { private int index = 0; public override async Task OnActivateAsync() { ...
mit
C#
5c646406f375ac32de3ed1691a2f6e319d4bee8f
Fix comment
jasonracey/iTunesAssistant
iTunesAssistantLib/Workflow/AlbumWorkflowRunner.cs
iTunesAssistantLib/Workflow/AlbumWorkflowRunner.cs
using System; using System.Linq; namespace iTunesAssistantLib { public class AlbumWorkflowRunner : IWorkflowRunner { public void Run(IWorkflowRunnerInfo workflowRunnerInfo, ref Status status) { if (workflowRunnerInfo == null) throw new ArgumentNullException(nameof(workflowRunnerInf...
using System; using System.Linq; namespace iTunesAssistantLib { public class AlbumWorkflowRunner : IWorkflowRunner { public void Run(IWorkflowRunnerInfo workflowRunnerInfo, ref Status status) { if (workflowRunnerInfo == null) throw new ArgumentNullException(nameof(workflowRunnerInf...
mit
C#
5c86f56ff2a10390af5039956a788ec083034aef
Add more tests for function passing and managed object interop
JavascriptNet/Javascript.Net,JavascriptNet/Javascript.Net
Tests/Noesis.Javascript.Tests/JavascriptFunctionTests.cs
Tests/Noesis.Javascript.Tests/JavascriptFunctionTests.cs
using System.Collections.Generic; using System.Linq; using FluentAssertions; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Noesis.Javascript.Tests { [TestClass] public class JavascriptFunctionTests { private JavascriptContext _context; [TestInitialize] public void ...
using FluentAssertions; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Noesis.Javascript.Tests { [TestClass] public class JavascriptFunctionTests { private JavascriptContext _context; [TestInitialize] public void SetUp() { _context = new Javascri...
bsd-2-clause
C#
d4b4d8f3640debb0e2cce638729051b535b08fa9
Update MultibaseCorrelationService.cs
tiksn/TIKSN-Framework
TIKSN.Core/Integration/Correlation/MultibaseCorrelationService.cs
TIKSN.Core/Integration/Correlation/MultibaseCorrelationService.cs
using System; using Microsoft.Extensions.Options; using Multiformats.Base; namespace TIKSN.Integration.Correlation { public class MultibaseCorrelationService : ICorrelationService { private readonly IOptions<MultibaseCorrelationServiceOptions> _multibaseCorrelationServiceOptions; private readon...
using System; using Microsoft.Extensions.Options; using Multiformats.Base; namespace TIKSN.Integration.Correlation { public class MultibaseCorrelationService : ICorrelationService { private readonly IOptions<MultibaseCorrelationServiceOptions> _multibaseCorrelationServiceOptions; private readon...
mit
C#
7fd424700784568cce2806c1d1657d27b5a9046b
Make const to satisfy r#
damianh/Cedar.CommandHandling,dcomartin/Cedar.CommandHandling,damianh/Cedar.CommandHandling,damianh/Cedar.CommandHandling,dcomartin/Cedar.CommandHandling,dcomartin/Cedar.CommandHandling
src/Cedar.HttpCommandHandling.Example/06_UnitTestingHandlers.cs
src/Cedar.HttpCommandHandling.Example/06_UnitTestingHandlers.cs
/* * Example of how to test a handler */ // ReSharper disable once CheckNamespace namespace Cedar.HttpCommandHandling.Example.Commands.UnitTestinHandlers { using System; using System.Threading; using System.Threading.Tasks; using Cedar.HttpCommandHandling; using FakeItEasy; using Xunit; ...
/* * Example of how to test a handler */ // ReSharper disable once CheckNamespace namespace Cedar.HttpCommandHandling.Example.Commands.UnitTestinHandlers { using System; using System.Threading; using System.Threading.Tasks; using Cedar.HttpCommandHandling; using FakeItEasy; using Xunit; ...
mit
C#
73b8d086b70e48e194577fca91cb68236ede317c
Remove newlines
EVAST9919/osu-framework,Tom94/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,DrabWeb/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,Tom94/osu-framework,ppy/osu-framework,ppy/osu-fram...
osu.Framework/Configuration/IBindableCollection.cs
osu.Framework/Configuration/IBindableCollection.cs
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE using System.Collections; using System.Collections.Generic; namespace osu.Framework.Configuration { public interface IBindableCollection : ICollection, I...
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE using System.Collections; using System.Collections.Generic; namespace osu.Framework.Configuration { public interface IBindableCollection : ICollection, I...
mit
C#
5c13200c75d581b796306b04e5d21ad3082beb3b
Update production endpoint to new version
ppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu,peppy/osu,NeoAdonis/osu,ppy/osu,ppy/osu,NeoAdonis/osu
osu.Game/Online/ProductionEndpointConfiguration.cs
osu.Game/Online/ProductionEndpointConfiguration.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. namespace osu.Game.Online { public class ProductionEndpointConfiguration : EndpointConfiguration { public ProductionEndpointConfiguration() { ...
// 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. namespace osu.Game.Online { public class ProductionEndpointConfiguration : EndpointConfiguration { public ProductionEndpointConfiguration() { ...
mit
C#
6951ebc0c3e848ec964062ed2cdb8758d94b1b8b
Make default version table meta data virtual
wolfascu/fluentmigrator,dealproc/fluentmigrator,lcharlebois/fluentmigrator,eloekset/fluentmigrator,lcharlebois/fluentmigrator,KaraokeStu/fluentmigrator,drmohundro/fluentmigrator,bluefalcon/fluentmigrator,mstancombe/fluentmig,vgrigoriu/fluentmigrator,daniellee/fluentmigrator,schambers/fluentmigrator,barser/fluentmigrato...
src/FluentMigrator/VersionTableInfo/DefaultVersionTableMetaData.cs
src/FluentMigrator/VersionTableInfo/DefaultVersionTableMetaData.cs
#region License // // Copyright (c) 2007-2009, Sean Chambers <schambers80@gmail.com> // // 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 /...
#region License // // Copyright (c) 2007-2009, Sean Chambers <schambers80@gmail.com> // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 /...
apache-2.0
C#
f03a78838131cfb6e3c52b935f81f9b16091d406
更新 .net 4.5 版本号 MP v16.7.17 添加 JsSdkAddCardUiPackage(JSSDK 卡券 AddCard API 调用的参数)#1898 感谢 @@jiehanlin
JeffreySu/WeiXinMPSDK,JeffreySu/WeiXinMPSDK,lishewen/WeiXinMPSDK,mc7246/WeiXinMPSDK,mc7246/WeiXinMPSDK,lishewen/WeiXinMPSDK,JeffreySu/WeiXinMPSDK,lishewen/WeiXinMPSDK,mc7246/WeiXinMPSDK
src/Senparc.Weixin.MP/Senparc.Weixin.MP/Properties/AssemblyInfo.cs
src/Senparc.Weixin.MP/Senparc.Weixin.MP/Properties/AssemblyInfo.cs
#region Apache License Version 2.0 /*---------------------------------------------------------------- Copyright 2018 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. 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 ...
#region Apache License Version 2.0 /*---------------------------------------------------------------- Copyright 2018 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. 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 ...
apache-2.0
C#
5bd16d589b225b4efbf30a5a8eb3894fa0363971
Remove CurrentScale from PlatingData
jlewin/agg-sharp,larsbrubaker/agg-sharp,MatterHackers/agg-sharp
DataConverters3D/Object3D/PlatingData.cs
DataConverters3D/Object3D/PlatingData.cs
/* Copyright (c) 2014, Lars Brubaker All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the followi...
/* Copyright (c) 2014, Lars Brubaker All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the followi...
bsd-2-clause
C#
400d4b7141dea5eac6331582e845eee03a6f0815
update assembly version
PlayFab/consuldotnet
Consul/Properties/AssemblyInfo.cs
Consul/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("Co...
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("Co...
apache-2.0
C#
b40bfaed281d4124d1c07457067fa69c952bb36d
Fix #27
greatfriends/ThaiBahtText,greatfriends/ThaiBahtText,greatfriends/ThaiBahtText
GFDN.ThaiBahtText/ThaiBahtTextOptions.cs
GFDN.ThaiBahtText/ThaiBahtTextOptions.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace GreatFriends.ThaiBahtText { public class ThaiBahtTextOptions { public UsesEt Mode { get; set; } public Unit Unit { get; set; } public bool AppendBahtOnly { get; set; } public int DecimalPlaces { get; set...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace GreatFriends.ThaiBahtText { public class ThaiBahtTextOptions { public UsesEt Mode { get; set; } public Unit Unit { get; set; } public bool AppendBahtOnly { get; set; } public ThaiBahtTextOptions() ...
mit
C#
ca03281e55205dea6b35d3fa5cd33c43dd384a8b
Fix warnings.
JohanLarsson/Gu.Wpf.DataGrid2D,mennowo/Gu.Wpf.DataGrid2D
Gu.Wpf.DataGrid2D/Views/TransposedRow.cs
Gu.Wpf.DataGrid2D/Views/TransposedRow.cs
namespace Gu.Wpf.DataGrid2D { using System; using System.ComponentModel; using System.Runtime.CompilerServices; public class TransposedRow : CustomTypeDescriptor, INotifyPropertyChanged { private static readonly EventDescriptorCollection Events = TypeDescriptor.GetEvents(typeof(TransposedRo...
namespace Gu.Wpf.DataGrid2D { using System; using System.ComponentModel; using System.Runtime.CompilerServices; public class TransposedRow : CustomTypeDescriptor, INotifyPropertyChanged { private static readonly EventDescriptorCollection Events = TypeDescriptor.GetEvents(typeof(TransposedRo...
mit
C#
8f3fc770e5653afcae2388750bc068353e6ca1fd
change dll version
psliurt/HttpRS,psliurt/HttpRX
HttpRS/Properties/AssemblyInfo.cs
HttpRS/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("Ht...
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("Ht...
mit
C#
f998b0f388bf69e22dd950c7d15b7d9d604571bc
Bump version
oozcitak/imagelistview
ImageListView/Properties/AssemblyInfo.cs
ImageListView/Properties/AssemblyInfo.cs
// ImageListView - A listview control for image files // Copyright (C) 2009 Ozgur Ozcitak // // 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/...
// ImageListView - A listview control for image files // Copyright (C) 2009 Ozgur Ozcitak // // 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/...
apache-2.0
C#
e0ca104c893f6b1dfc72b76505de2912bcd57cf5
Add license.
Nabile-Rahmani/osu-framework,DrabWeb/osu-framework,default0/osu-framework,ZLima12/osu-framework,Tom94/osu-framework,EVAST9919/osu-framework,Tom94/osu-framework,peppy/osu-framework,default0/osu-framework,paparony03/osu-framework,Nabile-Rahmani/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,peppy/osu-fram...
osu.Framework/Graphics/Transforms/TransformEdgeEffectColour.cs
osu.Framework/Graphics/Transforms/TransformEdgeEffectColour.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 OpenTK.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.MathUtils; namespace osu.Framework.Graphics.Transforms { public class ...
using OpenTK.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.MathUtils; namespace osu.Framework.Graphics.Transforms { public class TransformEdgeEffectColour : Transform<Color4> { /// <summary> /// Current value of the transformed colour in linear colour space. ///...
mit
C#
7df4ffbac49e72997fca3f479683372b59dcab5c
Remove extraneous properties from IDeserializer
jzebedee/lcapi
LCAPI/LCAPI/JSON/IDeserializer.cs
LCAPI/LCAPI/JSON/IDeserializer.cs
#region RestSharp License // Copyright 2010 John Sheehan // // 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 requ...
#region RestSharp License // Copyright 2010 John Sheehan // // 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 requ...
agpl-3.0
C#
cac7b43eb0cfa86e60807cb667ca2928fd824823
Update assembly version to 1.2.1.
Loris156/LCrypt
LCrypt/Properties/AssemblyInfo.cs
LCrypt/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; 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: AssemblyTit...
using System.Reflection; using System.Resources; 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: AssemblyTit...
mit
C#
96860d5fead10612d48df4face6fc11fe500ff9c
Make value private
lukedgr/nodejstools,kant2002/nodejstools,munyirik/nodejstools,kant2002/nodejstools,mjbvz/nodejstools,Microsoft/nodejstools,paulvanbrenk/nodejstools,AustinHull/nodejstools,kant2002/nodejstools,paladique/nodejstools,mjbvz/nodejstools,paladique/nodejstools,paladique/nodejstools,paladique/nodejstools,lukedgr/nodejstools,mj...
Nodejs/Product/Nodejs/TestFrameworks/TestFrameworkDirectories.cs
Nodejs/Product/Nodejs/TestFrameworks/TestFrameworkDirectories.cs
//*********************************************************// // Copyright (c) Microsoft. All rights reserved. // // Apache 2.0 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 writing,...
//*********************************************************// // Copyright (c) Microsoft. All rights reserved. // // Apache 2.0 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 writing,...
apache-2.0
C#
2e88e283d84c0547fd2f8272be87de6ccd8375d2
Remove unused using
smoogipoo/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,UselessToucan/osu,smoogipooo/osu,peppy/osu-new,ppy/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,ppy/osu
osu.Game/Rulesets/UI/Scrolling/ScrollingPlayfield.cs
osu.Game/Rulesets/UI/Scrolling/ScrollingPlayfield.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.Bindables; using osu.Game.Rulesets.Objects.Drawables; using osuTK; namespace osu.Game.Rulesets.UI.Scrolling { ///...
// 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.Bindables; using osu.Game.Rulesets.Objects.Drawables; using osu.Game.Skinning; using osuTK; namespace osu.Game.Rulese...
mit
C#
48dc29a971c64df7aa77e902c2a55dd7e4d4074a
fix guiutil.drawrect to not render twice
Unity-Technologies/CodeEditor,Unity-Technologies/CodeEditor
src/CodeEditor.Text.UI.Unity.Engine/GUIUtils.cs
src/CodeEditor.Text.UI.Unity.Engine/GUIUtils.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using UnityEngine; namespace CodeEditor.Text.UI.Unity.Engine { public class GUIUtils { private static GUIStyle _style; public static void DrawRect(Rect lineRect, Color color) { var backup = GUI.color; GUI.color = colo...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using UnityEngine; namespace CodeEditor.Text.UI.Unity.Engine { public class GUIUtils { private static GUIStyle _style; public static void DrawRect(Rect lineRect, Color color) { var backup = GUI.color; GUI.color = colo...
mit
C#
c113704f55ebd45828935fefbcd712f6ed47ea8c
Move conditional compilation around namespace.
BluewireTechnologies/cassette,honestegg/cassette,BluewireTechnologies/cassette,honestegg/cassette,damiensawyer/cassette,andrewdavey/cassette,andrewdavey/cassette,damiensawyer/cassette,damiensawyer/cassette,andrewdavey/cassette,honestegg/cassette
src/Cassette.Views/HtmlString.cs
src/Cassette.Views/HtmlString.cs
#if NET35 namespace Cassette.Views { public interface IHtmlString { string ToHtmlString(); } public class HtmlString : IHtmlString { string _htmlString; public HtmlString(string htmlString) { this._htmlString = htmlString; } public stri...
namespace Cassette.Views { #if NET35 public interface IHtmlString { string ToHtmlString(); } public class HtmlString : IHtmlString { string _htmlString; public HtmlString(string htmlString) { this._htmlString = htmlString; } public stri...
mit
C#
901565f4c24058b02dfc2d426465133dc397a589
Allow unique project name to be used in PowerShell console
mrward/monodevelop-nuget-extensions,mrward/monodevelop-nuget-extensions
src/MonoDevelop.PackageManagement.PowerShell.ConsoleHost.Core/MonoDevelop.PackageManagement.PowerShell.ConsoleHost.Core/ConsoleHostSolutionManager.cs
src/MonoDevelop.PackageManagement.PowerShell.ConsoleHost.Core/MonoDevelop.PackageManagement.PowerShell.ConsoleHost.Core/ConsoleHostSolutionManager.cs
// // ConsoleHostSolutionManager.cs // // Author: // Matt Ward <matt.ward@microsoft.com> // // Copyright (c) 2019 Microsoft // // 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 withou...
// // ConsoleHostSolutionManager.cs // // Author: // Matt Ward <matt.ward@microsoft.com> // // Copyright (c) 2019 Microsoft // // 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 withou...
mit
C#
1599b4c6d31d4f078ebff3c0a9633bf9ff12200d
Remove unused check.
FacilityApi/Facility
src/Facility.Definition/Http/HttpElementInfo.cs
src/Facility.Definition/Http/HttpElementInfo.cs
using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Net; namespace Facility.Definition.Http { /// <summary> /// Base class for HTTP service elements. /// </summary> public abstract class HttpElementInfo { /// <summary> /// Gets the validation errors for the element, i...
using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Net; namespace Facility.Definition.Http { /// <summary> /// Base class for HTTP service elements. /// </summary> public abstract class HttpElementInfo { /// <summary> /// Gets the validation errors for the element, i...
mit
C#
37c6f764ba6b78e8bd5673a1fda0c2a55e8c893a
Fix and streamline data binding code for cancel, close, apply and save buttons.
ronnymgm/csla-light,BrettJaner/csla,ronnymgm/csla-light,rockfordlhotka/csla,rockfordlhotka/csla,rockfordlhotka/csla,MarimerLLC/csla,jonnybee/csla,MarimerLLC/csla,jonnybee/csla,MarimerLLC/csla,JasonBock/csla,jonnybee/csla,BrettJaner/csla,BrettJaner/csla,JasonBock/csla,JasonBock/csla,ronnymgm/csla-light
ProjectTrackercs/PTWin/WinPart.cs
ProjectTrackercs/PTWin/WinPart.cs
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; namespace PTWin { public partial class WinPart : UserControl { public WinPart() { InitializeComponent(); } protected internal v...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; namespace PTWin { public partial class WinPart : UserControl { public WinPart() { InitializeComponent(); } protected internal v...
mit
C#
0e66bf7ca0d2a73035a2705a2bf8ac52f689dd75
refactor Exception or failure to not use reflection
OlegKleyman/AlphaDev,OlegKleyman/AlphaDev,OlegKleyman/AlphaDev
core/AlphaDev.Optional.Extensions/Unsafe/OptionExtensions.cs
core/AlphaDev.Optional.Extensions/Unsafe/OptionExtensions.cs
using System; using System.Reflection; using Optional; namespace AlphaDev.Optional.Extensions.Unsafe { public static class OptionExtensions { public static TException ExceptionOrFailure<T, TException>(this Option<T, TException> option) { return option.Match(_ => throw new InvalidOp...
using System; using System.Reflection; using Optional; namespace AlphaDev.Optional.Extensions.Unsafe { public static class OptionExtensions { public static TException ExceptionOrFailure<T, TException>(this Option<T, TException> option) { if (option.HasValue) { ...
unlicense
C#
467931f44ac0f4b06e74cbf118cece584f69ada9
Update SqlScriptTests.cs
JakeGinnivan/TestStack.ConventionTests,TestStack/TestStack.ConventionTests
SampleApp.Tests/SqlScriptTests.cs
SampleApp.Tests/SqlScriptTests.cs
namespace SampleApp.Tests { using NUnit.Framework; using SampleApp.Domain; using TestStack.ConventionTests; using TestStack.ConventionTests.ConventionData; using TestStack.ConventionTests.Conventions; [TestFixture] public class SqlScriptTests { [Test] public...
namespace SampleApp.Tests { using NUnit.Framework; using SampleApp.Domain; using TestStack.ConventionTests; using TestStack.ConventionTests.ConventionData; using TestStack.ConventionTests.Conventions; [TestFixture] public class SqlScriptTests { [Test] public...
mit
C#
f992a119ace73ea52a1874d066ecd9bd28dd5c4b
ADD - Aggiunto controller per il reperimento dei mezzi utilizzabili
vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf
src/backend/SO115App.API.Oracle/Controllers/MezziController.cs
src/backend/SO115App.API.Oracle/Controllers/MezziController.cs
using SO115App.Persistence.Oracle.Classi; using SO115App.Persistence.Oracle.Servizi.Mezzi; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; namespace SO115App.API.Oracle.Controllers { public class MezziController : ApiController ...
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; namespace SO115App.API.Oracle.Controllers { public class MezziController : ApiController { // GET: api/Mezzi public IEnumerable<string> Get() { ...
agpl-3.0
C#
2cbf6498f81a19f4fb84140523f0243c8163ef22
Hide preserveattribute annotation
luberda-molinet/FFImageLoading,molinch/FFImageLoading
source/FFImageLoading.Common/Helpers/PreserveAttribute.cs
source/FFImageLoading.Common/Helpers/PreserveAttribute.cs
using System; namespace FFImageLoading { sealed class PreserveAttribute : System.Attribute { public bool AllMembers; public bool Conditional; } }
using System; namespace FFImageLoading { public sealed class PreserveAttribute : System.Attribute { public bool AllMembers; public bool Conditional; } }
mit
C#
b02c2df512bc839b04a1d312d863282be0a91d97
Bring back TransactionIgnoredWarning for InMemory tests.
azabluda/InfoCarrier.Core
test/InfoCarrier.Core.FunctionalTests/TestUtilities/InMemoryTestStore.cs
test/InfoCarrier.Core.FunctionalTests/TestUtilities/InMemoryTestStore.cs
// Copyright (c) on/off it-solutions gmbh. All rights reserved. // Licensed under the MIT license. See license.txt file in the project root for license information. namespace InfoCarrier.Core.FunctionalTests.TestUtilities { using System; using System.Threading; using System.Threading.Tasks; using Info...
// Copyright (c) on/off it-solutions gmbh. All rights reserved. // Licensed under the MIT license. See license.txt file in the project root for license information. namespace InfoCarrier.Core.FunctionalTests.TestUtilities { using System; using System.Threading; using System.Threading.Tasks; using Info...
mit
C#
7b1f28d33dae0ed7a33d0db28014fd61ca47f4ea
Test for converting an empty NameValueCollection
JBTech/ExtraLINQ,modulexcite/ExtraLINQ,mariusschulz/ExtraLINQ
ExtraLINQ.Tests/Extensions/NameValueCollection/ToDictionaryTests.cs
ExtraLINQ.Tests/Extensions/NameValueCollection/ToDictionaryTests.cs
using System; using System.Collections.Generic; using System.Collections.Specialized; using ExtraLinq; using FluentAssertions; using NUnit.Framework; namespace ExtraLINQ.Tests { [TestFixture] public class ToDictionaryTests { [ExpectedException(typeof(ArgumentNullException))] [Test] ...
using System; using System.Collections.Generic; using System.Collections.Specialized; using ExtraLinq; using FluentAssertions; using NUnit.Framework; namespace ExtraLINQ.Tests { [TestFixture] public class ToDictionaryTests { [ExpectedException(typeof(ArgumentNullException))] [Test] ...
mit
C#
15749d542661923746d984e0563fedb0943d7300
Fix success message will be interpreted as error incorrectly.
yfakariya/msgpack-rpc-cli,yonglehou/msgpack-rpc-cli
src/MsgPack.Rpc/Rpc/Protocols/SocketErrorCodeExtension.cs
src/MsgPack.Rpc/Rpc/Protocols/SocketErrorCodeExtension.cs
#region -- License Terms -- // // MessagePack for CLI // // Copyright (C) 2010 FUJIWARA, Yusuke // // 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.or...
#region -- License Terms -- // // MessagePack for CLI // // Copyright (C) 2010 FUJIWARA, Yusuke // // 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.or...
apache-2.0
C#
37f276335b79bd1976ae5618fdc1c5918baad725
add support in watson report a way to add extra file with NFW and use that in service hub.
gafter/roslyn,mattscheffer/roslyn,MattWindsor91/roslyn,nguerrera/roslyn,kelltrick/roslyn,eriawan/roslyn,sharwell/roslyn,ErikSchierboom/roslyn,akrisiun/roslyn,KirillOsenkov/roslyn,MattWindsor91/roslyn,jcouv/roslyn,tvand7093/roslyn,khyperia/roslyn,abock/roslyn,AdamSpeight2008/roslyn-AdamSpeight2008,dotnet/roslyn,lorcanmo...
src/VisualStudio/Core/Def/Implementation/Watson/WatsonReporter.cs
src/VisualStudio/Core/Def/Implementation/Watson/WatsonReporter.cs
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis.Internal.Log; using Microsoft.VisualStudio.LanguageServices.Telemetry; using Microsoft.VisualStudio.Telemetry; na...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis.Internal.Log; using Microsoft.VisualStudio.LanguageServices.Telemetry; using Microsoft.VisualStudio.Telemetry; na...
apache-2.0
C#
0df7f5a7bd7171487c906792373d0d5fb37af3e8
add new OracleResponseCode:ContentTypeNotSupported (#2505)
AntShares/AntShares
src/neo/Network/P2P/Payloads/OracleResponseCode.cs
src/neo/Network/P2P/Payloads/OracleResponseCode.cs
namespace Neo.Network.P2P.Payloads { /// <summary> /// Represents the response code for the oracle request. /// </summary> public enum OracleResponseCode : byte { /// <summary> /// Indicates that the request has been successfully completed. /// </summary> Success = 0x...
namespace Neo.Network.P2P.Payloads { /// <summary> /// Represents the response code for the oracle request. /// </summary> public enum OracleResponseCode : byte { /// <summary> /// Indicates that the request has been successfully completed. /// </summary> Success = 0x...
mit
C#
a5bb015c4a3db5cbde11c5dc9bb6a1390ac185cf
Add cache for msbuild step #23
Julien-Mialon/Cake.Storm,Julien-Mialon/Cake.Storm
fluent/src/Cake.Storm.Fluent/Common/Steps/MSBuildSolutionStep.cs
fluent/src/Cake.Storm.Fluent/Common/Steps/MSBuildSolutionStep.cs
using System.Linq; using Cake.Common.Tools.MSBuild; using Cake.Storm.Fluent.Interfaces; using Cake.Storm.Fluent.InternalExtensions; using Cake.Storm.Fluent.Steps; namespace Cake.Storm.Fluent.Common.Steps { [BuildStep] public class MSBuildSolutionStep : ICacheableStep { public void Execute(IConfiguration configur...
using Cake.Common.Tools.MSBuild; using Cake.Storm.Fluent.Interfaces; using Cake.Storm.Fluent.InternalExtensions; using Cake.Storm.Fluent.Steps; namespace Cake.Storm.Fluent.Common.Steps { [BuildStep] public class MSBuildSolutionStep : IStep { public void Execute(IConfiguration configuration, StepType currentStep)...
mit
C#
8aa95d403e12a154f330bb18af7a3c8b0fe95430
Fix compile error.
MrDaedra/Avalonia,SuperJMN/Avalonia,Perspex/Perspex,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,Perspex/Perspex,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,jkoritzinsky/Avalonia,SuperJMN/Avalonia,akrisiun/Perspex,jkoritzinsky/Avalonia,SuperJMN/Avalonia,Super...
samples/BindingTest/ViewModels/NestedCommandViewModel.cs
samples/BindingTest/ViewModels/NestedCommandViewModel.cs
using ReactiveUI; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Input; namespace BindingTest.ViewModels { public class NestedCommandViewModel : ReactiveObject { public NestedCommandViewModel() { ...
using ReactiveUI; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Input; namespace BindingTest.ViewModels { public class NestedCommandViewModel : ReactiveObject { public NestedCommandViewModel() { ...
mit
C#
b5813fa834b0fb20b770d2fdaf5e8f24c24e4315
revert to lower level language syntax in NetworkInterfaceWrapper due to build
B2MSolutions/reyna-net45
src/reyna/Reyna/Network/NetworkInterfaceWrapper.cs
src/reyna/Reyna/Network/NetworkInterfaceWrapper.cs
using System.Linq; using System.Net.NetworkInformation; namespace Reyna { public class NetworkInterfaceWrapper : INetworkInterfaceWrapper { private readonly NetworkInterface _networkInterface; public NetworkInterfaceWrapper(NetworkInterface networkInterface = null) { _netw...
using System.Linq; using System.Net.NetworkInformation; namespace Reyna { public class NetworkInterfaceWrapper : INetworkInterfaceWrapper { private readonly NetworkInterface _networkInterface; public NetworkInterfaceWrapper(NetworkInterface networkInterface = null) { _netw...
mit
C#