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
24c09fa37ffb954739c32ce91716cf0a1c4fde7c
make not-oculus-specific
gradientspace/frame3Sharp
behaviors/ScreenCaptureBehavior.cs
behaviors/ScreenCaptureBehavior.cs
using System; using System.Collections.Generic; using UnityEngine; namespace f3 { public class ScreenCaptureBehavior : StandardInputBehavior { public string ScreenshotPath = "C:\\"; public string ScreenshotPrefix = "Screenshot_"; public ScreenCaptureBehavior() { } ...
using System; using System.Collections.Generic; using UnityEngine; namespace f3 { public class ScreenCaptureBehavior : StandardInputBehavior { public string ScreenshotPath = "C:\\"; public string ScreenshotPrefix = "Screenshot_"; public ScreenCaptureBehavior() { } ...
mit
C#
a94109f2806663c16fc092c1c8bc823512ce4fd8
upgrade enode.equeue to 1.6.3
tangxuehua/enode,Aaron-Liu/enode
src/ENode.EQueue/Properties/AssemblyInfo.cs
src/ENode.EQueue/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#
11ee72a0a483c61835161afcbe3da0f59182e40a
use new varable name for current branch in gitlab ci
dazinator/GitVersion,asbjornu/GitVersion,asbjornu/GitVersion,gep13/GitVersion,ermshiperete/GitVersion,GitTools/GitVersion,ParticularLabs/GitVersion,dazinator/GitVersion,ermshiperete/GitVersion,gep13/GitVersion,ermshiperete/GitVersion,GitTools/GitVersion,ermshiperete/GitVersion,ParticularLabs/GitVersion
src/GitVersionCore/BuildServers/GitLabCi.cs
src/GitVersionCore/BuildServers/GitLabCi.cs
namespace GitVersion { using System; using System.IO; public class GitLabCi : BuildServerBase { string _file; public GitLabCi() : this("gitversion.properties") { } public GitLabCi(string propertiesFileName) { _file = propertiesFi...
namespace GitVersion { using System; using System.IO; public class GitLabCi : BuildServerBase { string _file; public GitLabCi() : this("gitversion.properties") { } public GitLabCi(string propertiesFileName) { _file = propertiesF...
mit
C#
14ffdf6ed28d9e89224f41f754dd2a300f467198
Use the AppSettings 'NuGetPackagePath' if exists and the default ~/Packages otherwise
antiufo/NuGet2,GearedToWar/NuGet2,mrward/nuget,jmezach/NuGet2,jholovacs/NuGet,pratikkagda/nuget,indsoft/NuGet2,mrward/nuget,indsoft/NuGet2,antiufo/NuGet2,pratikkagda/nuget,oliver-feng/nuget,indsoft/NuGet2,akrisiun/NuGet,dolkensp/node.net,RichiCoder1/nuget-chocolatey,indsoft/NuGet2,jmezach/NuGet2,oliver-feng/nuget,mrwar...
src/Server/Infrastructure/PackageUtility.cs
src/Server/Infrastructure/PackageUtility.cs
using System; using System.Web; using System.Web.Hosting; using System.Configuration; namespace NuGet.Server.Infrastructure { public class PackageUtility { internal static string PackagePhysicalPath; private static string DefaultPackagePhysicalPath = HostingEnvironment.MapPath("~/Pa...
using System; using System.Web; using System.Web.Hosting; namespace NuGet.Server.Infrastructure { public class PackageUtility { internal static string PackagePhysicalPath = HostingEnvironment.MapPath("~/Packages"); public static Uri GetPackageUrl(string path, Uri baseUri) { re...
apache-2.0
C#
74ee3948b0338ad668b899ea49a6ca061306b1d4
Fix nullref in NoCacheAttribute
thinktecture/relayserver,jasminsehic/relayserver,jasminsehic/relayserver,thinktecture/relayserver,thinktecture/relayserver,jasminsehic/relayserver
Thinktecture.Relay.Server/Http/Filters/NoCacheAttribute.cs
Thinktecture.Relay.Server/Http/Filters/NoCacheAttribute.cs
using System; using System.Net.Http.Headers; using System.Web.Http.Filters; namespace Thinktecture.Relay.Server.Http.Filters { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public class NoCacheAttribute : ActionFilterAttribute { public override void OnActionExecuted(HttpActionExecutedContext ...
using System; using System.Net.Http.Headers; using System.Web.Http.Filters; namespace Thinktecture.Relay.Server.Http.Filters { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public class NoCacheAttribute : ActionFilterAttribute { public override void OnActionExecuted(HttpActionExecutedContext ...
bsd-3-clause
C#
81f433a989d9ce25c5803e6c2687e627a6132e95
fix human story
peteroid/HumanWannabe
Assets/Scripts/DialogueScript.cs
Assets/Scripts/DialogueScript.cs
using UnityEngine; using UnityEngine.UI; using UnityEngine.SceneManagement; using System.Collections; using SimpleJSON; using System.IO; public class DialogueScript : MonoBehaviour { public float delay; public Tile.TerrainType lastType; public Text dialogue1; public Text dialogue2; public Image image1; public ...
using UnityEngine; using UnityEngine.UI; using UnityEngine.SceneManagement; using System.Collections; using SimpleJSON; using System.IO; public class DialogueScript : MonoBehaviour { public float delay; public Tile.TerrainType lastType; public Text dialogue1; public Text dialogue2; public Image image1; public ...
cc0-1.0
C#
b9e867317565ad57e480d23f40946f3cdf01e89b
Add Strict-Transport-Security header and http->https redirect
nikmd23/signatory,nikmd23/signatory
source/Signatory/Global.asax.cs
source/Signatory/Global.asax.cs
using System; using System.Linq; using System.Web; using System.Web.Http; using System.Web.Mvc; using System.Web.Optimization; using System.Web.Routing; using Signatory.Extensions; using Signatory.Framework; namespace Signatory { // Note: For instructions on enabling IIS6 or IIS7 classic mode, // visit http:...
using System; using System.Linq; using System.Web; using System.Web.Http; using System.Web.Mvc; using System.Web.Optimization; using System.Web.Routing; using Signatory.Extensions; using Signatory.Framework; namespace Signatory { // Note: For instructions on enabling IIS6 or IIS7 classic mode, // visit http:...
apache-2.0
C#
23adb1e371cf86b0446a7da24e82b536bb0e4252
test for factories
andremarcondesteixeira/currency
test/AndreMarcondesTeixeira/CurrencyTest.cs
test/AndreMarcondesTeixeira/CurrencyTest.cs
using System; using Xunit; namespace AndreMarcondesTeixeira { public class CurrencyTest { [Fact] public void Currency_Is_A_Value_Type_And_All_Factory_Methods_Return_New_Instances() { Assert.False(Object.ReferenceEquals(Currency.XXX, Currency.XXX)); Assert.False(O...
using System; using Xunit; namespace AndreMarcondesTeixeira { public class CurrencyTest { [Fact] public void Currency_Is_A_Value_Type_And_All_Factory_Methods_Return_New_Instances() { Assert.False(Object.ReferenceEquals(Currency.XXX, Currency.XXX)); //Assert.False...
mit
C#
1b9472392c567378db28e6da51acbd9fe7c8cdd8
Fix assets app position when a warning is visible. (#3173)
xkproject/Orchard2,OrchardCMS/Brochard,xkproject/Orchard2,petedavis/Orchard2,stevetayloruk/Orchard2,stevetayloruk/Orchard2,OrchardCMS/Brochard,stevetayloruk/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,petedavis/Orchard2,petedavis/Orchard2,xkproject/Orchard2,OrchardCMS/Brochard,stevetayloruk/Orchard2,petedavis/Or...
src/OrchardCore.Modules/OrchardCore.Media/Views/Admin/Index.cshtml
src/OrchardCore.Modules/OrchardCore.Media/Views/Admin/Index.cshtml
<script asp-src="~/OrchardCore.Media/Scripts/media.js" asp-name="media" at="Foot" depends-on="admin, vuejs, sortable, vuedraggable"></script> <style asp-src="~/OrchardCore.Media/Styles/media.min.css" debug-src="~/OrchardCore.Media/Styles/media.css"></style> <script asp-src="https://vuejs.org/js/vue.min.js" debug-src="h...
<script asp-src="~/OrchardCore.Media/Scripts/media.js" asp-name="media" at="Foot" depends-on="admin, vuejs, sortable, vuedraggable"></script> <style asp-src="~/OrchardCore.Media/Styles/media.min.css" debug-src="~/OrchardCore.Media/Styles/media.css"></style> <script asp-src="https://vuejs.org/js/vue.min.js" debug-src="h...
bsd-3-clause
C#
034d9a69facfca101da5f321af290055be8d81cf
Fix a typo in Rehearsal model
alastairs/cgowebsite,alastairs/cgowebsite
src/CGO.Web/Models/Rehearsal.cs
src/CGO.Web/Models/Rehearsal.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CGO.Web.Models { public class Rehearsal { public Rehearsal(int id, DateTime dateAndStartTime, DateTime finishTime, string location) { Location = location; FinishTime = finishT...
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CGO.Web.Models { public class Rehearsal { public Rehearsal(int id, DateTime dateAndStartTime, DateTime finishTime, string loction) { Loction = loction; FinishTime = finishTime...
mit
C#
3f57809136ba75c13b5535f7a07afd942059c586
Change menu
rippo/React.Tests,rippo/React.Tests,rippo/React.Tests
Mvc/Views/Shared/_Layout.cshtml
Mvc/Views/Shared/_Layout.cshtml
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>ReactJs Tests</title> @Styles.Render("~/Content/css") @Scripts.Render("~/bundles/modernizr") </head> <body> <div class="navbar navbar-inverse navbar-fixed-top"> ...
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>ReactJs Tests</title> @Styles.Render("~/Content/css") @Scripts.Render("~/bundles/modernizr") </head> <body> <div class="navbar navbar-inverse navbar-fixed-top"> ...
mit
C#
43219182bbc403cc5a51dd9236eeb982db867663
Add debug logging and injection of "Accept-Charset" header that is required when running on Mono
os2indberetning/os2indberetning,os2indberetning/os2indberetning,os2indberetning/os2indberetning,os2indberetning/os2indberetning
Presentation.Web/Global.asax.cs
Presentation.Web/Global.asax.cs
using System.Web.Http; using System.Web.Mvc; using System.Web.Optimization; using System.Web.Routing; using System.Web.Http.ExceptionHandling; using System.Web.Http.Controllers; using System.Net.Http.Headers; using System.Diagnostics; using ActionFilterAttribute = System.Web.Http.Filters.ActionFilterAttribute; namesp...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Http; using System.Web.Mvc; using System.Web.Optimization; using System.Web.Routing; using Newtonsoft.Json; using Newtonsoft.Json.Serialization; namespace OS2Indberetning { public class WebApiApplication : System...
mpl-2.0
C#
7e65d8bc1fcf6d95964cdd4f11caab708885dd31
Fix commit 93b3d6a7f4332a0a56a01f8edb0379b4e95a93a5
StockSharp/StockSharp
Messages/BaseRequestMessage.cs
Messages/BaseRequestMessage.cs
namespace StockSharp.Messages { using System; using System.Runtime.Serialization; /// <summary> /// Base implementation of <see cref="ISubscriptionMessage"/> interface with non-online mode. /// </summary> [DataContract] [Serializable] public abstract class BaseRequestMessage : BaseSubscriptionMessage { ///...
namespace StockSharp.Messages { using System; using System.Runtime.Serialization; /// <summary> /// Base implementation of <see cref="ISubscriptionMessage"/> interface with non-online mode. /// </summary> public abstract class BaseRequestMessage : BaseSubscriptionMessage { /// <summary> /// Initializes a n...
apache-2.0
C#
52faec34ce41388a74c85e009e46ad35705f3657
Add --preserve-commands option to trim command.
Prof9/TextPet
TextPet/Commands/TrimCommand.cs
TextPet/Commands/TrimCommand.cs
using LibTextPet.General; using LibTextPet.Msg; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TextPet.Commands { internal class TrimCommand : CliCommand { public override string Name => "trim"; public override string RunString => "Trimming scripts..."; priva...
using LibTextPet.General; using LibTextPet.Msg; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TextPet.Commands { internal class TrimCommand : CliCommand { public override string Name => "trim"; public override string RunString => "Trimming scripts..."; priva...
mit
C#
14cd00d0fd6404ad5f922bab2f22b76062c8787b
Add optional timestamp to IAirlock
vostok/core
Vostok.Core/Airlock/IAirlock.cs
Vostok.Core/Airlock/IAirlock.cs
using System; namespace Vostok.Airlock { public interface IAirlock { void Push<T>(string routingKey, T item, DateTimeOffset timestamp = default(DateTimeOffset)); } }
namespace Vostok.Airlock { public interface IAirlock { void Push<T>(string routingKey, T item); } }
mit
C#
fd7dc96d63d52caac121fdf1c689477bd124983b
Remove unneeded Initialize method
AdaptiveConsulting/ReactiveTraderCloud,AdaptiveConsulting/ReactiveTraderCloud,AdaptiveConsulting/ReactiveTraderCloud,AdaptiveConsulting/ReactiveTraderCloud
src/server/Adaptive.ReactiveTrader.Server.ReferenceDataWrite/ReferenceDataWriteServiceHostFactory.cs
src/server/Adaptive.ReactiveTrader.Server.ReferenceDataWrite/ReferenceDataWriteServiceHostFactory.cs
using Adaptive.ReactiveTrader.Common; using Adaptive.ReactiveTrader.EventStore.Domain; using Adaptive.ReactiveTrader.Messaging; using Adaptive.ReactiveTrader.Server.Core; using Common.Logging; using EventStore.ClientAPI; using System; using System.Reactive.Disposables; namespace Adaptive.ReactiveTrader.Server.Referenc...
using Adaptive.ReactiveTrader.Common; using Adaptive.ReactiveTrader.EventStore.Connection; using Adaptive.ReactiveTrader.EventStore.Domain; using Adaptive.ReactiveTrader.Messaging; using Adaptive.ReactiveTrader.Server.Core; using Common.Logging; using EventStore.ClientAPI; using System; using System.Reactive.Disposable...
apache-2.0
C#
29c2e3328f396ff53a12a0cc828d8a337826d8ba
Update ArrayEntity.cs
dimmpixeye/Unity3dTools
Runtime/LibMisc/ArrayEntity.cs
Runtime/LibMisc/ArrayEntity.cs
// Project : ecs // Contacts : Pix - ask@pixeye.games using System; using Unity.IL2CPP.CompilerServices; namespace Pixeye.Framework { [Serializable] public struct ArrayEntity { public int length; public ent[] source; public ref ent this[int index] { get => ref source[index]; } public ArrayEntit...
// Project : ecs // Contacts : Pix - ask@pixeye.games using System; using Unity.IL2CPP.CompilerServices; namespace Pixeye.Framework { [Serializable] public struct ArrayEntity { public int length; public ent[] source; public ref ent this[int index] { get => ref source[index]; } public ArrayEntity...
mit
C#
4590bfd468adcff263a13f00bf9feede190c3288
Remove instantiations of extended option in recommendations module.
henrikfroehling/TraktApiSharp
Source/Lib/TraktApiSharp/Modules/TraktRecommendationsModule.cs
Source/Lib/TraktApiSharp/Modules/TraktRecommendationsModule.cs
namespace TraktApiSharp.Modules { using Extensions; using Objects.Basic; using Objects.Get.Movies; using Objects.Get.Shows; using Requests; using Requests.Params; using Requests.WithOAuth.Recommendations; using System; using System.Threading.Tasks; public class TraktRecommendat...
namespace TraktApiSharp.Modules { using Extensions; using Objects.Basic; using Objects.Get.Movies; using Objects.Get.Shows; using Requests; using Requests.Params; using Requests.WithOAuth.Recommendations; using System; using System.Threading.Tasks; public class TraktRecommendat...
mit
C#
35c0f96e8960b95b460f6e38ab858109b9d47230
Initialize ApplicationCommand with an ApplicationConfiguration
appharbor/appharbor-cli
src/AppHarbor/Commands/ApplicationCommand.cs
src/AppHarbor/Commands/ApplicationCommand.cs
namespace AppHarbor.Commands { public abstract class ApplicationCommand : Command { private readonly IApplicationConfiguration _applicationConfiguration; public ApplicationCommand(IApplicationConfiguration applicationConfiguration) { _applicationConfiguration = applicationConfiguration; } } }
namespace AppHarbor.Commands { public abstract class ApplicationCommand : Command { } }
mit
C#
0f11cfe97478a6d85e806def528efd4f982dab42
Add xmldoc describing `SynchronizationContext` behaviour
peppy/osu-framework,smoogipooo/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,ppy/osu-framework,peppy/osu-framework
osu.Framework/Threading/GameThreadSynchronizationContext.cs
osu.Framework/Threading/GameThreadSynchronizationContext.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.Diagnostics; using System.Threading; #nullable enable namespace osu.Framework.Threading { /// <summary> /// A synchronisation context which posts a...
// 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.Diagnostics; using System.Threading; #nullable enable namespace osu.Framework.Threading { /// <summary> /// A synchronisation context which posts a...
mit
C#
8f4bccb6e69d0fce47ece0b7cb9afb452ba2e9f0
Update LocalRepository.cs
Pierry/finan-api,Pierry/finan-api
Finan/Finan.Repository/Repositories/LocalRepository.cs
Finan/Finan.Repository/Repositories/LocalRepository.cs
using System; using System.Collections.Generic; using System.Linq; using Finan.Domain.Contracts.Repositories; using Finan.Domain.Entities; namespace Finan.Repository.Repositories { public class LocalRepository : ILocalRepository { private readonly IList<Local> _mock; public LocalRepository() ...
using System; using System.Collections.Generic; using System.Linq; using Finan.Domain.Contracts.Repositories; using Finan.Domain.Entities; namespace Finan.Repository.Repositories { public class LocalRepository : ILocalRepository { private readonly IList<Local> _mock; public LocalRepository() ...
apache-2.0
C#
8ecaaa7864a0164b3475fb271f6b2cd842ce939b
Update calc code content
mathieumack/epsi_samples
csharp/b2/Calculatrice/Program.cs
csharp/b2/Calculatrice/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Calculatrice { class Program { static void Main(string[] args) { double value1 = 0; double value2 = 0; string line1 = ""; ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Calculatrice { class Program { static void Main(string[] args) { string line1 = Console.ReadLine(); string line2 = Console.ReadLine(); ...
mit
C#
2633174886ffda924af3023445e6ef1dc7b8cd90
increment patch version,
jwChung/Experimentalism,jwChung/Experimentalism
build/CommonAssemblyInfo.cs
build/CommonAssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Jin-Wook Chung")] [assembly: AssemblyCopyright("Copyright (c) 2014, Jin-Wook Chung")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Co...
using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Jin-Wook Chung")] [assembly: AssemblyCopyright("Copyright (c) 2014, Jin-Wook Chung")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Co...
mit
C#
ba8c9a8720b1f00c59c0096a79716d4863388959
Bump to v1.5.0
danielwertheim/requester
buildconfig.cake
buildconfig.cake
public class BuildConfig { private const string Version = "1.5.0"; private const bool IsPreRelease = false; public readonly string SrcDir = "./src/"; public readonly string OutDir = "./build/"; public string Target { get; private set; } public string SemVer { get; private set; } pu...
public class BuildConfig { private const string Version = "1.4.0"; private const bool IsPreRelease = false; public readonly string SrcDir = "./src/"; public readonly string OutDir = "./build/"; public string Target { get; private set; } public string SemVer { get; private set; } pu...
mit
C#
a3be8615742b84a73a7080b38c6f391e01b92ab8
Update TextDrawNode.cs
wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D
src/Core2D/Modules/Renderer/SkiaSharp/Nodes/TextDrawNode.cs
src/Core2D/Modules/Renderer/SkiaSharp/Nodes/TextDrawNode.cs
#nullable enable using Core2D.Model.Renderer; using Core2D.Model.Renderer.Nodes; using Core2D.ViewModels.Shapes; using Core2D.ViewModels.Style; using SkiaSharp; using Core2D.Spatial; namespace Core2D.Modules.Renderer.SkiaSharp.Nodes; internal class TextDrawNode : DrawNode, ITextDrawNode { public TextShapeViewMod...
#nullable enable using Core2D.Model.Renderer; using Core2D.Model.Renderer.Nodes; using Core2D.ViewModels.Shapes; using Core2D.ViewModels.Style; using SkiaSharp; using Core2D.Spatial; namespace Core2D.Modules.Renderer.SkiaSharp.Nodes; internal class TextDrawNode : DrawNode, ITextDrawNode { public TextShapeViewMod...
mit
C#
3d09ee5a80107f7cc3406a67fcb17a6385cb943c
Add test
sakapon/Bellona.Analysis
Bellona/UnitTest/Core/DeviationModelTest.cs
Bellona/UnitTest/Core/DeviationModelTest.cs
using System; using System.Linq; using Bellona.Core; using Bellona.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace UnitTest.Core { [TestClass] public class DeviationModelTest { [TestMethod] public void Test_0() { var model = DeviationMo...
using System; using System.Linq; using Bellona.Core; using Bellona.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace UnitTest.Core { [TestClass] public class DeviationModelTest { [TestMethod] public void Test_1() { var data = new[] ...
mit
C#
629ccbaed553117ce203e3dc15beadc9b5da4ff8
Fix for #41
coryrwest/B2.NET
src/Http/RequestGenerators/FileDownloadRequestGenerators.cs
src/Http/RequestGenerators/FileDownloadRequestGenerators.cs
using B2Net.Models; using Newtonsoft.Json; using System; using System.Net.Http; namespace B2Net.Http { public static class FileDownloadRequestGenerators { private static class Endpoints { public const string DownloadById = "b2_download_file_by_id"; public const string GetDownloadAuthorization = "b2_get_downl...
using B2Net.Models; using Newtonsoft.Json; using System; using System.Net.Http; namespace B2Net.Http { public static class FileDownloadRequestGenerators { private static class Endpoints { public const string DownloadById = "b2_download_file_by_id"; public const string GetDownloadAuthorization = "b2_get_downl...
mit
C#
bd9d2048f2acd5efa7650d90b3ce73f2acd23076
Reduce logging clutter
siwater/Cloudworks,siwater/Cloudworks,siwater/Cloudworks
Citrix.Cloudworks.Agent/NetworkUtilities.cs
Citrix.Cloudworks.Agent/NetworkUtilities.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.NetworkInformation; using System.Text; using System.Xml.Linq; using System.Xml.XPath; using Citrix.Diagnostics; namespace Citrix.Cloudworks.Agent { public static class NetworkUtilities {...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.NetworkInformation; using System.Text; using System.Xml.Linq; using System.Xml.XPath; using Citrix.Diagnostics; namespace Citrix.Cloudworks.Agent { public static class NetworkUtilities {...
mit
C#
1e313333b03d1a1fa7f09d071ead15d4c89358f9
Update ConsoleLogStrategy.cs
skahal/Skahal.Infrastructure.Framework
src/Skahal.Infrastructure.Framework/Logging/ConsoleLogStrategy.cs
src/Skahal.Infrastructure.Framework/Logging/ConsoleLogStrategy.cs
using System; namespace Skahal.Infrastructure.Framework.Logging { /// <summary> /// A log strategy that send the messages to default system console. /// </summary> public class ConsoleLogStrategy : LogStrategyBase { #region implemented abstract members of LogStrategyBase /// <summary> /// Writes the debug l...
using System; using Skahal.Infrastructure.Framework.Logging; namespace Skahal.Infrastructure.Framework { /// <summary> /// A log strategy that send the messages to default system console. /// </summary> public class ConsoleLogStrategy : LogStrategyBase { #region implemented abstract members of LogStrategyBase ...
mit
C#
2d68eef0961bb35dd8f57d2d464799f866993481
add Save/LoadContents
CyEy/CyberEyes
CyberEyes/CyberEyes/ScavengerHuntManager.cs
CyberEyes/CyberEyes/ScavengerHuntManager.cs
using System; using System.Collections.Generic; using System.IO; using System.Net; using System.Xml.Serialization; using System.Reflection; using Xamarin.Forms; namespace CyberEyes { public class ScavengerHuntManager : ViewModelBase { const string FILENAME = "file.xml"; FileHelper fileHelper = new FileHelper()...
using System; namespace CyberEyes { public class ScavengerHuntManager : ViewModelBase { public ScavengerHuntManager() { } } }
bsd-3-clause
C#
c0736dfb6e34c5ee513d3f2baa2daafacc1d8a6e
Fix minor typos
damiensawyer/cassette,andrewdavey/cassette,andrewdavey/cassette,BluewireTechnologies/cassette,honestegg/cassette,honestegg/cassette,honestegg/cassette,damiensawyer/cassette,damiensawyer/cassette,BluewireTechnologies/cassette,andrewdavey/cassette
src/Website/Views/Documentation/Tutorials_TwitterBootstrap.cshtml
src/Website/Views/Documentation/Tutorials_TwitterBootstrap.cshtml
@{ ViewBag.Title = "Cassette | Twitter Bootstrap"; ViewBag.Description = "How to use Twitter Bootstrap with Cassette."; } <h1>Twitter Bootstrap</h1> <p> Cassette won't be able to compile the LESS files provided with <a href="http://twitter.github.com/bootstrap/" target="_blank" title="Twitter Bootst...
@{ ViewBag.Title = "Cassette | Twitter Bootstrap"; ViewBag.Description = "How to use Twitter Bootstrap with Cassette."; } <h1>Twitter Bootstrap</h1> <p> Cassette won't be able to compile the LESS files provided with <a href="http://twitter.github.com/bootstrap/" target="_blank" title="Twitter Bootst...
mit
C#
ef7c1b0acb80b1b4ee183f13fb932894db7a4c6d
Fix argument cannot be null message when uninstalling unknown package.
mrward/monodevelop-nuget-extensions,mrward/monodevelop-nuget-extensions
src/MonoDevelop.PackageManagement.Cmdlets/MonoDevelop.PackageManagement.Cmdlets/UninstallPackageCmdlet.cs
src/MonoDevelop.PackageManagement.Cmdlets/MonoDevelop.PackageManagement.Cmdlets/UninstallPackageCmdlet.cs
// // UninstallPackageCmdlet.cs // // Author: // Matt Ward <ward.matt@gmail.com> // // Copyright (C) 2011-2014 Matthew Ward // // 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...
// // UninstallPackageCmdlet.cs // // Author: // Matt Ward <ward.matt@gmail.com> // // Copyright (C) 2011-2014 Matthew Ward // // 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#
029da35be96d8235428dc5d585534e002a8f49d7
Fix a null reference error using cgminer as a backend
nwoolls/MultiMiner,IWBWbiz/MultiMiner,nwoolls/MultiMiner,IWBWbiz/MultiMiner
MultiMiner.Xgminer.Api/DeviceInformation.cs
MultiMiner.Xgminer.Api/DeviceInformation.cs
using System; namespace MultiMiner.Xgminer.Api { public class DeviceInformation { public DeviceInformation() { Status = String.Empty; Name = String.Empty; //cgminer may / does not return this } public string Kind { get; set; } public string Name ...
using System; namespace MultiMiner.Xgminer.Api { public class DeviceInformation { public DeviceInformation() { Status = String.Empty; } public string Kind { get; set; } public string Name { get; set; } public int Index { get; set; } public bo...
mit
C#
71f8ce5e32425e89300c1c46a541edf6df8bd6a1
update to support android app and xsrf
AerisG222/mikeandwan.us,AerisG222/mikeandwan.us,AerisG222/mikeandwan.us,AerisG222/mikeandwan.us,AerisG222/mikeandwan.us
mikeandwan.us/Controllers/AccountApiController.cs
mikeandwan.us/Controllers/AccountApiController.cs
using System; using System.Threading.Tasks; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Maw.Domain.Identity; using MawMvcApp.Filters; using MawMvcApp.ViewModels.Account; using SignInRes = Microsoft.AspNetCore.Identity.SignInResult; namespace Maw...
using System; using System.Threading.Tasks; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Maw.Domain.Identity; using MawMvcApp.ViewModels.Account; using SignInRes = Microsoft.AspNetCore.Identity.SignInResult; namespace MawMvcApp.Controllers { [Ro...
mit
C#
b7167522d3ceea9c8086d56595e0f4fd33d3cc75
Refactor for readability
mstrother/BmpListener
BmpListener/Bgp/PathAttributeMPUnreachNLRI.cs
BmpListener/Bgp/PathAttributeMPUnreachNLRI.cs
using System; using System.Collections.Generic; using System.Linq; namespace BmpListener.Bgp { public class PathAttributeMPUnreachNLRI : PathAttribute { public PathAttributeMPUnreachNLRI(ArraySegment<byte> data) : base(ref data) { DecodeFromBytes(data); } public Ad...
using System; using System.Collections.Generic; using System.Linq; namespace BmpListener.Bgp { public class PathAttributeMPUnreachNLRI : PathAttribute { public PathAttributeMPUnreachNLRI(ArraySegment<byte> data) : base(ref data) { DecodeFromBytes(data); } public Bg...
mit
C#
179656788dd87caae95c35c3e8e4b0372106bcbd
Remove unnecessary method
NeoAdonis/osu,peppy/osu,johnneijzen/osu,UselessToucan/osu,johnneijzen/osu,ppy/osu,UselessToucan/osu,EVAST9919/osu,smoogipoo/osu,NeoAdonis/osu,smoogipooo/osu,peppy/osu-new,peppy/osu,NeoAdonis/osu,smoogipoo/osu,2yangk23/osu,peppy/osu,smoogipoo/osu,ppy/osu,EVAST9919/osu,ppy/osu,2yangk23/osu,UselessToucan/osu
osu.Game/Screens/Edit/Compose/Components/MoveSelectionEvent.cs
osu.Game/Screens/Edit/Compose/Components/MoveSelectionEvent.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Rulesets.Edit; using osuTK; namespace osu.Game.Screens.Edit.Compose.Components { /// <summary> /// An event which occurs when a <see cref="Selecti...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Rulesets.Edit; using osuTK; namespace osu.Game.Screens.Edit.Compose.Components { /// <summary> /// An event which occurs when a <see cref="Selecti...
mit
C#
a771d9ba2dfeef0e9183f6b3fe57371ef65ec7a6
update tile value on creation
evan-erdos/Sudoku-Reimagined,evan-erdos/Sudoku-Reimagined
Assets/Scripts/IconSelector.cs
Assets/Scripts/IconSelector.cs
using UnityEngine; using UnityEngine.UI; using System.Collections; public class IconSelector : MonoBehaviour { public GameObject[] tiles; static GameObject[] globalTiles; public static Tiles Current {get;set;} public void Awake() { IconSelector.globalTiles = tiles; } public void SetTileDefault() { SetTil...
using UnityEngine; using UnityEngine.UI; using System.Collections; public class IconSelector : MonoBehaviour { public GameObject[] tiles; static GameObject[] globalTiles; public static Tiles Current {get;set;} public void Awake() { IconSelector.globalTiles = tiles; } public void SetTileDefault() { SetTil...
mit
C#
36d0ef9f4731069eed4d86ade4bbfae6e83cb1ca
Test auto deploy
rippo/testing.casperjs.presentation.vscode.50mins,rippo/testing.casperjs.presentation.vscode.50mins,rippo/testing.casperjs.presentation.vscode.50mins,rippo/testing.casperjs.presentation.vscode.50mins
Casper.Mvc/Casper.Mvc/Views/Home/Index.cshtml
Casper.Mvc/Casper.Mvc/Views/Home/Index.cshtml
@{ViewBag.Title = "Home";} <div class="jumbotron"> <h1>CasperJS Testing By Richard Wilde</h1> <p>CasperJS is a navigation scripting & testing utility for PhantomJS written in Javascript</p> <p><a target="_blank" href="http://casperjs.org/" class="btn btn-primary btn-lg" role="button">Learn more</a></p> <...
@{ViewBag.Title = "Home";} <div class="jumbotron"> <h1>CasperJS Testing</h1> <p>CasperJS is a navigation scripting & testing utility for PhantomJS written in Javascript</p> <p><a target="_blank" href="http://casperjs.org/" class="btn btn-primary btn-lg" role="button">Learn more</a></p> </div> <div class...
mit
C#
7d06b2cfaf517715e4becba9300ff0183197e125
Update QueueCallerLeaveEvent.cs
skrusty/AsterNET,AsterNET/AsterNET
Asterisk.2013/Asterisk.NET/Manager/Event/QueueCallerLeaveEvent.cs
Asterisk.2013/Asterisk.NET/Manager/Event/QueueCallerLeaveEvent.cs
namespace AsterNET.Manager.Event { /// <summary> /// A QueueCallerLeaveEvent is triggered when a channel leaves a queue.<br/> /// </summary> public class QueueCallerLeaveEvent : LeaveEvent { // "Channel" in ManagerEvent.cs // "Queue" in QueueEvent.cs // "Count" in QueueEvent.cs public QueueCallerL...
namespace AsterNET.Manager.Event { /// <summary> /// A QueueCallerLeaveEvent is triggered when a channel leaves a queue.<br/> /// </summary> public class QueueCallerLeaveEvent : QueueEvent { public string Position { get; set; } public QueueCallerLeaveEvent(ManagerConnection source) ...
mit
C#
a202254e6426b7c240bace18f4db0b271b095b9a
Update version
bitbeans/libsodium-net,tabrath/libsodium-core,fraga/libsodium-net,adamcaudill/libsodium-net,deckar01/libsodium-net,BurningEnlightenment/libsodium-net,bitbeans/libsodium-net,fraga/libsodium-net,deckar01/libsodium-net,BurningEnlightenment/libsodium-net,adamcaudill/libsodium-net
libsodium-net/Properties/AssemblyInfo.cs
libsodium-net/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("li...
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("li...
mit
C#
f084d318e9f34748588c1129fd7c1478ec06a5c1
add data annotations to need assessment model
ndrmc/cats,ndrmc/cats,ndrmc/cats
Models/Cats.Models/NeedAssessmentWoredaDao.cs
Models/Cats.Models/NeedAssessmentWoredaDao.cs
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Cats.Models { public class NeedAssessmentWoredaDao { public int Woreda { get; set; } public string WoredaName { get; set; ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Cats.Models { public class NeedAssessmentWoredaDao { public int Woreda { get; set; } public string WoredaName { get; set; } public int Zone { get; set; } ...
apache-2.0
C#
80ec64b40a8d5d906faf0fed058f7ff3f0165cb6
improve test coverage
richardschneider/net-ipfs-core
test/CoreApi/AddFileOptionsTest.cs
test/CoreApi/AddFileOptionsTest.cs
using System.Linq; using System.Text; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Ipfs.CoreApi { [TestClass] public class AddFileOptionsTests { [TestMethod] public void Defaults() { var options = new AddFileOptions(); Assert.AreEqual(t...
using System.Linq; using System.Text; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Ipfs.CoreApi { [TestClass] public class AddFileOptionsTests { [TestMethod] public void Defaults() { var options = new AddFileOptions(); Assert.AreEqual(t...
mit
C#
8240fca7230c2e6d8051e5c2799df9d8f1666136
Make DoNoTrackAttribute public
joelweiss/ChangeTracking
Source/ChangeTracking/DoNoTrackAttribute.cs
Source/ChangeTracking/DoNoTrackAttribute.cs
using System; namespace ChangeTracking { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property, Inherited = false, AllowMultiple = false)] public sealed class DoNoTrackAttribute : Attribute { } }
using System; namespace ChangeTracking { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property, Inherited = false, AllowMultiple = false)] sealed class DoNoTrackAttribute : Attribute { } }
mit
C#
5b870f6b5e064943b9db6914c909fd2a7bf67e38
Remove duplicate (case insensitive comparison) enum value (PowerShell issue)
0xd4d/dnlib
src/DotNet/MethodAttributes.cs
src/DotNet/MethodAttributes.cs
// dnlib: See LICENSE.txt for more info using System; namespace dnlib.DotNet { /// <summary> /// Method attributes, see CorHdr.h/CorMethodAttr /// </summary> [Flags] public enum MethodAttributes : ushort { /// <summary>member access mask - Use this mask to retrieve accessibility information.</summary> Member...
// dnlib: See LICENSE.txt for more info using System; namespace dnlib.DotNet { /// <summary> /// Method attributes, see CorHdr.h/CorMethodAttr /// </summary> [Flags] public enum MethodAttributes : ushort { /// <summary>member access mask - Use this mask to retrieve accessibility information.</summary> Member...
mit
C#
729cc4c5b96f6822d3a0c4e30e515c53935753b7
Implement some of StandardAjax.System
faint32/snowflake-1,faint32/snowflake-1,SnowflakePowered/snowflake,faint32/snowflake-1,SnowflakePowered/snowflake,RonnChyran/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake,RonnChyran/snowflake
Snowflake.StandardAjax/StandardAjax.System.cs
Snowflake.StandardAjax/StandardAjax.System.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Snowflake.Ajax; using Snowflake.Service; namespace Snowflake.StandardAjax { public partial class StandardAjax { [AjaxMethod(MethodPrefix = "System")] public IJSResponse Get...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Snowflake.Ajax; using Snowflake.Service; namespace Snowflake.StandardAjax { public partial class StandardAjax { [AjaxMethod(MethodPrefix = "System")] public IJSResponse Get...
mpl-2.0
C#
c78404f08913dc44629d8d99a64ae40a5d72c578
fix styling on MouseAI
fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,krille90/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,fomalsd/unitystation,krille90/unitystation
UnityProject/Assets/Scripts/NPC/AI/MouseAI.cs
UnityProject/Assets/Scripts/NPC/AI/MouseAI.cs
using UnityEngine; using System.Collections.Generic; using System.Collections; /// <summary> /// AI brain for mice /// used to get hunted by Runtime and squeak /// </summary> public class MouseAI : MobAI { private string mouseName; private string capMouseName; private float timeForNextRandomAction; private float t...
using UnityEngine; using System.Collections.Generic; using System.Collections; /// <summary> /// AI brain for mice /// used to get hunted by Runtime and squeak /// </summary> public class MouseAI : MobAI { private string mouseName; private string capMouseName; private float timeForNextRandomAction; pri...
agpl-3.0
C#
f8e2bb07116d38a50035e07e0880ce443dfe860e
Update comment
Archie-Yang/PcscDotNet
src/PcscDotNet/SCardContext.cs
src/PcscDotNet/SCardContext.cs
namespace PcscDotNet { /// <summary> /// A handle that identifies the resource manager context. /// </summary> public struct SCardContext { /// <summary> /// Default value. /// </summary> public static readonly SCardContext Default = default(SCardContext); //...
namespace PcscDotNet { public struct SCardContext { public static readonly SCardContext Default = default(SCardContext); public unsafe bool HasValue => Value != null; public unsafe void* Value; } }
mit
C#
22b7a09733c01633bf6bb4178b959d670b018476
Clear record before start new recording
thedoritos/unity-touch-recorder
Assets/UnityTouchRecorder/Scripts/TouchRecorderController.cs
Assets/UnityTouchRecorder/Scripts/TouchRecorderController.cs
using UnityEngine; namespace UnityTouchRecorder { public class TouchRecorderController : MonoBehaviour { UnityTouchRecorderPlugin plugin = new UnityTouchRecorderPlugin(); [SerializeField] TouchRecorderView view; void Awake() { Object.DontDestroyOnLoad(game...
using UnityEngine; namespace UnityTouchRecorder { public class TouchRecorderController : MonoBehaviour { UnityTouchRecorderPlugin plugin = new UnityTouchRecorderPlugin(); [SerializeField] TouchRecorderView view; void Awake() { Object.DontDestroyOnLoad(game...
mit
C#
c2cb128554f3de73c27157f73b8fdd2127b03b8f
Access token recieving implemented
DenisBabarykin/OAuth2AuthorizationExample,DenisBabarykin/OAuth2AuthorizationExample,DenisBabarykin/OAuth2AuthorizationExample
src/WebApp/src/WebApp/Controllers/VkAuthorizationController.cs
src/WebApp/src/WebApp/Controllers/VkAuthorizationController.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using SimpleWebRequests; // For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 namespace WebApp.Controllers { public class VkA...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; // For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 namespace WebApp.Controllers { public class VkAuthorizationController : ...
mit
C#
45ca91d61a132d00fd7908c8ab4c903c86f13759
change home page
Team-Ressurrection/Asp.NetMVCApp,Team-Ressurrection/Asp.NetMVCApp,Team-Ressurrection/Asp.NetMVCApp
SalaryCalculator/SalaryCalculatorWeb/Views/Home/Index.cshtml
SalaryCalculator/SalaryCalculatorWeb/Views/Home/Index.cshtml
@{ ViewBag.Title = "Home Page"; } <div class="jumbotron"> <h1>SALARY CALCULATOR</h1> <p class="lead"> This is a simple application, which allows you to calculate your incomes both from labor and non-labor contracts. You can easily calculate your social security income and social securities...
@{ ViewBag.Title = "Home Page"; } <div class="jumbotron"> <h1>ASP.NET</h1> <p class="lead">ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.</p> <p><a href="http://asp.net" class="btn btn-primary btn-lg">Learn more &raquo;</a></p> </div> ...
mit
C#
de0aa92a403572e13e8da442d9dfd7f9b6a0d5c3
Add more tests
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Tests/UnitTests/GUI/SendControlViewModelTest.cs
WalletWasabi.Tests/UnitTests/GUI/SendControlViewModelTest.cs
using Xunit; using WalletWasabi.Gui.Controls.WalletExplorer; namespace WalletWasabi.Tests.UnitTests.GUI { public class SendControlViewModelTest { [Theory] [InlineData(false, "0")] [InlineData(false, "0.1")] [InlineData(true, "1.2099999997690000")] [InlineData(true, "1")] [InlineData(true, "47")] [Inlin...
using Xunit; using WalletWasabi.Gui.Controls.WalletExplorer; namespace WalletWasabi.Tests.UnitTests.GUI { public class SendControlViewModelTest { [Theory] [InlineData(false, "0")] [InlineData(false, "0.1")] [InlineData(true, "1.2099999997690000")] [InlineData(true, "1")] [InlineData(true, "47")] [Inlin...
mit
C#
385a9550a17579088dff1c92f6b2bec94a7829a0
fix broken dependancy
cityindex-attic/CIAPI.CS,cityindex-attic/CIAPI.CS,cityindex-attic/CIAPI.CS
src/packages/Lightstreamer.3-6.DotNetClient_N2/AssemblyInfo.cs
src/packages/Lightstreamer.3-6.DotNetClient_N2/AssemblyInfo.cs
// Assembly DotNetClient_N2, Version 1.1.3323.32539 [assembly: System.Reflection.AssemblyVersion("1.0.0.0")] [assembly: System.Runtime.InteropServices.Guid("6957aed9-4119-47d8-a864-e8987adfa8a1")] [assembly: System.Runtime.InteropServices.ComVisible(false)] [assembly: System.Runtime.CompilerServices.RuntimeCompatibil...
// Assembly DotNetClient_N2, Version 1.1.3323.32539 [assembly: System.Reflection.AssemblyVersion("1.1.3323.32539")] [assembly: System.Runtime.InteropServices.Guid("6957aed9-4119-47d8-a864-e8987adfa8a1")] [assembly: System.Runtime.InteropServices.ComVisible(false)] [assembly: System.Runtime.CompilerServices.RuntimeCom...
apache-2.0
C#
2153c69bd4fcab8e44b98e4e04238ad507e1c990
Set version 0.9.0
hazzik/DelegateDecompiler,jaenyph/DelegateDecompiler,morgen2009/DelegateDecompiler
src/DelegateDecompiler/Properties/AssemblyInfo.cs
src/DelegateDecompiler/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: Assembly...
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: Assembly...
mit
C#
1c974721b06b152f00f856ea2d698bade69dc4e1
Fix FILETIME serialization is corrupt in Mono.
modulexcite/msgpack-cli,scopely/msgpack-cli,undeadlabs/msgpack-cli,msgpack/msgpack-cli,undeadlabs/msgpack-cli,modulexcite/msgpack-cli,scopely/msgpack-cli,msgpack/msgpack-cli
src/MsgPack/Serialization/DefaultSerializers/System_Runtime_InteropServices_ComTypes_FILETIMEMessagePackSerializer.cs
src/MsgPack/Serialization/DefaultSerializers/System_Runtime_InteropServices_ComTypes_FILETIMEMessagePackSerializer.cs
#region -- License Terms -- // // MessagePack for CLI // // Copyright (C) 2010-2012 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.apac...
#region -- License Terms -- // // MessagePack for CLI // // Copyright (C) 2010-2012 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.apac...
apache-2.0
C#
06ce3fff086a7df7d55418632865215c3f9ae353
Remove errant spaces from CompilerStatus.cs
tgstation/tgstation-server,Cyberboss/tgstation-server,Cyberboss/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server
src/Tgstation.Server.Api/Models/CompilerStatus.cs
src/Tgstation.Server.Api/Models/CompilerStatus.cs
namespace Tgstation.Server.Api.Models { /// <summary> /// Status of the <see cref="DreamMaker"/> for an <see cref="Instance"/> /// </summary> #pragma warning disable CA1717 // Only FlagsAttribute enums should have plural names public enum CompilerStatus #pragma warning restore CA1717 // Only FlagsAttribute enums s...
namespace Tgstation.Server.Api.Models { /// <summary> /// Status of the <see cref="DreamMaker"/> for an <see cref="Instance"/> /// </summary> #pragma warning disable CA1717 // Only FlagsAttribute enums should have plural names public enum CompilerStatus #pragma warning restore CA1717 // Only FlagsAttribut...
agpl-3.0
C#
59a6b278ef3d48c278927186d29e90fa7cc2752a
Update Chogath.cs
metaphorce/leaguesharp
MetaSmite/Champions/Chogath.cs
MetaSmite/Champions/Chogath.cs
using System; using LeagueSharp; using LeagueSharp.Common; using SharpDX; namespace MetaSmite.Champions { public static class Chogath { internal static Spell champSpell; private static Menu Config = MetaSmite.Config; private static double totalDamage; private static double spel...
using System; using LeagueSharp; using LeagueSharp.Common; using SharpDX; namespace MetaSmite.Champions { public static class Chogath { internal static Spell champSpell; private static Menu Config = MetaSmite.Config; private static double totalDamage; private static double spel...
mit
C#
20b843e63c86dc8d84217c29ba5a5654c576adae
Add create tab
ppy/osu,smoogipoo/osu,smoogipoo/osu,2yangk23/osu,DrabWeb/osu,naoey/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,UselessToucan/osu,DrabWeb/osu,ppy/osu,johnneijzen/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,2yangk23/osu,UselessToucan/osu,ppy/osu,smoogipooo/osu,UselessToucan/osu,johnneijzen/osu,peppy/osu,peppy/osu-new,DrabWeb...
osu.Game/Screens/Multi/Screens/Lounge/FilterControl.cs
osu.Game/Screens/Multi/Screens/Lounge/FilterControl.cs
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Graphics; using osu.Game.Online.Multiplayer; using osu.Game.Overlays.SearchableList; using osuTK.Graphics; namespace osu.Game.Screens.Multi.Screens.Loun...
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Graphics; using osu.Game.Online.Multiplayer; using osu.Game.Overlays.SearchableList; using osuTK.Graphics; namespace osu.Game.Screens.Multi.Screens.Loun...
mit
C#
49584da47cadf56a33953ac6863d379a76d88274
write test output to files to prevent interleaving when running tests in parallel
SQLStreamStore/SQLStreamStore,damianh/Cedar.EventStore,SQLStreamStore/SQLStreamStore
build.cake
build.cake
#addin "nuget:?package=Cake.FileHelpers&version=2.0.0" var target = Argument("target", "Default"); var configuration = Argument("configuration", "Release"); var artifactsDir = Directory("./artifacts"); var sourceDir = Directory("./src"); var solution = "./src/SqlStreamStore.sln"; var buildNu...
#addin "nuget:?package=Cake.FileHelpers&version=2.0.0" var target = Argument("target", "Default"); var configuration = Argument("configuration", "Release"); var artifactsDir = Directory("./artifacts"); var sourceDir = Directory("./src"); var solution = "./src/SqlStreamStore.sln"; var buildNu...
mit
C#
c6ea10c6af894b588ba263616c24a9432dcc23d3
fix publish
Sphiecoh/MusicStore,Sphiecoh/MusicStore
build.cake
build.cake
var target = Argument("target", "Default"); var configuration = Argument<string>("configuration", "Release"); /////////////////////////////////////////////////////////////////////////////// // GLOBAL VARIABLES /////////////////////////////////////////////////////////////////////////////// var isLocalBuild ...
var target = Argument("target", "Default"); var configuration = Argument<string>("configuration", "Release"); /////////////////////////////////////////////////////////////////////////////// // GLOBAL VARIABLES /////////////////////////////////////////////////////////////////////////////// var isLocalBuild ...
mit
C#
2a154ef312b0bd576f079cdd7c7c13948f7cd800
remove timing
jefking/King.Service.ServiceBus
Demo/King.Service.ServiceBus.WorkerRole/Queue/QueueForBuffer.cs
Demo/King.Service.ServiceBus.WorkerRole/Queue/QueueForBuffer.cs
namespace King.Service.WorkerRole.Queue { using King.Service.ServiceBus; using King.Service.ServiceBus.Queue; using System; using System.Diagnostics; public class QueueForBuffer : RecurringTask { #region Members private readonly IBusQueueSender client; #endregion ...
namespace King.Service.WorkerRole.Queue { using King.Service.ServiceBus; using King.Service.ServiceBus.Queue; using System; using System.Diagnostics; public class QueueForBuffer : RecurringTask { #region Members private readonly IBusQueueSender client; #endregion ...
mit
C#
310e5d70115401e2eeba9139ed6dab63ab0c55f6
revert testing assembly version
mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati,duplicati/duplicati,duplicati/duplicati,duplicati/duplicati,mnaiman/duplicati,mnaiman/duplicati,duplicati/duplicati,mnaiman/duplicati
Duplicati/GUI/Duplicati.GUI.TrayIcon/Properties/AssemblyInfo.cs
Duplicati/GUI/Duplicati.GUI.TrayIcon/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: AssemblyTit...
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: AssemblyTit...
lgpl-2.1
C#
0e710878c8711fa72139968f94e46e5b17e8baed
Fix color problem
ZLima12/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,DrabWeb/osu-framework,peppy/osu-fr...
osu.Framework.Android/Graphics/Textures/AndroidTextureLoaderStore.cs
osu.Framework.Android/Graphics/Textures/AndroidTextureLoaderStore.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 Android.Graphics; using osu.Framework.Graphics.Textures; using osu.Framework.IO.Stores; using SixLabors.ImageSharp; using System; using System.IO; name...
// 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 Android.Graphics; using osu.Framework.Graphics.Textures; using osu.Framework.IO.Stores; using SixLabors.ImageSharp; using System; using System.IO; name...
mit
C#
5225d8f7df96415b4ad752abd1043f102e7c7cea
increment patch version,
jwChung/Experimentalism,jwChung/Experimentalism
build/CommonAssemblyInfo.cs
build/CommonAssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Jin-Wook Chung")] [assembly: AssemblyCopyright("Copyright (c) 2014, Jin-Wook Chung")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Co...
using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Jin-Wook Chung")] [assembly: AssemblyCopyright("Copyright (c) 2014, Jin-Wook Chung")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Co...
mit
C#
906a5f741776eae1f91d70599d68c74199f7de54
Fix build issue w/ Dev14
crwilcox/PTVS,alanch-ms/PTVS,fjxhkj/PTVS,zooba/PTVS,DinoV/PTVS,ChinaQuants/PTVS,dut3062796s/PTVS,ChinaQuants/PTVS,DEVSENSE/PTVS,alanch-ms/PTVS,huguesv/PTVS,dut3062796s/PTVS,ChinaQuants/PTVS,fivejjs/PTVS,zooba/PTVS,modulexcite/PTVS,fivejjs/PTVS,int19h/PTVS,gomiero/PTVS,int19h/PTVS,jkorell/PTVS,gomiero/PTVS,dut3062796s/P...
Python/Product/PythonTools/PythonTools/Repl/InlineReplAdornment.cs
Python/Product/PythonTools/PythonTools/Repl/InlineReplAdornment.cs
/* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Apache License, Version 2.0. A * copy of the license can be found in the License.html file at the root of this distribution...
/* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Apache License, Version 2.0. A * copy of the license can be found in the License.html file at the root of this distribution...
apache-2.0
C#
ce2956fef51eda952e310483585e64959e75e0a2
Add missing license header.
chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium,chromium/vs-chromium
src/Core/VsChromiumVersion.cs
src/Core/VsChromiumVersion.cs
// Copyright 2014 The Chromium 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.Text; using System.Threading.Tasks; namespace VsChromium.Core ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VsChromium.Core { public static class VsChromiumVersion { public const string Product = "0.9.7"; public const string File = Product + ".0"; } }
bsd-3-clause
C#
142f9b83ddcb9818455f666c680c27f8fa097ad9
Change output path, change screentshot image file name.
sanukin39/UniEditorScreenshot
Assets/UniEditorScreenshot/Editor/CaptureWindow.cs
Assets/UniEditorScreenshot/Editor/CaptureWindow.cs
using UnityEngine; using UnityEditor; using System; public class CaptureWindow : EditorWindow { private string saveFileName = string.Empty; private string saveDirPath = string.Empty; [MenuItem("Window/Screenshot Capture")] private static void Capture() { EditorWindow.GetWindow(typeof(Capt...
using UnityEngine; using UnityEditor; using System; using System.IO; using System.Collections; public class CaptureWindow : EditorWindow{ private string saveFileName = string.Empty; private string saveDirPath = string.Empty; [MenuItem("Window/Capture Editor")] private static void Capture() { ...
mit
C#
66383e489482dc8c03c4bc38eda1045e55c14894
Fix bug in script args.
sethreno/schemazen,keith-hall/schemazen,sethreno/schemazen,Zocdoc/schemazen,ruediger-stevens/schemazen
console/Script.cs
console/Script.cs
using System; using System.IO; using System.Security.Cryptography; using model; namespace console { public class Script : DbCommand { protected string DataTables { get; set; } protected string DataTablesPattern { get; set; } public Script() : base( "Script", "Generate scripts for the specified...
using System; using System.IO; using System.Security.Cryptography; using model; namespace console { public class Script : DbCommand { protected string DataTables { get; set; } protected string DataTablesPattern { get; set; } public Script() : base( "Script", "Generate scripts for the specified...
mit
C#
00191e98587b93d44d828a75d9e77fcc9a33f490
Add ability to run through commandline w/o GUI
dpuleri/WRW
WinRedditWallpaper/App.xaml.cs
WinRedditWallpaper/App.xaml.cs
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Linq; using System.Threading.Tasks; using System.Windows; using System.Diagnostics; namespace WinRedditWallpaper { /// <summary> /// Interaction logic for App.xaml /// </summary> ...
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Linq; using System.Threading.Tasks; using System.Windows; using System.Diagnostics; namespace WinRedditWallpaper { /// <summary> /// Interaction logic for App.xaml /// </summary> ...
apache-2.0
C#
5548dbdf5b655043778c6d6b9382c07b883af3de
send to queue
jefking/King.Service.ServiceBus
Demo/King.Service.ServiceBus.WorkerRole/Factory.cs
Demo/King.Service.ServiceBus.WorkerRole/Factory.cs
namespace King.Service.ServiceBus { using King.Service.ServiceBus.Queue; using King.Service.WorkerRole; using King.Service.WorkerRole.Queue; using King.Service.WorkerRole.Scalable; using System.Collections.Generic; /// <summary> /// Factory /// </summary> public class Factory : ITa...
namespace King.Service.ServiceBus { using King.Service.ServiceBus.Queue; using King.Service.WorkerRole; using King.Service.WorkerRole.Queue; using King.Service.WorkerRole.Scalable; using System.Collections.Generic; /// <summary> /// Factory /// </summary> public class Factory : ITa...
mit
C#
2fc305acf43cccd15bb549335dc4caadd5f77e05
change the images to be with fixed size for more consistent view
SoftwareFans/AstroPhotoGallery,SoftwareFans/AstroPhotoGallery,SoftwareFans/AstroPhotoGallery
AstroPhotoGallery/AstroPhotoGallery/Views/Home/ListCategories.cshtml
AstroPhotoGallery/AstroPhotoGallery/Views/Home/ListCategories.cshtml
@model PagedList.IPagedList<AstroPhotoGallery.Models.Category> @using PagedList.Mvc; @using System.Linq; @{ ViewBag.Title = "List"; } <link href="~/Content/PagedList.css" rel="stylesheet" /> <div class="container"> <h2 class="text-center">Browse by categories</h2> <br/> @foreach (var category in Model...
@model PagedList.IPagedList<AstroPhotoGallery.Models.Category> @using PagedList.Mvc; @using System.Linq; @{ ViewBag.Title = "List"; } <link href="~/Content/PagedList.css" rel="stylesheet" /> <div class="container"> <h2 class="text-center">Browse by categories</h2> <br/> @foreach (var category in Model...
mit
C#
c19c819150ea34031b8dd705d892bb272525e50a
Remove comment
glav/CognitiveServicesFluentApi
Glav.CognitiveServices.FluentApi.Core/Configuration/ApiActionType.cs
Glav.CognitiveServices.FluentApi.Core/Configuration/ApiActionType.cs
using System; using System.Collections.Generic; using System.Net.Http; using System.Text; namespace Glav.CognitiveServices.FluentApi.Core.Configuration { public abstract class ApiActionDefinition { protected ApiActionDefinition() { } protected ApiActionDefinition(...
using System; using System.Collections.Generic; using System.Net.Http; using System.Text; namespace Glav.CognitiveServices.FluentApi.Core.Configuration { public abstract class ApiActionDefinition { protected ApiActionDefinition() { } protected ApiActionDefinition(...
mit
C#
c7936a8f7a17ea440146fff3312896bb0174fb9c
Update AssemblyCompany
GoogleCloudPlatform/google-cloud-visualstudio,GoogleCloudPlatform/google-cloud-visualstudio,GoogleCloudPlatform/google-cloud-visualstudio,GoogleCloudPlatform/google-cloud-visualstudio,GoogleCloudPlatform/google-cloud-visualstudio
GoogleCloudExtension/GoogleCloudExtension/Properties/AssemblyInfo.cs
GoogleCloudExtension/GoogleCloudExtension/Properties/AssemblyInfo.cs
// Copyright 2016 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicabl...
// Copyright 2016 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicabl...
apache-2.0
C#
afcc0b99b5e4d647c42a273dad97d2b532091a3c
Fix SourceCodeUrl.
ejball/XmlDocMarkdown,ejball/ArgsReading
tools/Build/Build.cs
tools/Build/Build.cs
using System; using Faithlife.Build; internal static class Build { public static int Main(string[] args) => BuildRunner.Execute(args, build => { build.AddDotNetTargets( new DotNetBuildSettings { DocsSettings = new DotNetDocsSettings { GitLogin = new GitLoginInfo("ejball", Environment.GetEnvironm...
using System; using Faithlife.Build; internal static class Build { public static int Main(string[] args) => BuildRunner.Execute(args, build => { build.AddDotNetTargets( new DotNetBuildSettings { DocsSettings = new DotNetDocsSettings { GitLogin = new GitLoginInfo("ejball", Environment.GetEnvironm...
mit
C#
7732eef2a24dcd9e029b5fc9d582b61b777e21c7
Implement SynchronousIOManager.GetDirectories
Cyberboss/tgstation-server,Cyberboss/tgstation-server,tgstation/tgstation-server,tgstation/tgstation-server-tools,tgstation/tgstation-server
src/Tgstation.Server.Host/Core/SynchronousIOManager.cs
src/Tgstation.Server.Host/Core/SynchronousIOManager.cs
using System; using System.Collections.Generic; using System.IO; using System.Threading; namespace Tgstation.Server.Host.Core { /// <inheritdoc /> sealed class SynchronousIOManager : ISynchronousIOManager { /// <inheritdoc /> public IEnumerable<string> GetDirectories(string path, CancellationToken cancellation...
using System; using System.Collections.Generic; using System.IO; using System.Threading; namespace Tgstation.Server.Host.Core { /// <inheritdoc /> sealed class SynchronousIOManager : ISynchronousIOManager { /// <inheritdoc /> public IEnumerable<string> GetDirectories(string path, CancellationToken cancellation...
agpl-3.0
C#
2b94d8493dbf47e25cd146f92fc27119cd658dad
Update IRavenUnitOfWorkFactory.cs
tiksn/TIKSN-Framework
TIKSN.Core/Data/RavenDB/IRavenUnitOfWorkFactory.cs
TIKSN.Core/Data/RavenDB/IRavenUnitOfWorkFactory.cs
namespace TIKSN.Data.RavenDB { public interface IRavenUnitOfWorkFactory<TUnitOfWork> where TUnitOfWork : IUnitOfWork { TUnitOfWork Create(); } }
namespace TIKSN.Data.RavenDB { public interface IRavenUnitOfWorkFactory<TUnitOfWork> where TUnitOfWork : IUnitOfWork { TUnitOfWork Create(); } }
mit
C#
94b98a891bef12393346df7cea9a288954607d4b
allow location to be set externally
Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen
Dashen/AssetInfo.cs
Dashen/AssetInfo.cs
using System; using System.Collections.Generic; using System.Linq; namespace Dashen { public class AssetInfo { private const string SelfClosingFormat = "<{0} {1} />"; private const string NonClosingFormat = "<{0} {1}></{0}>"; public string Tag { get; protected set; } public bool SelfClosing { get; protected...
using System; using System.Collections.Generic; using System.Linq; namespace Dashen { public class AssetInfo { private const string SelfClosingFormat = "<{0} {1} />"; private const string NonClosingFormat = "<{0} {1}></{0}>"; public string Tag { get; protected set; } public bool SelfClosing { get; protected...
lgpl-2.1
C#
fa6740d8c8fb4f893aa895415ea0d91012c9199c
Fix Properties Initialize
dreign/ComBoost,dreign/ComBoost
Wodsoft.ComBoost/ComponentModel/EntityEditModel.cs
Wodsoft.ComBoost/ComponentModel/EntityEditModel.cs
using System; using System.Collections.Generic; using System.Data.Entity; using System.Data.Entity.Metadata; using System.Linq; using System.Text; using System.Threading.Tasks; namespace System.ComponentModel { /// <summary> /// Entity edit model. /// </summary> public class EntityEditModel : NotifyBa...
using System; using System.Collections.Generic; using System.Data.Entity; using System.Data.Entity.Metadata; using System.Linq; using System.Text; using System.Threading.Tasks; namespace System.ComponentModel { /// <summary> /// Entity edit model. /// </summary> public class EntityEditModel : NotifyBa...
mit
C#
477a46400c32d04c0e0c3e878ec545cf4d6f631f
Add source documentation for watchlist item.
henrikfroehling/TraktApiSharp
Source/Lib/TraktApiSharp/Objects/Get/Watchlist/TraktWatchlistItem.cs
Source/Lib/TraktApiSharp/Objects/Get/Watchlist/TraktWatchlistItem.cs
namespace TraktApiSharp.Objects.Get.Watchlist { using Attributes; using Enums; using Movies; using Newtonsoft.Json; using Shows; using Shows.Episodes; using Shows.Seasons; using System; /// <summary>A Trakt watchlist item, containing a movie, show, season and / or episode and infor...
namespace TraktApiSharp.Objects.Get.Watchlist { using Attributes; using Enums; using Movies; using Newtonsoft.Json; using Shows; using Shows.Episodes; using Shows.Seasons; using System; public class TraktWatchlistItem { [JsonProperty(PropertyName = "listed_at")] ...
mit
C#
05de51c0f139d19dd8455200fd1348430745b6e7
Change method to static
tusdotnet/tusdotnet,tusdotnet/tusdotnet,tusdotnet/tusdotnet,tusdotnet/tusdotnet
Source/tusdotnet/Validation/Requirements/UploadLengthForWriteFile.cs
Source/tusdotnet/Validation/Requirements/UploadLengthForWriteFile.cs
using System.Threading.Tasks; using tusdotnet.Adapters; using tusdotnet.Constants; using tusdotnet.Interfaces; using tusdotnet.Models; namespace tusdotnet.Validation.Requirements { internal sealed class UploadLengthForWriteFile : Requirement { public override async Task Validate(ContextAdapter context...
using System.Threading.Tasks; using tusdotnet.Adapters; using tusdotnet.Constants; using tusdotnet.Interfaces; using tusdotnet.Models; namespace tusdotnet.Validation.Requirements { internal sealed class UploadLengthForWriteFile : Requirement { public override async Task Validate(ContextAdapter context...
mit
C#
be432a81fb7a12a5a567af165d9ef9c3bca7ba9c
Fix user deletion (#6879)
xkproject/Orchard2,petedavis/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,xkproject/Orchard2,petedavis/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,stevetayloruk/Orchard2,stevetayloruk/Orchard2
src/OrchardCore.Modules/OrchardCore.Users/Views/UserButtons.cshtml
src/OrchardCore.Modules/OrchardCore.Users/Views/UserButtons.cshtml
@model SummaryAdminUserViewModel @using OrchardCore.Entities @using OrchardCore.Users.Models @{ var user = Model.User as User; var currentUser = user.UserName == User.Identity.Name; } <a asp-action="Edit" asp-route-id="@user.Id" class="btn btn-primary btn-sm">@T["Edit"]</a> <a class="btn btn-danger btn-sm @(cur...
@model SummaryAdminUserViewModel @using OrchardCore.Entities @using OrchardCore.Users.Models @{ var user = Model.User as User; var currentUser = user.UserName == User.Identity.Name; } <a asp-action="Edit" asp-route-id="@user.Id" class="btn btn-primary btn-sm">@T["Edit"]</a> <a class="btn btn-danger btn-sm @(cur...
bsd-3-clause
C#
46c0a998996fae9920c85352d869ed2a19bf2405
Make OnPreKeyEvent isKeyboardShortcut a ref param
Livit/CefSharp,AJDev77/CefSharp,battewr/CefSharp,rlmcneary2/CefSharp,illfang/CefSharp,gregmartinhtc/CefSharp,Livit/CefSharp,zhangjingpu/CefSharp,VioletLife/CefSharp,dga711/CefSharp,Haraguroicha/CefSharp,Livit/CefSharp,NumbersInternational/CefSharp,VioletLife/CefSharp,zhangjingpu/CefSharp,yoder/CefSharp,ruisebastiao/Cef...
CefSharp/IKeyboardHandler.cs
CefSharp/IKeyboardHandler.cs
// Copyright © 2010-2015 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. namespace CefSharp { public interface IKeyboardHandler { bool OnKeyEvent(IWebBrowser browser, KeyType type, int code, CefEventFlag...
// Copyright © 2010-2015 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. namespace CefSharp { public interface IKeyboardHandler { bool OnKeyEvent(IWebBrowser browser, KeyType type, int code, CefEventFlag...
bsd-3-clause
C#
ab36396ecf579adcb1167983fcd6249cb2259945
Add to GLFW
vazgriz/CSharpGameLibrary,rhynodegreat/CSharpGameLibrary,vazgriz/CSharpGameLibrary,rhynodegreat/CSharpGameLibrary
CSharpGameLibrary/GLFW/GLFW.cs
CSharpGameLibrary/GLFW/GLFW.cs
using System; using System.Collections.Generic; using CSGL.Input; using UGLFW = CSGL.GLFW.Unmanaged.GLFW; namespace CSGL.GLFW { public static class GLFW { public static string Version { get; private set; } public static int VersionMajor { get; private set; } public static int VersionMinor...
using System; using System.Collections.Generic; using CSGL.Input; using glfw = CSGL.GLFW.Unmanaged.GLFW; namespace CSGL.GLFW { public static class GLFW { public static string Version { get; private set; } public static int VersionMajor { get; private set; } public static int VersionMinor ...
mit
C#
6338b72e8adfc76ec7e2f1d825420a2815afd0f5
handle debugging both x86/x64
ITGlobal/CefSharp,illfang/CefSharp,yoder/CefSharp,dga711/CefSharp,Livit/CefSharp,windygu/CefSharp,jamespearce2006/CefSharp,rover886/CefSharp,NumbersInternational/CefSharp,zhangjingpu/CefSharp,wangzheng888520/CefSharp,Livit/CefSharp,NumbersInternational/CefSharp,Haraguroicha/CefSharp,battewr/CefSharp,yoder/CefSharp,rlmc...
CefSharp.Example/CefExample.cs
CefSharp.Example/CefExample.cs
using System; using System.Linq; namespace CefSharp.Example { public static class CefExample { public const string DefaultUrl = "custom://cefsharp/home"; // Use when debugging the actual SubProcess, to make breakpoints etc. inside that project work. private const bool debuggingSubProc...
using System; using System.Linq; namespace CefSharp.Example { public static class CefExample { public const string DefaultUrl = "custom://cefsharp/home"; // Use when debugging the actual SubProcess, to make breakpoints etc. inside that project work. private const bool debuggingSubProc...
bsd-3-clause
C#
67d3d6e9d3dbca013c7c6048fa491eda4699fc5c
use statement body
borismod/FinBotApp,idoban/FinBotApp,idoban/FinBotApp,borismod/FinBotApp
FinBot/Engine/BaseAdapter.cs
FinBot/Engine/BaseAdapter.cs
using System.Xml.Linq; using Syn.Bot.Siml; using Syn.Bot.Siml.Interfaces; namespace FinBot.Engine { public abstract class BaseAdapter : IAdapter { public bool IsRecursive { get { return true; } } private string Name { get { return GetType().Name...
using System.Xml.Linq; using Syn.Bot.Siml; using Syn.Bot.Siml.Interfaces; namespace FinBot.Engine { public abstract class BaseAdapter : IAdapter { public bool IsRecursive => true; private string Name { get { return GetType().Name.Replace("Adapter", string.Empty); } ...
mit
C#
a0e52cf92b1b4acdfae7375be41426f1cae5fe67
Update the version and description
Haacked/Scientist.net
src/Scientist/Properties/AssemblyInfo.cs
src/Scientist/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("Scientist")] [assembly: AssemblyDescripti...
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("Scientist")] [assembly: AssemblyDescripti...
mit
C#
a2469e3b3e38bd5997d94db12d735d80971ff87b
add seo TwitterCards
fguini/leathergoods,fguini/leathergoods,fguini/leathergoods
Shared/Framework/Seo/TwitterCard.cs
Shared/Framework/Seo/TwitterCard.cs
using System; using Framework.Extensions; namespace Framework.Seo { public class TwitterCard { private static string TwCard() { return $"<meta property=\"twitter:card\" content=\"summary\">"; } private static string TwSiteName(string twSiteName) { ...
using System; namespace Framework.Seo { public class TwitterCard { } }
mit
C#
089bab89eeebb6a0dfb374645f9300d7d36fa06f
improve error message for l0 test.
kasubram/vsts-agent,kasubram/vsts-agent,kasubram/vsts-agent,Microsoft/vsts-agent,Microsoft/vsts-agent,kasubram/vsts-agent,lkillgore/vsts-agent,lkillgore/vsts-agent,Microsoft/vsts-agent,Microsoft/vsts-agent,lkillgore/vsts-agent,lkillgore/vsts-agent
src/Test/L0/DotnetsdkDownloadScriptL0.cs
src/Test/L0/DotnetsdkDownloadScriptL0.cs
using Xunit; using System.IO; using System.Net.Http; using System.Threading.Tasks; namespace Microsoft.VisualStudio.Services.Agent.Tests { public sealed class DotnetsdkDownloadScriptL0 { [Fact] [Trait("Level", "L0")] [Trait("Category", "Agent")] public async Task EnsureDotnetsdk...
using Xunit; using System.IO; using System.Net.Http; using System.Threading.Tasks; namespace Microsoft.VisualStudio.Services.Agent.Tests { public sealed class DotnetsdkDownloadScriptL0 { [Fact] [Trait("Level", "L0")] [Trait("Category", "Agent")] public async Task EnsureDotnetsdk...
mit
C#
ecf622999b806a0859bf4686c132a0b055ab712c
Fix missing name change
ahockersten/ScrollsUserMenuInChat
UserMenuInChat.mod/Properties/AssemblyInfo.cs
UserMenuInChat.mod/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; // Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. [assembly: AssemblyTitle("UserMenuInChat")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [asse...
using System.Reflection; using System.Runtime.CompilerServices; // Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. [assembly: AssemblyTitle("RightClickInChat")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [as...
bsd-2-clause
C#
4a052a67bb8db9e74913bf4ecc67888cf78ae66e
Bump v1.0.23
karronoli/tiny-sato
TinySato/Properties/AssemblyInfo.cs
TinySato/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // アセンブリに関する一般情報は以下の属性セットをとおして制御されます。 // アセンブリに関連付けられている情報を変更するには、 // これらの属性値を変更してください。 [assembly: AssemblyTitle("TinySato")] [assembly: AssemblyDescription("You can construct and send SBPL packet to Sato printer. Sat...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // アセンブリに関する一般情報は以下の属性セットをとおして制御されます。 // アセンブリに関連付けられている情報を変更するには、 // これらの属性値を変更してください。 [assembly: AssemblyTitle("TinySato")] [assembly: AssemblyDescription("You can construct and send SBPL packet to Sato printer. Sat...
apache-2.0
C#
6baeb0daf74b66db0de24348149907b2b4a7d87e
test fail commit for appveyor
v-braun/VBR-UnixTime
VBR.UnixTime.Tests/UnixTimeTests.cs
VBR.UnixTime.Tests/UnixTimeTests.cs
using System; using Xunit; namespace VBR{ public class UnixTimeTests{ private readonly string _unixEpochFormat = "1970-01-{0:00}T{1:00}:{2:00}:{3:00}:{4:000}"; private readonly string _assertFormat = "yyyy-MM-ddTHH:mm:ss:fff"; [Fact] public void FromElapsedMillisecondsTest(){ ...
using System; using Xunit; namespace VBR{ public class UnixTimeTests{ private readonly string _unixEpochFormat = "1970-01-{0:00}T{1:00}:{2:00}:{3:00}:{4:000}"; private readonly string _assertFormat = "yyyy-MM-ddTHH:mm:ss:fff"; [Fact] public void FromElapsedMillisecondsTest(){ ...
mit
C#
afe7abdb775cc1d12bdaefc5d5f9dbcc2fcdf089
Update ApplicationInsightsTraceTelemeter.cs
tiksn/TIKSN-Framework
TIKSN.Core/Analytics/Telemetry/ApplicationInsightsTraceTelemeter.cs
TIKSN.Core/Analytics/Telemetry/ApplicationInsightsTraceTelemeter.cs
using System; using System.Diagnostics; using System.Threading.Tasks; using Microsoft.ApplicationInsights.DataContracts; namespace TIKSN.Analytics.Telemetry { public class ApplicationInsightsTraceTelemeter : ITraceTelemeter { public Task TrackTrace(string message, TelemetrySeverityLevel severityLevel)...
using Microsoft.ApplicationInsights.DataContracts; using System; using System.Diagnostics; using System.Threading.Tasks; namespace TIKSN.Analytics.Telemetry { public class ApplicationInsightsTraceTelemeter : ITraceTelemeter { public Task TrackTrace(string message, TelemetrySeverityLevel severityLevel)...
mit
C#
e7dee88cae7464f1db814bad2c9cbbd037430e6b
Add HalLinkCollection::HasLink
Xerosigma/halclient
HALClient/HalLinkCollection.cs
HALClient/HalLinkCollection.cs
using System.Collections.Generic; using System.Linq; namespace Ecom.Hal { public class HalLinkCollection : List<HalLink> { public HalLink GetLink(string rel) { return (from link in this where link.Rel == rel select link).FirstOrDefault(); } public bool HasLink(string rel) { return this...
using System.Collections.Generic; using System.Linq; namespace Ecom.Hal { public class HalLinkCollection : List<HalLink> { public HalLink GetLink(string rel) { return (from link in this where link.Rel == rel select link).FirstOrDefault(); } } }
apache-2.0
C#
00d444cc9835ad70b88c69b8659cc0d1e1ca15b6
refactor AI
MasakiMuto/LifegameGame
LifegameGame/MinMaxPlayer.cs
LifegameGame/MinMaxPlayer.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; namespace LifegameGame { using PointScoreDictionary = Dictionary<Point, float>; public class MinMaxPlayer : Player { public MinMaxPlayer(GameBoard board, CellState side) : base(board, side) { ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; namespace LifegameGame { using PointScoreDictionary = Dictionary<Point, float>; public class MinMaxPlayer : Player { public MinMaxPlayer(GameBoard board, CellState side) : base(board, side) { ...
mit
C#
6cfa4403ccb8080b30b52913faf25d733f207103
Fix StyleCop violation
MultimediaSolutionsAg/ServiceBus
source/MMS.ServiceBus/Pipeline/Outgoing/OutgoingPipelineFactory.cs
source/MMS.ServiceBus/Pipeline/Outgoing/OutgoingPipelineFactory.cs
//------------------------------------------------------------------------------- // <copyright file="OutgoingPipelineFactory.cs" company="MMS AG"> // Copyright (c) MMS AG, 2008-2015 // </copyright> //------------------------------------------------------------------------------- namespace MMS.ServiceBus.Pipeline.Ou...
//------------------------------------------------------------------------------- // <copyright file="OutgoingPipelineFactory.cs" company="MMS AG"> // Copyright (c) MMS AG, 2008-2015 // </copyright> //------------------------------------------------------------------------------- namespace MMS.ServiceBus.Pipeline.Ou...
apache-2.0
C#
dd1fe3b996046a7423b5d813bbb5d59758901be4
fix messagepack serialization
jmenziessmith/TagCache.Redis
src/TagCache.Redis.MessagePack/MessagePackSerializationProvider.cs
src/TagCache.Redis.MessagePack/MessagePackSerializationProvider.cs
using System; using System.IO; using System.Text; using StackExchange.Redis; using TagCache.Redis.Interfaces; using MsgPack.Serialization; namespace TagCache.Redis.MessagePack { public class MessagePackSerializationProvider : ISerializationProvider { public T Deserialize<T>(RedisValue value...
using System.IO; using StackExchange.Redis; using TagCache.Redis.Interfaces; using MsgPack.Serialization; namespace TagCache.Redis.MessagePack { public class MessagePackSerializationProvider : ISerializationProvider { public T Deserialize<T>(RedisValue value) where T : class { ...
mit
C#
316159ed18bc94d2450d51f85aa232e3e19c44e5
Use placeholder expressions, {nr} doesn't work because of ConfigNode beign weird
LanguagePatches/LanguagePatches-Framework
LanguagePatches/Translation.cs
LanguagePatches/Translation.cs
/** * Language Patches Framework * Translates the game into different Languages * Copyright (c) 2016 Thomas P. * Licensed under the terms of the MIT License */ using System; using System.Text.RegularExpressions; namespace LanguagePatches { /// <summary> /// A class that represents a text translation ...
/** * Language Patches Framework * Translates the game into different Languages * Copyright (c) 2016 Thomas P. * Licensed under the terms of the MIT License */ using System; namespace LanguagePatches { /// <summary> /// A class that represents a text translation /// </summary> public class Tra...
mit
C#
40858c4cb7afec09e6a3b4a54b2d2e5c1f6e31f8
Adjust existing test coverage
peppy/osu,ppy/osu,peppy/osu,ppy/osu,ppy/osu,peppy/osu
osu.Game.Rulesets.Taiko.Tests/TestSceneTaikoHitObjectSamples.cs
osu.Game.Rulesets.Taiko.Tests/TestSceneTaikoHitObjectSamples.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.Reflection; using NUnit.Framework; using osu.Framework.IO.Stores; using osu.Game.Tests.Beatmaps; namespace osu.Game.Rulesets.Taiko.Tests ...
// 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.Reflection; using NUnit.Framework; using osu.Framework.IO.Stores; using osu.Game.Tests.Beatmaps; namespace osu.Game.Rulesets.Taiko.Tests ...
mit
C#
94a572d3e7aa30a51b745414b67520b6c693ca4f
Update Program.cs
monkey3310/appveyor-shields-badges
AppveyorShieldBadges/Program.cs
AppveyorShieldBadges/Program.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; namespace AppveyorShieldBadges { public class Program { public static void Main(string[] args) { ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; namespace AppveyorShieldBadges { public class Program { public static void Main(string[] args) { ...
mit
C#
48f052b1e3a53aa194fc9048c4d98762e11b5930
redefine LastModifiedDateTime accessor to return nullable DateTime (#228)
poornas/minio-dotnet,poornas/minio-dotnet,minio/minio-dotnet
Minio/DataModel/Item.cs
Minio/DataModel/Item.cs
/* * Minio .NET Library for Amazon S3 Compatible Cloud Storage, (C) 2017 Minio, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0...
/* * Minio .NET Library for Amazon S3 Compatible Cloud Storage, (C) 2017 Minio, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0...
apache-2.0
C#
89e276dc1d31ba6a539af7aacfde4527cb8df90c
Sort games in tags when serializing
zr40/steamgames
SteamGames/State.cs
SteamGames/State.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Windows.Forms; using ProtoBuf; namespace SteamGames { [ProtoContract] internal sealed class State { internal static readonly string BasePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Applica...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Windows.Forms; using ProtoBuf; namespace SteamGames { [ProtoContract] internal sealed class State { internal static readonly string BasePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Applica...
mit
C#