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
2c58d3e5547de869d5bdf2119c88a12ed4115b2d
Allow use viewmodel context in custom controls, obsolete Control property
roman-yagodin/R7.University,roman-yagodin/R7.University,roman-yagodin/R7.University
R7.University/components/ViewModelContext.cs
R7.University/components/ViewModelContext.cs
// // ViewModelContext.cs // // Author: // Roman M. Yagodin <roman.yagodin@gmail.com> // // Copyright (c) 2015 // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without ...
// // ViewModelContext.cs // // Author: // Roman M. Yagodin <roman.yagodin@gmail.com> // // Copyright (c) 2015 // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without ...
agpl-3.0
C#
b13e81d864164d750d4a6a3980f2c02f60893539
Clean up 'AssemblyInfo.cs'.
McSherry/libSemVer.NET,McSherry/McSherry.SemanticVersioning
McSherry.SemanticVersioning/Properties/AssemblyInfo.cs
McSherry.SemanticVersioning/Properties/AssemblyInfo.cs
// Copyright (c) 2015-20 Liam McSherry // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, pub...
// Copyright (c) 2015-16 Liam McSherry // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, pub...
mit
C#
cd0ee7ec62fad15d73763c0a12b288e9934846a3
Add CellUtil.CreateBoundCellRenderer
lytico/xwt,cra0zy/xwt,TheBrainTech/xwt,mminns/xwt,directhex/xwt,hwthomas/xwt,iainx/xwt,sevoku/xwt,steffenWi/xwt,mminns/xwt,hamekoz/xwt,akrisiun/xwt,mono/xwt,antmicro/xwt,residuum/xwt
Xwt.WPF/Xwt.WPFBackend.Utilities/CellUtil.cs
Xwt.WPF/Xwt.WPFBackend.Utilities/CellUtil.cs
// // CellUtil.cs // // Author: // Luís Reis <luiscubal@gmail.com> // Eric Maupin <ermau@xamarin.com> // // Copyright (c) 2012 Luís Reis // Copyright (c) 2012 Xamarin, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentati...
// // CellUtil.cs // // Author: // Luís Reis <luiscubal@gmail.com> // // Copyright (c) 2012 Luís Reis // // 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, in...
mit
C#
01ba2f7794ae7677458565f6ea3f809aadfc90fd
Format assembly properties
PetSerAl/PetSerAl.PowerShell.Data
Assembly.cs
Assembly.cs
using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: CLSCompliant(false)] [assembly: NeutralResourcesLanguage("en")] [assembly: AssemblyVersion("1.0.0"), AssemblyFileVersion("1.0.0")] [assembly: ComVisible(false)]
using System; using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: CLSCompliant(false), NeutralResourcesLanguage("en"), AssemblyVersion("1.0.0"), AssemblyFileVersion("1.0.0"), ComVisible(false)]
mit
C#
25adb254fee4d7499fe6e4955f8b876c06ff3234
Put Description back in for FieldLookupString. It is only available for taxonomies.
axomic/openasset-rest-cs
OpenAsset.RestClient.Library/Noun/FieldLookupString.cs
OpenAsset.RestClient.Library/Noun/FieldLookupString.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; // serialization stuff using Newtonsoft.Json; using Newtonsoft.Json.Serialization; using Newtonsoft.Json.Linq; using System.Runtime.Serialization; namespace OpenAsset.RestClient.Library.Noun { [JsonObject(MemberSerialization.Opt...
using System; using System.Collections.Generic; using System.Linq; using System.Text; // serialization stuff using Newtonsoft.Json; using Newtonsoft.Json.Serialization; using Newtonsoft.Json.Linq; using System.Runtime.Serialization; namespace OpenAsset.RestClient.Library.Noun { [JsonObject(MemberSerialization.Opt...
mit
C#
9409037b8215d008f3db8efbcebd6b3b320be469
add test code
NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework
Samples/AdventureWorksModel/Production/WorkOrderRepository.cs
Samples/AdventureWorksModel/Production/WorkOrderRepository.cs
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. // You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. // Unless requi...
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. // You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. // Unless requi...
apache-2.0
C#
abff48cc07384784565dcac5ee7893e13b55b18a
Make queary async
OrganizeSanayi/HospitalAutomation
HospitalAutomation.Core/Services/UserService.cs
HospitalAutomation.Core/Services/UserService.cs
using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HospitalAutomation.Services { public class UserService { public static bool IsValidLogin(string username, string password) { using...
using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HospitalAutomation.Services { public class UserService { public static bool IsValidLogin(string username, string password) { using...
apache-2.0
C#
2dc524f9a4596314b03a5e76bedaf1787df6a31b
Update Products. Switch Controller to use FromServices.
JasonGT/NorthwindTraders,JasonGT/NorthwindTraders,JasonGT/NorthwindTraders,JasonGT/NorthwindTraders
Northwind.Web/Controllers/ProductsController.cs
Northwind.Web/Controllers/ProductsController.cs
using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Northwind.Application.Products.Commands; using Northwind.Application.Products.Models; using Northwind.Application.Products.Queries; namespace Northwind.Web.Controllers { [Route("api/[controller]")] [ApiContro...
using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Northwind.Application.Products.Commands; using Northwind.Application.Products.Models; using Northwind.Application.Products.Queries; using Northwind.Persistence; namespace Northwind.Web.Controllers { [Route("api/[...
mit
C#
23b7cde941495bdc43944cdc66b634600370060a
Add milliseconds value alongside
smoogipoo/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,peppy/osu,peppy/osu-new,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,EVAST9919/osu,ppy/osu,UselessToucan/osu,ppy/osu,EVAST9919/osu,peppy/osu,smoogipoo/osu,UselessToucan/osu,smoogipooo/osu
osu.Game.Rulesets.Mania/Configuration/ManiaRulesetConfigManager.cs
osu.Game.Rulesets.Mania/Configuration/ManiaRulesetConfigManager.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using osu.Framework.Configuration.Tracking; using osu.Game.Configuration; using osu.Game.Rulesets.Configuration; using osu.Game.Rulesets.Mania.UI; namespa...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using osu.Framework.Configuration.Tracking; using osu.Game.Configuration; using osu.Game.Rulesets.Configuration; using osu.Game.Rulesets.Mania.UI; namespa...
mit
C#
d87f86bd533dd630e6e8159327faafa6dc6ee63a
Fix UnitTest assembly name.
undeadlabs/msgpack-cli,msgpack/msgpack-cli,modulexcite/msgpack-cli,scopely/msgpack-cli,scopely/msgpack-cli,msgpack/msgpack-cli,modulexcite/msgpack-cli,undeadlabs/msgpack-cli
cli/src/MsgPack.WindowsPhone.7.1/Properties/AssemblyInfo.cs
cli/src/MsgPack.WindowsPhone.7.1/Properties/AssemblyInfo.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#
0e7bb8b42f0d903a67f1121d09aeb14352c8a159
Fix bug when splitting conjunctions
terrajobst/nquery-vnext
src/NQuery/Optimization/Condition.cs
src/NQuery/Optimization/Condition.cs
using System; using System.Collections.Generic; using System.Linq; using NQuery.Binding; namespace NQuery.Optimization { internal static class Condition { public static BoundExpression And(BoundExpression left, BoundExpression right) { if (left == null) return righ...
using System; using System.Collections.Generic; using System.Linq; using NQuery.Binding; namespace NQuery.Optimization { internal static class Condition { public static BoundExpression And(BoundExpression left, BoundExpression right) { if (left == null) return righ...
mit
C#
171afa7b416338503f935822758260d4fcc24ed1
テスト中用のコメントの削除とTreeのキー指定が間違っていたので修正。
SunriseDigital/cs-sdx
Sdx/Data/TreeMapper/Record.cs
Sdx/Data/TreeMapper/Record.cs
using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Text; using System.Linq; namespace Sdx.Data.TreeMapper { public class Record<T, R> where T : Sdx.Data.TreeMapper.Record.Item, new() where R : Sdx.Db.Record { private Tree Tree; ...
using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Text; using System.Linq; namespace Sdx.Data.TreeMapper { public class Record<T, R> where T : Sdx.Data.TreeMapper.Record.Item, new() where R : Sdx.Db.Record { private Tree Tree; ...
mit
C#
a2315bb792eb95233cf924d4e4d84c2040de5cd4
Set LastKnownChange as it was forgotten
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/WabiSabi/Backend/Banning/Warden.cs
WalletWasabi/WabiSabi/Backend/Banning/Warden.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using WalletWasabi.Bases; using WalletWasabi.Logging; namespace WalletWasabi.WabiSabi.Backend.Banning { /// <summary> /// Serializes and releases the prison population periodicall...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using WalletWasabi.Bases; using WalletWasabi.Logging; namespace WalletWasabi.WabiSabi.Backend.Banning { /// <summary> /// Serializes and releases the prison population periodicall...
mit
C#
bf0154d16507a9ea3b6a0a0a427b9cdb316ae8d3
fix test
qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox
Wox.Test/PluginProgramTest.cs
Wox.Test/PluginProgramTest.cs
using System.Collections.Generic; using System.Linq; using NUnit.Framework; using Wox.Core.Configuration; using Wox.Core.Plugin; using Wox.Image; using Wox.Infrastructure; using Wox.Infrastructure.UserSettings; using Wox.Plugin; using Wox.ViewModel; namespace Wox.Test { [TestFixture] class PluginProgramTest ...
using System.Collections.Generic; using System.Linq; using NUnit.Framework; using Wox.Core.Configuration; using Wox.Core.Plugin; using Wox.Image; using Wox.Infrastructure; using Wox.Infrastructure.UserSettings; using Wox.Plugin; using Wox.ViewModel; namespace Wox.Test { [TestFixture] class PluginProgramTest ...
mit
C#
844caad420cc53eaa02a76829aed3617882f4835
fix #648 little addendum to @gmarz's work on #649 allowing a an enumerable of documents to passed in, no longer pass ids over querystring but instead always translate them to documents inside the POST body internally
UdiBen/elasticsearch-net,starckgates/elasticsearch-net,elastic/elasticsearch-net,faisal00813/elasticsearch-net,elastic/elasticsearch-net,joehmchan/elasticsearch-net,Grastveit/NEST,azubanov/elasticsearch-net,RossLieberman/NEST,Grastveit/NEST,faisal00813/elasticsearch-net,abibell/elasticsearch-net,UdiBen/elasticsearch-ne...
src/Nest/DSL/MultiTermVectorsDescriptor.cs
src/Nest/DSL/MultiTermVectorsDescriptor.cs
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using Elasticsearch.Net; using Newtonsoft.Json; namespace Nest { [DescriptorFor("Mtermvectors")] public partial class MultiTermVectorsDescriptor<T> : IndexTypePathTypedDescriptor<MultiTermVectorsDesc...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Elasticsearch.Net; using Newtonsoft.Json; namespace Nest { [DescriptorFor("Mtermvectors")] public partial class MultiTermVectorsDescriptor<T> : IndexTypePathTypedDescriptor<MultiTermVectorsDescriptor<T>, MultiTermVectorsR...
apache-2.0
C#
b3f1c92f68f18add95d8ea034b82f7981e90d6aa
Modify progress helper so that activity indicator stops after last call ends
codestuffers/MvvmCrossPlugins
src/UserInteraction/Core/ProgressHelper.cs
src/UserInteraction/Core/ProgressHelper.cs
using Cirrious.CrossCore.Core; using System; using System.Threading.Tasks; namespace codestuffers.MvvmCrossPlugins.UserInteraction { /// <summary> /// Helper class that executes a task with a progress bar /// </summary> public class ProgressHelper { private readonly IMvxMainThreadDispatche...
using Cirrious.CrossCore.Core; using System; using System.Threading.Tasks; namespace codestuffers.MvvmCrossPlugins.UserInteraction { /// <summary> /// Helper class that executes a task with a progress bar /// </summary> public class ProgressHelper { private readonly IMvxMainThreadDispatche...
mit
C#
52503b6f26a0221f986e71c2f5abb91865645a8e
remove todo comments
virtuoushub/game-off-2016,whoa-algebraic/game-off-2016,virtuoushub/game-off-2016,whoa-algebraic/game-off-2016,virtuoushub/game-off-2016,whoa-algebraic/game-off-2016
Assets/Scripts/RoomNavigationManager.cs
Assets/Scripts/RoomNavigationManager.cs
using UnityEngine; using System.Collections; public class RoomNavigationManager : MonoBehaviour { public GameObject PlayerGameObject; public GameObject[] RoomPrefabs; private GameObject activeRoomPrefab; void Awake() { activeRoomPrefab = Instantiate(RoomPrefabs[0]); activeRoomPre...
using UnityEngine; using System.Collections; public class RoomNavigationManager : MonoBehaviour { public GameObject PlayerGameObject; public GameObject[] RoomPrefabs; private GameObject activeRoomPrefab; void Awake() { activeRoomPrefab = Instantiate(RoomPrefabs[0]); activeRoomPre...
mit
C#
9c46592e0e45279e4a92d4f9b415b61b17510787
Move collection change event binding to LoadComplete
ppy/osu,peppy/osu,peppy/osu,ppy/osu,peppy/osu,ppy/osu
osu.Game/Graphics/Containers/OsuRearrangeableListContainer.cs
osu.Game/Graphics/Containers/OsuRearrangeableListContainer.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using System.Collections.Specialized; using osu.Framework.Allocation; using osu.Framework.Audio; using osu.Framework.Audio.Sample; using osu.Framework....
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using System.Collections.Specialized; using osu.Framework.Allocation; using osu.Framework.Audio; using osu.Framework.Audio.Sample; using osu.Framework....
mit
C#
0a23d1634de7196e9b92de3f9295a50f61c5de4b
Change the actual versions allowed to connect, which is different from the interface major version
TomDataworks/opensim,EriHoss/OpenSim_0.8.2.0_Dev_LibLSLCC,RavenB/opensim,RavenB/opensim,RavenB/opensim,TomDataworks/opensim,TomDataworks/opensim,RavenB/opensim,RavenB/opensim,TomDataworks/opensim,RavenB/opensim,TomDataworks/opensim,RavenB/opensim,EriHoss/OpenSim_0.8.2.0_Dev_LibLSLCC,EriHoss/OpenSim_0.8.2.0_Dev_LibLSLCC...
OpenSim/Server/Base/ProtocolVersions.cs
OpenSim/Server/Base/ProtocolVersions.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 must ...
bsd-3-clause
C#
3f534e72f2fd0a604fb8034ebb74fa9317e54c87
Set decimal separator by culture
sqlkata/querybuilder
QueryBuilder.Tests/ParameterTypeTest.cs
QueryBuilder.Tests/ParameterTypeTest.cs
using System; using System.Collections.Generic; using SqlKata.Execution; using SqlKata; using SqlKata.Compilers; using Xunit; using System.Collections; public enum EnumExample { First, Second, Third, } public class ParameterTypeTest { private readonly Compiler pgsql; private readonly MySqlCompiler...
using System; using System.Collections.Generic; using SqlKata.Execution; using SqlKata; using SqlKata.Compilers; using Xunit; using System.Collections; public enum EnumExample { First, Second, Third, } public class ParameterTypeTest { private readonly Compiler pgsql; private readonly MySqlCompiler...
mit
C#
1f1cdc73ee989c891756ce6b4e8bb7b5215c55de
Update AssemblyInfo.cs
ipjohnson/Grace
Source/Grace/Properties/AssemblyInfo.cs
Source/Grace/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; // 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("Grace")] [assembly: AssemblyDescription("Grace is a po...
using System.Reflection; using System.Resources; // 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("Grace")] [assembly: AssemblyDescription("Grace is a po...
mit
C#
2872adabe6295d78b10ec569191028f5a9a8b646
bump version of windows desktop app
PapaMufflon/StandUpTimer,PapaMufflon/StandUpTimer,PapaMufflon/StandUpTimer
StandUpTimer/Properties/AssemblyInfo.cs
StandUpTimer/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyVersion("0.7.1")] [assembly: AssemblyFileVersion("0.7.1")] [assembly: InternalsVisibleTo("StandUpTimer.UnitTests")] [assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyVersion("0.7.0")] [assembly: AssemblyFileVersion("0.7.0")] [assembly: InternalsVisibleTo("StandUpTimer.UnitTests")] [assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
mit
C#
8eccfa476cbbff5a3e6ceb1e0cef9b2c0e74a683
Add loading states
ppy/osu,smoogipoo/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,smoogipooo/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu,ppy/osu,peppy/osu,peppy/osu-new,NeoAdonis/osu
osu.Game/Online/RealtimeMultiplayer/MultiplayerUserState.cs
osu.Game/Online/RealtimeMultiplayer/MultiplayerUserState.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.RealtimeMultiplayer { public enum MultiplayerUserState { Idle, Ready, WaitingForLoad, Loaded, Pl...
// 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.RealtimeMultiplayer { public enum MultiplayerUserState { Idle, Ready, Playing, Results, } }
mit
C#
ccd9726170370faa0a0dd531fdcb6949ef59f4ba
Fix settings not saving when opening "Options"
danielchalmers/SteamAccountSwitcher
SteamAccountSwitcher/Options.xaml.cs
SteamAccountSwitcher/Options.xaml.cs
#region using System.Windows; using SteamAccountSwitcher.Properties; #endregion namespace SteamAccountSwitcher { /// <summary> /// Interaction logic for Options.xaml /// </summary> public partial class Options : Window { public Options() { InitializeComponent(); ...
#region using System.Windows; using SteamAccountSwitcher.Properties; #endregion namespace SteamAccountSwitcher { /// <summary> /// Interaction logic for Options.xaml /// </summary> public partial class Options : Window { public Options() { InitializeComponent(); ...
mit
C#
25a5cbc9e03fdd64bc1103c773d6ca83ff2981ae
Update Userlist.cs
stanriders/den0bot,stanriders/den0bot
den0bot/Userlist.cs
den0bot/Userlist.cs
 namespace den0bot { public enum Users { // User(Nickname, osuID) [User("Фаердиггер", 5292815)] Digger = 0, [User("Веточка", 5100305)] Vetochka = 1, [User("Шоквейв", 2295157)] Shockwave = 2, [User("Амати", 5291370)] Amaty = 3, ...
 namespace den0bot { public enum Users { // User(Nickname, osuID) [User("Фаердиггер", 5292815)] Digger = 0, [User("Веточка", 5100305)] Vetochka = 1, [User("Шоквейв", 2295157)] Shockwave = 2, [User("Амати", 5291370)] Amaty = 3, ...
mit
C#
7b2b29d7a86b8cd5ee96375b99b8d81a86280bca
Change recommended TFMs from netcore to win.
StephenCleary/PortableLibraryProfiles
src/FrameworkProfiles/NugetTargets.cs
src/FrameworkProfiles/NugetTargets.cs
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Versioning; using System.Text; namespace FrameworkProfiles { public static class NugetTargets { // https://github.com/NuGet/NuGet3/blob/dev/src/NuGet.Frameworks/FrameworkConstants.cs // https://github.com/N...
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Versioning; using System.Text; namespace FrameworkProfiles { public static class NugetTargets { // https://github.com/NuGet/NuGet3/blob/dev/src/NuGet.Frameworks/FrameworkConstants.cs // https://github.com/N...
mit
C#
6d33a867a82ca8811a562ee4c59804bdb8ddee03
Add tests for null checking
inputfalken/Sharpy
Tests/GeneratorAPI/GeneratorTests.cs
Tests/GeneratorAPI/GeneratorTests.cs
using System; using GeneratorAPI; using NUnit.Framework; using NUnit.Framework.Internal; namespace Tests.GeneratorAPI { [TestFixture] internal class GeneratorTests { [SetUp] public void Initiate() { _generator = new Generator<Randomizer>(new Randomizer(Seed)); } [T...
using GeneratorAPI; using NUnit.Framework; using NUnit.Framework.Internal; namespace Tests.GeneratorAPI { [TestFixture] internal class GeneratorTests { [SetUp] public void Initiate() { _generator = new Generator<Randomizer>(new Randomizer(Seed)); } [TearDown] ...
mit
C#
17813488ab82396c1dbf7c2b456a80e0a0a524b1
Change view for android
wcoder/MvvmCrossStarterKit
src/Mobile.Android/Views/FirstView.cs
src/Mobile.Android/Views/FirstView.cs
using Android.App; using Cirrious.MvvmCross.Droid.Views; using Mobile.Core.ViewModels; namespace Mobile.Android.Views { [Activity] public class FirstView : MvxActivity<FirstViewModel> { protected override void OnViewModelSet() { base.OnViewModelSet(); SetContentView(Resource.Layout.FirstView); } } }
using Android.App; using Android.OS; using Cirrious.MvvmCross.Droid.Views; using Mobile.Core.ViewModels; namespace Mobile.Android.Views { [Activity(Label = "View for FirstViewModel")] public class FirstView : MvxActivity<FirstViewModel> { protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle...
mit
C#
120ff5cc3cc8804979f702c75c0deefb0e4708b7
删除用户状态枚举中的“Suspended”条目。 :sushi:
Zongsoft/Zongsoft.CoreLibrary
src/Security/Membership/UserStatus.cs
src/Security/Membership/UserStatus.cs
/* * Authors: * 钟峰(Popeye Zhong) <zongsoft@gmail.com> * * Copyright (C) 2003-2016 Zongsoft Corporation <http://www.zongsoft.com> * * This file is part of Zongsoft.CoreLibrary. * * Zongsoft.CoreLibrary is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Publ...
/* * Authors: * 钟峰(Popeye Zhong) <zongsoft@gmail.com> * * Copyright (C) 2003-2016 Zongsoft Corporation <http://www.zongsoft.com> * * This file is part of Zongsoft.CoreLibrary. * * Zongsoft.CoreLibrary is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Publ...
lgpl-2.1
C#
ca681d8c795ac9ccac2767df81887e94b3027296
Test Team Foundation Service
bbenetskyy/WinParse
WinParse/WinParse.WinForms/Person.cs
WinParse/WinParse.WinForms/Person.cs
using System; namespace WinParse.WinForms { internal class Person { private string firstName; private string secondName; private string comments; public Person(string firstName, string secondName) { this.firstName = firstName; this....
using System; namespace WinParse.WinForms { internal class Person { private string firstName; private string secondName; private string comments; public Person(string firstName, string secondName) { this.firstName = firstName; th...
unlicense
C#
eb6bd900f979502470bdc643bc80fdf41e5fff9b
Update Label.cs
vvoid-inc/VoidEngine,thakyZ/VoidEngine
VoidEngine/Label.cs
VoidEngine/Label.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.GamerServices; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Inp...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.GamerServices; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Inp...
mit
C#
149ae66409a5b25342eb69c4594f7b796e9d86fd
Increment version number
R-Smith/vmPing
vmPing/Properties/AssemblyInfo.cs
vmPing/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
mit
C#
e6578d4c0f6b55ecb0ba949b42d3c4af2d260ca5
Change API :'/api/v1/analysis/result' to 'api/v3/analysis/result'
Minjung-Baek/Dexter,KarolAntczak/Dexter,Minjung-Baek/Dexter,Samsung/Dexter,Minjung-Baek/Dexter,KarolAntczak/Dexter,Minjung-Baek/Dexter,KarolAntczak/Dexter,Samsung/Dexter,Minjung-Baek/Dexter,Samsung/Dexter,Minjung-Baek/Dexter,Samsung/Dexter,KarolAntczak/Dexter,KarolAntczak/Dexter,Minjung-Baek/Dexter,Minjung-Baek/Dexter,...
project/dexter-vs/Dexter/Common/Core/Client/DexterClient.cs
project/dexter-vs/Dexter/Common/Core/Client/DexterClient.cs
using Newtonsoft.Json; using System.Net.Http; using System.Threading.Tasks; using System.Diagnostics; using Dexter.Common.Defect; using System.Web; using System.ComponentModel.Composition; using System; namespace Dexter.Common.Client { /// <summary> /// Communicates with the dexter server /// </summary> ...
using Newtonsoft.Json; using System.Net.Http; using System.Threading.Tasks; using System.Diagnostics; using Dexter.Common.Defect; using System.Web; using System.ComponentModel.Composition; using System; namespace Dexter.Common.Client { /// <summary> /// Communicates with the dexter server /// </summary> ...
bsd-2-clause
C#
ef5704ab2f63d373ba53ab1895cae1b073027a51
Fix empty alerts issue.
ZooPin/CK-Glouton,ZooPin/CK-Glouton,ZooPin/CK-Glouton,ZooPin/CK-Glouton
src/CK.Glouton.Server/Handlers/AlertHandlerConfiguration.cs
src/CK.Glouton.Server/Handlers/AlertHandlerConfiguration.cs
using CK.Glouton.Model.Server.Handlers; using System.Collections.Generic; namespace CK.Glouton.Server.Handlers { public class AlertHandlerConfiguration : IGloutonHandlerConfiguration { public List<IAlertExpressionModel> Alerts { get; set; } public IGloutonHandlerConfiguration Clone() ...
using CK.Glouton.Model.Server.Handlers; using System.Collections.Generic; namespace CK.Glouton.Server.Handlers { public class AlertHandlerConfiguration : IGloutonHandlerConfiguration { public List<IAlertExpressionModel> Alerts { get; set; } public IGloutonHandlerConfiguration Clone() ...
mit
C#
1d55bf77bd2c11bec78bef2d2c7d8b895a3e7d66
Update Path2DPathEffect.cs
wieslawsoltes/Draw2D,wieslawsoltes/Draw2D,wieslawsoltes/Draw2D
src/Draw2D.ViewModels/Style/PathEffects/Path2DPathEffect.cs
src/Draw2D.ViewModels/Style/PathEffects/Path2DPathEffect.cs
// Copyright (c) Wiesław Šoltés. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Collections.Generic; using System.Runtime.Serialization; namespace Draw2D.ViewModels.Style.PathEffects { [DataContract(IsReference = true)] p...
// Copyright (c) Wiesław Šoltés. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Collections.Generic; using System.Runtime.Serialization; namespace Draw2D.ViewModels.Style.PathEffects { [DataContract(IsReference = true)] p...
mit
C#
619977a0e745a8d237bcccbe87b67db1d4875859
Make sure metadata is set before being returned
Glimpse/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,Glimpse/Glimpse.Prototype,Glimpse/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,Glimpse/Glimpse.Prototype,zanetdev/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,zanetdev/Glimp...
src/Glimpse.Server/Configuration/DefaultMetadataProvider.cs
src/Glimpse.Server/Configuration/DefaultMetadataProvider.cs
using System.Collections.Generic; using System.Linq; using Glimpse.Server.Internal; using Glimpse.Internal.Extensions; using Microsoft.AspNet.Http; using Microsoft.Extensions.OptionsModel; namespace Glimpse.Server.Configuration { public class DefaultMetadataProvider : IMetadataProvider { private reado...
using System.Collections.Generic; using System.Linq; using Glimpse.Server.Internal; using Glimpse.Internal.Extensions; using Microsoft.AspNet.Http; using Microsoft.Extensions.OptionsModel; namespace Glimpse.Server.Configuration { public class DefaultMetadataProvider : IMetadataProvider { private reado...
mit
C#
09a5cc9d7a17c1f6839467ab82b50eb70f2ac55a
Update IPathFigure.cs
wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D
src/Core2D/Model/Path/IPathFigure.cs
src/Core2D/Model/Path/IPathFigure.cs
using System.Collections.Generic; using System.Collections.Immutable; using Core2D.Shapes; namespace Core2D.Path { /// <summary> /// Defines path figure contract. /// </summary> public interface IPathFigure : IObservableObject, IStringExporter { /// <summary> /// Gets or sets start...
using System.Collections.Generic; using System.Collections.Immutable; using Core2D.Shapes; namespace Core2D.Path { /// <summary> /// Defines path figure contract. /// </summary> public interface IPathFigure : IObservableObject { /// <summary> /// Gets or sets start point. /...
mit
C#
0c179e388af79f8f3c4b7573456f1418410dc11f
Stop using RedirectUrl in test (#2527)
stripe/stripe-dotnet
src/StripeTests/Services/LoginLinks/LoginLinkServiceTest.cs
src/StripeTests/Services/LoginLinks/LoginLinkServiceTest.cs
namespace StripeTests { using System.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; using Stripe; using Xunit; public class LoginLinkServiceTest : BaseStripeTest { private const string AccountId = "acct_123"; private readonly LoginLinkService ser...
namespace StripeTests { using System.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; using Stripe; using Xunit; public class LoginLinkServiceTest : BaseStripeTest { private const string AccountId = "acct_123"; private readonly LoginLinkService ser...
apache-2.0
C#
07113b8f78bab3e72fe3d5d7ff755df824c9b286
Update Program.cs
ThomasKV/GitTest1
ConsoleApp1/ConsoleApp1/Program.cs
ConsoleApp1/ConsoleApp1/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { class Program { static void Main(string[] args) { // This remark was inserted using GitHub // Another remark inserted using GitHub...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { class Program { static void Main(string[] args) { // This remark was inserted using GitHub } } }
mit
C#
bd9fb6c689cfa71e59960f5892ed8ce261d3a557
Fix CategoryDiscoverer first-chance exception while debugging (#5710)
sergeybykov/orleans,hoopsomuah/orleans,waynemunro/orleans,amccool/orleans,ElanHasson/orleans,hoopsomuah/orleans,jason-bragg/orleans,galvesribeiro/orleans,waynemunro/orleans,amccool/orleans,benjaminpetit/orleans,yevhen/orleans,ElanHasson/orleans,ibondy/orleans,dotnet/orleans,dotnet/orleans,ibondy/orleans,amccool/orleans...
test/TestInfrastructure/TestExtensions/TestCategory.cs
test/TestInfrastructure/TestExtensions/TestCategory.cs
using System; using System.Collections.Generic; using System.Linq; using Xunit.Abstractions; using Xunit.Sdk; /// <summary> /// This is a replacement for the MSTest [TestCategoryAttribute] on xunit /// xunit does not have the concept of Category for tests and instead, the have [TraitAttribute(string key, string value)...
using System; using System.Collections.Generic; using System.Linq; using Xunit.Abstractions; using Xunit.Sdk; /// <summary> /// This is a replacement for the MSTest [TestCategoryAttribute] on xunit /// xunit does not have the concept of Category for tests and instead, the have [TraitAttribute(string key, string value...
mit
C#
9a73f3480df6a78d201ddb01d660179a135db0f3
Remove unused using statements.
wangkanai/Detection
test/Wangkanai.Detection.Test/DetectionServiceTests.cs
test/Wangkanai.Detection.Test/DetectionServiceTests.cs
 using Microsoft.AspNetCore.Http; using System; using Xunit; namespace Wangkanai.Detection.Test { public class DetectionServiceTests { [Fact] public void Ctor_IServiceProvider_Success() { string userAgent = "Agent"; var context = new DefaultHttpContext(); ...
 using Microsoft.AspNetCore.Http; using System; using System.IO; using Xunit; namespace Wangkanai.Detection.Test { public class DetectionServiceTests { [Fact] public void Ctor_IServiceProvider_Success() { string userAgent = "Agent"; var context = new DefaultHttp...
apache-2.0
C#
494cacf300858a5894fbf18117677aba5557c030
fix SetSelfModified
signumsoftware/framework,AlejandroCano/framework,avifatal/framework,AlejandroCano/framework,avifatal/framework,signumsoftware/framework
Signum.Entities/Modifiable.cs
Signum.Entities/Modifiable.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Signum.Utilities; using System.Collections.ObjectModel; using Signum.Utilities.DataStructures; using Signum.Entities.Reflection; namespace Signum.Entities { [Serializable] public abstract class Modifiable ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Signum.Utilities; using System.Collections.ObjectModel; using Signum.Utilities.DataStructures; using Signum.Entities.Reflection; namespace Signum.Entities { [Serializable] public abstract class Modifiable ...
mit
C#
c740386f99bed0fb683ff810bd3b200ce50273cf
Add missing test for CSharp
emilybache/Parrot-Refactoring-Kata,emilybache/Parrot-Refactoring-Kata,emilybache/Parrot-Refactoring-Kata,emilybache/Parrot-Refactoring-Kata,emilybache/Parrot-Refactoring-Kata,emilybache/Parrot-Refactoring-Kata,emilybache/Parrot-Refactoring-Kata,emilybache/Parrot-Refactoring-Kata,emilybache/Parrot-Refactoring-Kata,emily...
CSharp/Parrot.Tests/ParrotTest.cs
CSharp/Parrot.Tests/ParrotTest.cs
using Xunit; namespace Parrot.Tests { public class ParrotTest { [Fact] public void GetSpeedNorwegianBlueParrot_nailed() { var parrot = new Parrot(ParrotTypeEnum.NORWEGIAN_BLUE, 0, 0, true); Assert.Equal(0.0, parrot.GetSpeed()); } [Fact] p...
using Xunit; namespace Parrot.Tests { public class ParrotTest { [Fact] public void GetSpeedNorwegianBlueParrot_nailed() { var parrot = new Parrot(ParrotTypeEnum.NORWEGIAN_BLUE, 0, 0, true); Assert.Equal(0.0, parrot.GetSpeed()); } [Fact] p...
mit
C#
97674402f01eacf212621058d01c149a90f109f0
Update wallet balance endpoint.
wranders/ESISharp
ESISharp/Path/Character/Wallet.cs
ESISharp/Path/Character/Wallet.cs
using ESISharp.Web; namespace ESISharp.ESIPath.Character { /// <summary>Authenticated Character Wallet paths</summary> public class CharacterWallet { protected ESIEve EasyObject; internal CharacterWallet(ESIEve EasyEve) { EasyObject = EasyEve; } /// <s...
using ESISharp.Web; namespace ESISharp.ESIPath.Character { /// <summary>Authenticated Character Wallet paths</summary> public class CharacterWallet { protected ESIEve EasyObject; internal CharacterWallet(ESIEve EasyEve) { EasyObject = EasyEve; } /// <s...
mit
C#
592b215474bd106c02ca78dff677f5cdc1404e58
Mark the dictionary used to store _PlatformFolders readonly
ubisoftinc/Sharpmake,ubisoftinc/Sharpmake,ubisoftinc/Sharpmake
Sharpmake/MSBuildGlobalSettings.cs
Sharpmake/MSBuildGlobalSettings.cs
// Copyright (c) 2017 Ubisoft Entertainment // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law...
// Copyright (c) 2017 Ubisoft Entertainment // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law...
apache-2.0
C#
4dc5902592d89872f37e98c8940864e87ffcf2f6
Edit namespace
Vtek/Pulsar
Pulsar/Content/ContentResolver.cs
Pulsar/Content/ContentResolver.cs
/* License * * The MIT License (MIT) * * Copyright (c) 2014, Sylvain PONTOREAU (pontoreau.sylvain@gmail.com) * * 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, in...
/* License * * The MIT License (MIT) * * Copyright (c) 2014, Sylvain PONTOREAU (pontoreau.sylvain@gmail.com) * * 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, in...
mit
C#
958f1eda3efecf74386cc43d9e31b6113f4e1271
Update IAzureTableStorageRepository.cs
tiksn/TIKSN-Framework
TIKSN.Core/Data/AzureStorage/IAzureTableStorageRepository.cs
TIKSN.Core/Data/AzureStorage/IAzureTableStorageRepository.cs
using Microsoft.Azure.Cosmos.Table; using System.Threading; using System.Threading.Tasks; namespace TIKSN.Data.AzureStorage { public interface IAzureTableStorageRepository<T> where T : ITableEntity { Task AddAsync(T entity, CancellationToken cancellationToken); Task AddOrMergeAsync(T entity, ...
using Microsoft.WindowsAzure.Storage.Table; using System.Threading; using System.Threading.Tasks; namespace TIKSN.Data.AzureStorage { public interface IAzureTableStorageRepository<T> where T : ITableEntity { Task AddAsync(T entity, CancellationToken cancellationToken); Task AddOrMergeAsync(T ...
mit
C#
9681f91fbdcbdec5752b66bdb0f6135dd6fee8d0
upgrade version to 2.8.4 the main change is to fix an important issue #69
tangxuehua/enode
src/ENode/Properties/AssemblyInfo.cs
src/ENode/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("EN...
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("EN...
mit
C#
790fa0eae790d6aa328b89854476ee4da7788a7a
Remove unused usings.
Faithlife/Parsing
src/Faithlife.Parsing/Parser-Trim.cs
src/Faithlife.Parsing/Parser-Trim.cs
namespace Faithlife.Parsing { public static partial class Parser { /// <summary> /// Succeeds if the specified parser also succeeds beforehand (ignoring its result). /// </summary> public static IParser<T> PrecededBy<T, U>(this IParser<T> parser, IParser<U> precededBy) { return precededBy.Then(...
using System.Collections.Generic; using System.Linq; namespace Faithlife.Parsing { public static partial class Parser { /// <summary> /// Succeeds if the specified parser also succeeds beforehand (ignoring its result). /// </summary> public static IParser<T> PrecededBy<T, U>(this IParser<T> parser...
mit
C#
c4698c409efa29d31d35446515b17c4a874dbc97
Make Properties static
BYVoid/distribox
Distribox/Distribox.CommonLib/Properties.cs
Distribox/Distribox.CommonLib/Properties.cs
using System; namespace Distribox.CommonLib { public static class Properties { public const string PathSep = "/"; public const string MetaFolder = ".Distribox"; public const string MetaFolderTmp = Properties.MetaFolder + Properties.PathSep + "tmp"; public const string MetaFolderData = Properties.MetaFolder +...
using System; namespace Distribox.CommonLib { public class Properties { public const string PathSep = "/"; public const string MetaFolder = ".Distribox"; public const string MetaFolderTmp = Properties.MetaFolder + Properties.PathSep + "tmp"; public const string MetaFolderData = Properties.MetaFolder + Proper...
mit
C#
763955ff519a1f9bbcf4dfa9ede3aee21dc15ce0
Add PointUtility.WithOffset
SaberSnail/GoldenAnvil.Utility
GoldenAnvil.Utility.Windows/PointUtility.cs
GoldenAnvil.Utility.Windows/PointUtility.cs
using System; using System.Windows; namespace GoldenAnvil.Utility.Windows { public static class PointUtility { public static Point WithOffset(this Point point, Point that) { return new Point(point.X + that.X, point.Y + that.Y); } public static double DistanceTo(this Point point, Point target) { var...
using System; using System.Windows; namespace GoldenAnvil.Utility.Windows { public static class PointUtility { public static double DistanceTo(this Point point, Point target) { var dx = point.X - target.X; var dy = point.Y - target.Y; return Math.Sqrt((dx * dx) + (dy * dy)); } public static Vector...
mit
C#
90fdb46611e69f97f0e72690ab5749d353da3828
Add test trying to recreate the issue
SolrNet/SolrNet,mausch/SolrNet,SolrNet/SolrNet,mausch/SolrNet,mausch/SolrNet
SolrNet.Cloud.Tests/UnityTests.cs
SolrNet.Cloud.Tests/UnityTests.cs
using Xunit; using Unity.SolrNetCloudIntegration; using Unity; namespace SolrNet.Cloud.Tests { public class UnityTests { private IUnityContainer Setup() { return new SolrNetContainerConfiguration().ConfigureContainer( new FakeProvider(), new UnityContainer()...
using Xunit; using Unity.SolrNetCloudIntegration; using Unity; namespace SolrNet.Cloud.Tests { public class UnityTests { private IUnityContainer Setup() { return new SolrNetContainerConfiguration().ConfigureContainer( new FakeProvider(), new UnityContainer()...
apache-2.0
C#
b2fc119729e2c9bce386a767f9fae81321926792
fix JsonSerializerExtensions in string values
signumsoftware/framework,avifatal/framework,AlejandroCano/framework,signumsoftware/framework,AlejandroCano/framework,avifatal/framework
Signum.React/JsonConverters/JsonSerializerExtensions.cs
Signum.React/JsonConverters/JsonSerializerExtensions.cs
using Newtonsoft.Json; using Signum.Entities; using Signum.Utilities; using System; using System.Linq; namespace Signum.React.Json { public static class JsonSerializerExtensions { public static object DeserializeValue(this JsonSerializer serializer, JsonReader reader, Type valueType, object o...
using Newtonsoft.Json; using Signum.Entities; using Signum.Utilities; using System; using System.Linq; namespace Signum.React.Json { public static class JsonSerializerExtensions { public static object DeserializeValue(this JsonSerializer serializer, JsonReader reader, Type valueType, object ...
mit
C#
ce73df2e8e1cff7b3b1a0529965f67892000a1fd
Downgrade ClientVersion
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Helpers/Constants.cs
WalletWasabi/Helpers/Constants.cs
using NBitcoin; using NBitcoin.Protocol; using System; using WalletWasabi.Backend.Models.Responses; namespace WalletWasabi.Helpers { public static class Constants { public static readonly Version ClientVersion = new Version(1, 1, 5); public const string BackendMajorVersion = "3"; public static readonly Version...
using NBitcoin; using NBitcoin.Protocol; using System; using WalletWasabi.Backend.Models.Responses; namespace WalletWasabi.Helpers { public static class Constants { public static readonly Version ClientVersion = new Version(1, 1, 6); public const string BackendMajorVersion = "3"; public static readonly Version...
mit
C#
607a67ef027203aa11e708c79dbec8bf07cd4c33
add fatal log level to Help
adamralph/bau,eatdrinksleepcode/bau,huoxudong125/bau,aarondandy/bau,bau-build/bau,huoxudong125/bau,aarondandy/bau,eatdrinksleepcode/bau,adamralph/bau,modulexcite/bau,bau-build/bau,adamralph/bau,adamralph/bau,eatdrinksleepcode/bau,aarondandy/bau,eatdrinksleepcode/bau,huoxudong125/bau,huoxudong125/bau,bau-build/bau,aaron...
src/test/Bau.Test.Acceptance/Help.cs
src/test/Bau.Test.Acceptance/Help.cs
// <copyright file="Help.cs" company="Bau contributors"> // Copyright (c) Bau contributors. (baubuildch@gmail.com) // </copyright> namespace Bau.Test.Acceptance { using System.Reflection; using Bau.Test.Acceptance.Support; using FluentAssertions; using Xbehave; public static class Hel...
// <copyright file="Help.cs" company="Bau contributors"> // Copyright (c) Bau contributors. (baubuildch@gmail.com) // </copyright> namespace Bau.Test.Acceptance { using System.Reflection; using Bau.Test.Acceptance.Support; using FluentAssertions; using Xbehave; public static class Hel...
mit
C#
e2c3b4118d096c9f76efc201970b5874cbba1902
Add namespace for Singleton
petereichinger/unity-helpers
Assets/Scripts/Singleton/Singleton.cs
Assets/Scripts/Singleton/Singleton.cs
using UnityEngine; namespace UnityHelpers.Singleton { /// <summary>Singleton pattern.</summary> public class Singleton<T> : MonoBehaviour where T : MonoBehaviour { private static T _instance; private static object _lock = new object(); public static T Instance { get { lock (_lock) { if (_instanc...
using UnityEngine; /// <summary>Singleton pattern. Should only be used by <see cref="Toolbox"/>.</summary> public class Singleton<T> : MonoBehaviour where T : MonoBehaviour { private static T _instance; private static object _lock = new object(); public static T Instance { get { lock (_lock) { if (_insta...
mit
C#
3b1d76b9f8fb3cceca1204ec56d39a951dcc114c
Update EllipseHitTest.cs
wieslawsoltes/Draw2D,wieslawsoltes/Draw2D,wieslawsoltes/Draw2D
src/Draw2D.Editor/Bounds/Shapes/EllipseHitTest.cs
src/Draw2D.Editor/Bounds/Shapes/EllipseHitTest.cs
// Copyright (c) Wiesław Šoltés. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using Draw2D.Core; using Draw2D.Core.Shapes; using Draw2D.Spatial; namespace Draw2D.Editor.Bounds.Shapes { public class EllipseHitTest : BoxHitT...
// Copyright (c) Wiesław Šoltés. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using Draw2D.Core; using Draw2D.Core.Shapes; using Draw2D.Spatial; namespace Draw2D.Editor.Bounds.Shapes { public class EllipseHitTest : HitTest...
mit
C#
49b5576a0c6d664e6831ee9459f6dbbb20d0baf4
Move location of .asm output for new test compiler.
fanoI/Cosmos,MetSystem/Cosmos,kant2002/Cosmos-1,trivalik/Cosmos,zarlo/Cosmos,fanoI/Cosmos,zdimension/Cosmos,MyvarHD/Cosmos,jp2masa/Cosmos,MyvarHD/Cosmos,zhangwenquan/Cosmos,Cyber4/Cosmos,MyvarHD/Cosmos,MetSystem/Cosmos,sgetaz/Cosmos,MyvarHD/Cosmos,kant2002/Cosmos-1,zdimension/Cosmos,zhangwenquan/Cosmos,sgetaz/Cosmos,za...
source2/Users/Kudzu/HelloWorld/Program.cs
source2/Users/Kudzu/HelloWorld/Program.cs
using System; using System.Reflection; using Cosmos.IL2CPU; using Cosmos.IL2CPU.X86; using Indy.IL2CPU.Assembler.X86; using S = Cosmos.Hardware.TextScreen; using System.IO; namespace HelloWorld { class Program { #region Cosmos Builder logic // Most users wont touch this. This will call the Cosmos Buil...
using System; using System.Reflection; using Cosmos.IL2CPU; using Cosmos.IL2CPU.X86; using Indy.IL2CPU.Assembler.X86; using S = Cosmos.Hardware.TextScreen; using System.IO; namespace HelloWorld { class Program { #region Cosmos Builder logic // Most users wont touch this. This will call the Cosmos Buil...
bsd-3-clause
C#
ccf10d7d71795810218f2d8359fefdea1e9ad6ae
Update WeeklyXamarin.cs
stvansolano/planetxamarin,beraybentesen/planetxamarin,beraybentesen/planetxamarin,stvansolano/planetxamarin,stvansolano/planetxamarin,MabroukENG/planetxamarin,planetxamarin/planetxamarin,MabroukENG/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,MabroukENG/planetxamarin,beraybentesen/planetxamarin...
src/Firehose.Web/Authors/WeeklyXamarin.cs
src/Firehose.Web/Authors/WeeklyXamarin.cs
using Firehose.Web.Infrastructure; using System; using System.Collections.Generic; namespace Firehose.Web.Authors { public class WeeklyXamarin : IAmACommunityMember { public string FirstName => "Weekly"; public string LastName => "Xamarin"; public string StateOrRegion => "Internet"; ...
using Firehose.Web.Infrastructure; using System; using System.Collections.Generic; namespace Firehose.Web.Authors { public class WeeklyXamarin : IAmACommunityMember { public string FirstName => "Weekly"; public string LastName => "Xamarin"; public string StateOrRegion => "Internet"; ...
mit
C#
e4e9eee84dd45527a11184da9e77346c09828e71
Update Dewey Index View's bootstrap for the table.
Programazing/Open-School-Library,Programazing/Open-School-Library
src/Open-School-Library/Views/Deweys/Index.cshtml
src/Open-School-Library/Views/Deweys/Index.cshtml
@model IEnumerable<Open_School_Library.Models.DeweyViewModels.DeweyIndexViewModel> @{ ViewData["Title"] = "Index"; } <h2>Dewey Decimal System</h2> <p> <a asp-action="Create">Create New Dewey</a> </p> <table class="table table-striped table-responsive"> <thead> <tr> <th> ...
@model IEnumerable<Open_School_Library.Models.DeweyViewModels.DeweyIndexViewModel> @{ ViewData["Title"] = "Index"; } <h2>Dewey Decimal System</h2> <p> <a asp-action="Create">Create New Dewey</a> </p> <table class="table"> <thead> <tr> <th> @Html.DisplayNameFor(model =>...
mit
C#
38453734fa8ba220bc16f47ac788e3687a1e5913
format that
tugberkugurlu/tugberk-web,tugberkugurlu/tugberk-web,tugberkugurlu/tugberk-web,tugberkugurlu/tugberk-web
src/Tugberk.Web/MediaStorage/LocalImageStorage.cs
src/Tugberk.Web/MediaStorage/LocalImageStorage.cs
using System.IO; using System.Threading.Tasks; using Microsoft.Extensions.Logging; namespace Tugberk.Web.MediaStorage { public class LocalImageStorage : IImageStorage { private const string UrlPrefix = "http://localhost:5000/local/images/"; private readonly ILogger<LocalImageStorage> _logger; ...
using System.IO; using System.Threading.Tasks; using Microsoft.Extensions.Logging; namespace Tugberk.Web.MediaStorage { public class LocalImageStorage : IImageStorage { private const string UrlPrefix = "http://localhost:5000/local/images/"; private readonly ILogger<LocalImageStorage> _logger; ...
agpl-3.0
C#
64becf994959b877963d72aa1c84876803e60cbc
remove extra nulls
lbargaoanu/AutoMapper,AutoMapper/AutoMapper,BlaiseD/AutoMapper,gentledepp/AutoMapper,AutoMapper/AutoMapper
src/AutoMapper/ConstructorMap.cs
src/AutoMapper/ConstructorMap.cs
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; using AutoMapper.Execution; using AutoMapper.QueryableExtensions; using AutoMapper.QueryableExtensions.Impl; namespace AutoMapper { using static Expression; public class ConstructorMap ...
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; using AutoMapper.Execution; using AutoMapper.QueryableExtensions; using AutoMapper.QueryableExtensions.Impl; namespace AutoMapper { using static Expression; public class ConstructorMap ...
mit
C#
1ceff6ebed4a72179da347b3769616fa4f04984e
Use the new 15.0 SDK to access meta via IServices
versionone/VersionOne.Integration.Bugzilla,versionone/VersionOne.Integration.Bugzilla,versionone/VersionOne.Integration.Bugzilla
VersionOne.ServerConnector/EntityFactory.cs
VersionOne.ServerConnector/EntityFactory.cs
using System; using System.Collections.Generic; using System.Linq; using VersionOne.SDK.APIClient; namespace VersionOne.ServerConnector { // TODO extract interface and inject into VersionOneProcessor internal class EntityFactory { private readonly IServices services; private readonly IEnumerab...
using System; using System.Collections.Generic; using System.Linq; using VersionOne.SDK.APIClient; namespace VersionOne.ServerConnector { // TODO extract interface and inject into VersionOneProcessor internal class EntityFactory { private readonly IMetaModel metaModel; private readonly IServic...
bsd-3-clause
C#
686e1b1797f06b001082dd844c7ff94b894e65c2
update command property of entity editor
dreign/ComBoost,dreign/ComBoost
Wodsoft.ComBoost.Wpf/Editor/EntityEditor.cs
Wodsoft.ComBoost.Wpf/Editor/EntityEditor.cs
using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using Sys...
using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using Sys...
mit
C#
ae1577da1832baa78c05b29e4e8b0dd5382f27ab
Use platform spesific temp folders
filipw/dotnet-script,filipw/dotnet-script
src/Dotnet.Script.DependencyModel/ProjectSystem/FileUtils.cs
src/Dotnet.Script.DependencyModel/ProjectSystem/FileUtils.cs
using Dotnet.Script.DependencyModel.Environment; using System; using System.Collections.Generic; using System.IO; using System.Runtime.InteropServices; using System.Text; namespace Dotnet.Script.DependencyModel.ProjectSystem { public static class FileUtils { public static string CreateTempFolder(stri...
using Dotnet.Script.DependencyModel.Environment; using System; using System.Collections.Generic; using System.IO; using System.Text; namespace Dotnet.Script.DependencyModel.ProjectSystem { public static class FileUtils { public static string CreateTempFolder(string targetDirectory, string targetFramew...
mit
C#
3f8ccb17d92e450ab20ff76818a5cd9ab2daf1c6
Fix documentation mistake.
andrewdavey/cassette,damiensawyer/cassette,damiensawyer/cassette,BluewireTechnologies/cassette,BluewireTechnologies/cassette,andrewdavey/cassette,honestegg/cassette,damiensawyer/cassette,honestegg/cassette,honestegg/cassette,andrewdavey/cassette
src/Website/Views/Documentation/Scripts_ExternalModules.cshtml
src/Website/Views/Documentation/Scripts_ExternalModules.cshtml
@{ ViewBag.Title = "External script modules"; } <h1>External script modules</h1> <p> You may want to reference an external script URL in multiple pages. Repeating the URL in each page is not ideal. If you ever need to change it you'll have to search through all the pages. </p> <p> Cassette supports the de...
@{ ViewBag.Title = "External script modules"; } <h1>External script modules</h1> <p> You may want to reference an external script URL in multiple pages. Repeating the URL in each page is not ideal. If you ever need to change it you'll have to search through all the pages. </p> <p> Cassette supports the de...
mit
C#
7c05073cfcac1266ff797627673d69d3ce7055bb
Update AssemblyInfo.cs
stilldesign/AppTracking
AppTracking/Properties/AssemblyInfo.cs
AppTracking/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
mit
C#
64b7b6f2f6845087b374f2bbb1807ed8016ebc94
Add Coarse Dirt Handling (#352)
yungtechboy1/MiNET
src/MiNET/MiNET/Items/ItemHoe.cs
src/MiNET/MiNET/Items/ItemHoe.cs
using System.Collections.Generic; using System.Numerics; using log4net; using MiNET.Blocks; using MiNET.Utils; using MiNET.Worlds; namespace MiNET.Items { public class ItemHoe : Item { private static readonly ILog Log = LogManager.GetLogger(typeof (ItemHoe)); internal ItemHoe(short id) : base(id) { MaxSta...
using System.Collections.Generic; using System.Numerics; using log4net; using MiNET.Blocks; using MiNET.Utils; using MiNET.Worlds; namespace MiNET.Items { public class ItemHoe : Item { private static readonly ILog Log = LogManager.GetLogger(typeof (ItemHoe)); internal ItemHoe(short id) : base(id) { MaxSta...
mpl-2.0
C#
61859989e17aa8c3fd4e1a1452dbbc07ea2db150
Update FibonacciNumbers.cs
DuckBoss/Programming-Challenges,DuckBoss/Programming-Challenges,DuckBoss/Programming-Challenges,DuckBoss/Programming-Challenges
Fibonacci_Numbers/FibonacciNumbers.cs
Fibonacci_Numbers/FibonacciNumbers.cs
using System; namespace FibonacciNumbers { class MainClass { public static void Main(string[] args) { if (args.Length != 3) { Console.WriteLine("This program requires 2 starting integers, and the max terms to count!\n"); Environment.Exit(0); } int start1 = Convert.ToInt32(args[0]); int st...
using System; namespace FibonacciNumbers { class MainClass { public static void Main(string[] args) { if (args.Length != 3) { Console.WriteLine("This program requires 2 starting integers, and the max terms to count!\n"); Environment.Exit(0); } int start1 = Convert.ToInt32(args[0]); int st...
unlicense
C#
135dbe13cff0e8508df836dbd634a4df3b0e1a5d
Update FibonacciNumbers.cs
DuckBoss/Programming-Challenges,DuckBoss/Programming-Challenges,DuckBoss/Programming-Challenges,DuckBoss/Programming-Challenges
Fibonacci_Numbers/FibonacciNumbers.cs
Fibonacci_Numbers/FibonacciNumbers.cs
using System; namespace FibonacciNumbers { class MainClass { public static void Main(string[] args) { if (args.Length != 3) { Console.WriteLine("This program requires 2 starting integers, and the max terms to count!\n"); Environment.Exit(0); } int start1 = Convert.ToInt32(args[0]); int st...
using System; namespace FibonacciNumbers { class MainClass { public static void Main(string[] args) { if (args.Length != 3) { Console.WriteLine("This program requires 2 starting integers, and the max terms to count!\n"); Environment.Exit(0); } int start1 = Convert.ToInt32(args[0]); int st...
unlicense
C#
3ee6cca15ced4ea357d2e709b2279a01e1536899
Fix incorrect file path
laedit/vika
src/NVika/BuildServers/GitHub.cs
src/NVika/BuildServers/GitHub.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.ComponentModel.Composition; using System.Text; using NVika.Abstractions; using NVika.Parsers; namespace NVika.BuildServers { internal seal...
// 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.ComponentModel.Composition; using System.Text; using NVika.Abstractions; using NVika.Parsers; namespace NVika.BuildServers { internal seal...
apache-2.0
C#
923096cca347b4f0d173c144a28497b500a19665
Implement RunOverrideTargetResponse
svermeulen/omnisharp-server,x335/omnisharp-server,syl20bnr/omnisharp-server,OmniSharp/omnisharp-server,syl20bnr/omnisharp-server,x335/omnisharp-server,mispencer/OmniSharpServer,corngood/omnisharp-server,corngood/omnisharp-server
OmniSharp/AutoComplete/Overrides/RunOverrideTargetResponse.cs
OmniSharp/AutoComplete/Overrides/RunOverrideTargetResponse.cs
using System; using OmniSharp.Common; using OmniSharp.Rename; namespace OmniSharp.AutoComplete.Overrides { public class RunOverrideTargetResponse : ModifiedFileResponse { public RunOverrideTargetResponse() {} public RunOverrideTargetResponse ( string fileName , string buffer...
using System; using OmniSharp.Common; namespace OmniSharp.AutoComplete.Overrides { public class RunOverrideTargetResponse {} }
mit
C#
a5522416735185c0badd989f24e11d2e6094601c
Add values in enum 'LexerError'
lury-lang/lury-lexer
lury-lexer/LexerError.cs
lury-lexer/LexerError.cs
// // LexerError.cs // // Author: // Tomona Nanase <nanase@users.noreply.github.com> // // The MIT License (MIT) // // Copyright (c) 2015 Tomona Nanase // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to de...
// // LexerError.cs // // Author: // Tomona Nanase <nanase@users.noreply.github.com> // // The MIT License (MIT) // // Copyright (c) 2015 Tomona Nanase // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to de...
mit
C#
5eb306ae0f09b440f20c68db1cb222e198aa3cb2
Update existing documentation for person ids.
henrikfroehling/TraktApiSharp
Source/Lib/TraktApiSharp/Objects/Get/People/TraktPersonIds.cs
Source/Lib/TraktApiSharp/Objects/Get/People/TraktPersonIds.cs
namespace TraktApiSharp.Objects.Get.People { using Newtonsoft.Json; /// <summary>A collection of ids for various web services, including the Trakt id, for a Trakt person.</summary> public class TraktPersonIds { /// <summary>Gets or sets the Trakt numeric id.</summary> [JsonProperty(Pro...
namespace TraktApiSharp.Objects.Get.People { using Newtonsoft.Json; using System.Globalization; /// <summary> /// A collection of ids for various web services for a Trakt person. /// </summary> public class TraktPersonIds { /// <summary> /// The Trakt numeric id for the per...
mit
C#
10b5117c69c6f56f95874ffbad60fb87f971526d
Convert to Unix linebreaks.
pmcvtm/FAKE,philipcpresley/FAKE,dlsteuer/FAKE,MichalDepta/FAKE,wooga/FAKE,mfalda/FAKE,hitesh97/FAKE,beeker/FAKE,xavierzwirtz/FAKE,modulexcite/FAKE,RMCKirby/FAKE,dlsteuer/FAKE,jayp33/FAKE,mfalda/FAKE,dmorgan3405/FAKE,rflechner/FAKE,dlsteuer/FAKE,dmorgan3405/FAKE,yonglehou/FAKE,neoeinstein/FAKE,brianary/FAKE,mat-mcloughl...
src/test/Test.FAKECore/SideBySideSpecification/TestSplicing.cs
src/test/Test.FAKECore/SideBySideSpecification/TestSplicing.cs
using System.IO; using System.Xml.Linq; using Fake.MSBuild; using NUnit.Framework; using Test.Git; namespace Test.FAKECore.SideBySideSpecification { [TestFixture] public class TestSplicing { #region Setup/Teardown [SetUp] public void Setup() { _project1 = Splic...
using System.IO; using System.Xml.Linq; using Fake.MSBuild; using NUnit.Framework; using Test.Git; namespace Test.FAKECore.SideBySideSpecification { [TestFixture] public class TestSplicing { #region Setup/Teardown [SetUp] public void Setup() { _project1 = Splic...
apache-2.0
C#
253d153539b59e2fa69c12151e18ebe313435243
change version
slemvs/Excelerator
.build/VersionInfo.cs
.build/VersionInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyVersion("0.0.1")] [assembly: AssemblyFileVersion("0.0.1")] [assembly: AssemblyCompany("")] [assembly: AssemblyCopyright("Copyright © 2017")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCu...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyVersion("0.1.0")] [assembly: AssemblyFileVersion("0.1.0")] [assembly: AssemblyCompany("")] [assembly: AssemblyCopyright("Copyright © 2017")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCu...
mit
C#
66768c1c316d87e08aff3b088f5996ea241ea684
Stop camera preview when navigated from the page
kennyzx/UWPBank
UWPBank/MediaPage.xaml.cs
UWPBank/MediaPage.xaml.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.InteropServices.WindowsRuntime; using Windows.Foundation; using Windows.Foundation.Collections; using Windows.Media.Capture; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls.Pri...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.InteropServices.WindowsRuntime; using Windows.Foundation; using Windows.Foundation.Collections; using Windows.Media.Capture; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls.Pri...
mit
C#
4e83e4645223d18da63ff502c2aeeeb7d9fb17e6
update ImageShareOption
aixasz/ImageShareTemplate
ImageShareTemplate/ImageShareOption.cs
ImageShareTemplate/ImageShareOption.cs
using ImageShareTemplate.ImageProvider; using System; using System.Collections.Generic; using System.Text; namespace ImageShareTemplate { public class ImageShareOption { /// <summary> /// The proportion horizontal ratio. /// </summary> public double RatioX { get; set; } ...
using ImageShareTemplate.ImageProvider; using System; using System.Collections.Generic; using System.Text; namespace ImageShareTemplate { public class ImageShareOption { /// <summary> /// The proportion horizontal ratio. /// </summary> public double RatioX { get; set; } ...
mit
C#
13e9af9e4de0fdb0d3b0226345903f368befa417
Use native docker client when running under WSL
MihaMarkic/Cake.Docker
src/Cake.Docker/DockerTool.cs
src/Cake.Docker/DockerTool.cs
using Cake.Core; using Cake.Core.IO; using Cake.Core.Tooling; using System.Collections.Generic; using System.Linq; namespace Cake.Docker { /// <summary> /// Base class for all Docker related tools. /// </summary> /// <typeparam name="TSettings">The settings type.</typeparam> public abstract class ...
using Cake.Core; using Cake.Core.IO; using Cake.Core.Tooling; using System.Collections.Generic; using System.Linq; namespace Cake.Docker { /// <summary> /// Base class for all Docker related tools. /// </summary> /// <typeparam name="TSettings">The settings type.</typeparam> public abstract class ...
mit
C#
733e90ebf14d418bb32b61bb4280043e2bf2698a
Remove unused usings
projectkudu/AzureFunctions,projectkudu/WebJobsPortal,agruning/azure-functions-ux,projectkudu/WebJobsPortal,agruning/azure-functions-ux,chunye/azure-functions-ux,agruning/azure-functions-ux,agruning/azure-functions-ux,chunye/azure-functions-ux,projectkudu/WebJobsPortal,chunye/azure-functions-ux,chunye/azure-functions-ux...
AzureFunctions/Trace/TracingEvents.cs
AzureFunctions/Trace/TracingEvents.cs
namespace AzureFunctions.Trace { public static class TracingEvents { // EventId = 0 public static readonly TracingEvent ErrorInGetFunctionTemplate = new TracingEvent { Message = "TemplatesManager.GetFunctionTemplate({templateFolderName}), {Exception}", EventId = ...
using Serilog.Events; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace AzureFunctions.Trace { public static class TracingEvents { // EventId = 0 public static readonly TracingEvent ErrorInGetFunctionTemplate = new TracingEvent { ...
apache-2.0
C#
2ad41fd040ef86903ea05a80588d1bf423f38216
Resolve line too long message on build server
natsnudasoft/AdiePlayground
AssemblyInfoCommon.cs
AssemblyInfoCommon.cs
// <copyright file="AssemblyInfoCommon.cs" company="natsnudasoft"> // Copyright (c) Adrian John Dunstan. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // htt...
// <copyright file="AssemblyInfoCommon.cs" company="natsnudasoft"> // Copyright (c) Adrian John Dunstan. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // htt...
apache-2.0
C#
0ea30fbe7a55075bbcbd021ea114b94db30f9770
use getUniqueIndex()
yasokada/unity-160820-Inventory-UI
Assets/InventoryCS.cs
Assets/InventoryCS.cs
using UnityEngine; using System.Collections; using UnityEngine.UI; using NS_SampleData; using NS_MyStringUtil; /* * - add getUniqueIndex() * v0.2 2016 Aug. 21 * - add UpdateInfo() * - add [MyStringUtil.cs] * - add OpenURL() * v0.1 2016 Aug. 21 * - add MoveColumn() * - add MoveRow() * - add Samp...
using UnityEngine; using System.Collections; using UnityEngine.UI; using NS_SampleData; using NS_MyStringUtil; /* * - add getUniqueIndex() * v0.2 2016 Aug. 21 * - add UpdateInfo() * - add [MyStringUtil.cs] * - add OpenURL() * v0.1 2016 Aug. 21 * - add MoveColumn() * - add MoveRow() * - add Samp...
mit
C#
a967ed6773c356ba080060e95f245866004b3ff0
Fix 'no multiple zeppelins of the same type' constraint server side.
Mikuz/Battlezeppelins,Mikuz/Battlezeppelins
Battlezeppelins/Models/PlayerTable/ZeppelinType.cs
Battlezeppelins/Models/PlayerTable/ZeppelinType.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using Newtonsoft.Json; namespace Battlezeppelins.Models { public class ZeppelinType { public static readonly ZeppelinType MOTHER = new ZeppelinType("Mother", 5); public static readonly ZeppelinType ...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using Newtonsoft.Json; namespace Battlezeppelins.Models { public class ZeppelinType { public static readonly ZeppelinType MOTHER = new ZeppelinType("Mother", 5); public static readonly ZeppelinType ...
apache-2.0
C#
a7c2b8bac8b3579a09bd3609974ca87e86a82da8
Revert to previous debugging method as change wasn't working correctly.
joshvera/CefSharp,yoder/CefSharp,rlmcneary2/CefSharp,dga711/CefSharp,rover886/CefSharp,joshvera/CefSharp,ruisebastiao/CefSharp,Livit/CefSharp,gregmartinhtc/CefSharp,haozhouxu/CefSharp,windygu/CefSharp,rover886/CefSharp,windygu/CefSharp,illfang/CefSharp,illfang/CefSharp,battewr/CefSharp,VioletLife/CefSharp,wangzheng8885...
CefSharp.BrowserSubprocess/Program.cs
CefSharp.BrowserSubprocess/Program.cs
// Copyright © 2010-2014 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; using CefSharp.Internals; namespace CefSharp.Brows...
// Copyright © 2010-2014 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Windows.Forms; using CefSharp.Internals;...
bsd-3-clause
C#
522806fcf675265485d33b5ead87a01843b6cfae
set string option for runner
elastacloud/parquet-dotnet
src/Parquet.Runner/Program.cs
src/Parquet.Runner/Program.cs
using System; using Parquet; using Parquet.Data; using LogMagic; namespace Parquet.Runner { class Program { static void Main(string[] args) { L.Config .WriteTo.PoshConsole(); DataSet ds; using (var time = new TimeMeasure()) { ds = ParquetR...
using System; using Parquet; using Parquet.Data; using LogMagic; namespace Parquet.Runner { class Program { static void Main(string[] args) { L.Config .WriteTo.PoshConsole(); DataSet ds; using (var time = new TimeMeasure()) { ds = ParquetR...
mit
C#
6552e002990d88dcc8ace02a4027fc3e0e48d857
Fix a bug with the console arguments class
marinoscar/Luval
Code/Luval.Common/ConsoleArguments.cs
Code/Luval.Common/ConsoleArguments.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Luval.Common { public class ConsoleArguments { private List<string> _args; public ConsoleArguments(IEnumerable<string> args) { _args = new List<str...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Luval.Common { public class ConsoleArguments { private List<string> _args; public ConsoleArguments(IEnumerable<string> args) { _args = new List<str...
apache-2.0
C#
0fd1b0876de3668e192a0136b69d108996d3d7d9
Format object identity in result window #17
dstarkowski/csom-inspector
CsomInspector/CsomInspector.Core/Data/Result.cs
CsomInspector/CsomInspector.Core/Data/Result.cs
using CsomInspector.Core.ObjectPaths; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; namespace CsomInspector.Core { public class Result { protected Result(Int32 actionId, IEnumerable<ResultProperty> properties) { ActionId = actionId; Properties ...
using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; namespace CsomInspector.Core { public class Result { protected Result(Int32 actionId, IEnumerable<ResultProperty> properties) { ActionId = actionId; Properties = properties; } public static I...
mit
C#
2ff0df6800e53b54bf163d8546413bcc5d9975fa
Support for running the app in a "portable" mode
IWBWbiz/MultiMiner,IWBWbiz/MultiMiner,nwoolls/MultiMiner,nwoolls/MultiMiner
MultiMiner.Utility/ApplicationPaths.cs
MultiMiner.Utility/ApplicationPaths.cs
using System; using System.IO; namespace MultiMiner.Utility { public static class ApplicationPaths { public static string AppDataPath() { //if running in "portable" mode if (IsRunningInPortableMode()) { //store files in the working directory ...
using System; using System.IO; namespace MultiMiner.Utility { public static class ApplicationPaths { public static string AppDataPath() { string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData); return Path.Combine(rootPath, "MultiMiner");...
mit
C#
55d42969c63e8cd68cec0884735aa9f4afa4b93f
fix codebase to comply with code analysis
hylasoft-usa/h-dependency,hylasoft-usa/h-dependency
h-dependency/tests/HDependency.Tests.cs
h-dependency/tests/HDependency.Tests.cs
using System; using System.Collections; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Hylasoft.Dependency.Tests { [TestClass] public class AccountTest { [TestMethod] public void ShouldInitializeTheSingletonCorrectly() { // Init to true var dep = Hdependency.Initialize(tru...
using System; using System.Collections; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Hylasoft.Dependency.Tests { [TestClass] public class AccountTest { [TestMethod] public void ShouldInitializeTheSingletonCorrectly() { // Init to true var dep = Hdependency.Initialize(tru...
mit
C#
3cdf1c9109a6ca15ba279c52a0a9a6306312b8b4
Support click-through in BrowserWindow
quisquous/cactbot,sqt/cactbot,sqt/cactbot,quisquous/cactbot,sqt/cactbot,quisquous/cactbot,quisquous/cactbot,sqt/cactbot,sqt/cactbot,quisquous/cactbot,quisquous/cactbot
BrowserWindow.xaml.cs
BrowserWindow.xaml.cs
using CefSharp.Wpf; using System; using System.Windows; using System.Windows.Interop; using System.Runtime.InteropServices; namespace Cactbot { public partial class BrowserWindow : Window { [DllImport("user32.dll")] static extern int GetWindowLong(IntPtr hWnd, int nIndex); [DllImport(...
using CefSharp.Wpf; using System.Windows; using System.Windows.Interop; namespace Cactbot { public partial class BrowserWindow : Window { public BrowserWindow() { InitializeComponent(); } private void Window_Activated(object sender, System.EventArgs e) { ...
apache-2.0
C#
6f8e1844e14e3f287c167cbd83f9e9fd074429cb
fix version
Fody/PropertyChanged
CommonAssemblyInfo.cs
CommonAssemblyInfo.cs
using System.Reflection; [assembly: AssemblyTitle("PropertyChanged")] [assembly: AssemblyProduct("PropertyChanged")] [assembly: AssemblyCompany("Simon Cropp and Contributors")] [assembly: AssemblyDescription("Fody add-in for injecting INotifyPropertyChanged code into properties.")] [assembly: AssemblyVersion("2.2.0")...
using System.Reflection; [assembly: AssemblyTitle("PropertyChanged")] [assembly: AssemblyProduct("PropertyChanged")] [assembly: AssemblyCompany("Simon Cropp and Contributors")] [assembly: AssemblyDescription("Fody add-in for injecting INotifyPropertyChanged code into properties.")] [assembly: AssemblyVersion("2.1.5")...
mit
C#
44c1c93e816f683fe63af8e96f0aad6b827aebb5
Change DisabledProgramSource class to inherit ProgramSource
qianlifeng/Wox,qianlifeng/Wox,Wox-launcher/Wox,qianlifeng/Wox,Wox-launcher/Wox
Plugins/Wox.Plugin.Program/Settings.cs
Plugins/Wox.Plugin.Program/Settings.cs
using System.Collections.Generic; using System.IO; using Wox.Plugin.Program.Programs; namespace Wox.Plugin.Program { public class Settings { public List<ProgramSource> ProgramSources { get; set; } = new List<ProgramSource>(); public List<DisabledProgramSource> DisabledProgramSources { get; set...
using System.Collections.Generic; using System.IO; using Wox.Plugin.Program.Programs; namespace Wox.Plugin.Program { public class Settings { public List<ProgramSource> ProgramSources { get; set; } = new List<ProgramSource>(); public List<DisabledProgramSource> DisabledProgramSources { get; set...
mit
C#
9622fd43680e1dc2aca2b3de080347d5b7dcec0e
Update version
bringking/mailgun_csharp
Mailgun.AspNet.Identity/Properties/AssemblyInfo.cs
Mailgun.AspNet.Identity/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("Mailgun API Wrapper- ASP.net Identity ser...
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("Mailgun API Wrapper- ASP.net Identity ser...
mit
C#
4c7f0ac1d26ae411237ee1e64c9ad603a2288747
Update Assembly Information
Valetude/Valetude.Rollbar
Rollbar.Net/Properties/AssemblyInfo.cs
Rollbar.Net/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Rollbar.Net")] [assembly: AssemblyDescrip...
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("Ro...
mit
C#
eb1a6cc8f7ca008e28409670fcfd428733cd37b4
bump version
Fody/Equals
CommonAssemblyInfo.cs
CommonAssemblyInfo.cs
using System.Reflection; [assembly: AssemblyTitle("Fody.Equals")] [assembly: AssemblyProduct("Fody.Equals")] [assembly: AssemblyVersion("1.3.9")] [assembly: AssemblyFileVersion("1.3.9")]
using System.Reflection; [assembly: AssemblyTitle("Fody.Equals")] [assembly: AssemblyProduct("Fody.Equals")] [assembly: AssemblyVersion("1.3.8")] [assembly: AssemblyFileVersion("1.3.8")]
mit
C#
a241ddf597b654757d4fd3290cc008b02dc0c470
bump version
SimonCropp/NServiceBus.Serilog
CommonAssemblyInfo.cs
CommonAssemblyInfo.cs
using System.Reflection; [assembly: AssemblyVersion("3.0.3")] [assembly: AssemblyFileVersion("3.0.3")]
using System.Reflection; [assembly: AssemblyVersion("3.0.2")] [assembly: AssemblyFileVersion("3.0.2")]
mit
C#
595b9e94894957fac735c5fb8bbaf3859c3fd365
bump version
GeertvanHorrik/Fody,Fody/Fody,ColinDabritzViewpoint/Fody
CommonAssemblyInfo.cs
CommonAssemblyInfo.cs
using System.Reflection; [assembly: AssemblyTitle("Fody")] [assembly: AssemblyProduct("Fody")] [assembly: AssemblyVersion("2.0.8")] [assembly: AssemblyFileVersion("2.0.8")]
using System.Reflection; [assembly: AssemblyTitle("Fody")] [assembly: AssemblyProduct("Fody")] [assembly: AssemblyVersion("2.0.7")] [assembly: AssemblyFileVersion("2.0.7")]
mit
C#
a504229fb8e7924c72af6cfec64b51c610533cf2
Extend events args
coolya/logv.http
SimpleHttpServerExtensions/AsyncStreamCopier.cs
SimpleHttpServerExtensions/AsyncStreamCopier.cs
/* Copyright 2012 Kolja Dummann <k.dummann@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 Unless required by applica...
/* Copyright 2012 Kolja Dummann <k.dummann@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 Unless required by applica...
apache-2.0
C#
b0bfc09390c3f1d1b097c889dc8dfc8c0bf133df
put x-ms-routing-name in cookie when calling auth provider
fashaikh/SimpleWAWS,projectkudu/SimpleWAWS,davidebbo/SimpleWAWS,davidebbo/SimpleWAWS,davidebbo/SimpleWAWS,davidebbo/SimpleWAWS,projectkudu/TryAppService,projectkudu/SimpleWAWS,projectkudu/TryAppService,projectkudu/SimpleWAWS,projectkudu/TryAppService,fashaikh/SimpleWAWS,projectkudu/SimpleWAWS,projectkudu/TryAppService,...
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#
5f48067932e8b83cef86a9bcc472f009000a17e5
remove unnecessary dot at end of full version string
makmu/outlook-matters,maxlmo/outlook-matters,maxlmo/outlook-matters,makmu/outlook-matters
GlobalAssemblyInfo.cs
GlobalAssemblyInfo.cs
using System.Reflection; [assembly: AssemblyCompany("outlook-matters project")] [assembly: AssemblyProduct("OutlookMatters Addin")] [assembly: AssemblyDescription("An Outlook-Mattermost Bridge")] [assembly: AssemblyCopyright("Copyright © 2016 by the outlook-matters developers")] [assembly: AssemblyTrademark("This app...
using System.Reflection; [assembly: AssemblyCompany("outlook-matters project")] [assembly: AssemblyProduct("OutlookMatters Addin")] [assembly: AssemblyDescription("An Outlook-Mattermost Bridge")] [assembly: AssemblyCopyright("Copyright © 2016 by the outlook-matters developers")] [assembly: AssemblyTrademark("This app...
mit
C#