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
9c2d41bfa71743ecdacda0be2a80e33d03413d34
Add feature list
mattgwagner/alert-roster
alert-roster.web/Views/Home/About.cshtml
alert-roster.web/Views/Home/About.cshtml
@{ ViewBag.Title = "About"; } <h2>@ViewBag.Title</h2> <p>This is a small, stand-alone web application written to solve a simple need -- easily posting notices for a group to reference.</p> <p>It's meant to be straight-forward and mobile phone accessible.</p> <p>Possible future features might be E-mail or SMS n...
@{ ViewBag.Title = "About"; } <h2>@ViewBag.Title</h2> <p>This is a small, stand-alone web application written to solve a simple need -- easily posting notices for a group to reference.</p> <p>It's meant to be straight-forward, and mobile phone accessible.</p> <p>You can find the source code at <a h...
mit
C#
673b6d67334aeca7bba13f78d1e49e35a576d180
Fix login partial name
btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver
BTCPayServer/Views/Account/SecondaryLogin.cshtml
BTCPayServer/Views/Account/SecondaryLogin.cshtml
@model SecondaryLoginViewModel @{ ViewData["Title"] = "Two-factor/U2F authentication"; } <section> <div class="container"> @if (Model.LoginWith2FaViewModel != null && Model.LoginWithFido2ViewModel != null) { <div asp-validation-summary="ModelOnly" class="text-danger"></div> ...
@model SecondaryLoginViewModel @{ ViewData["Title"] = "Two-factor/U2F authentication"; } <section> <div class="container"> @if (Model.LoginWith2FaViewModel != null && Model.LoginWithFido2ViewModel != null) { <div asp-validation-summary="ModelOnly" class="text-danger"></div> ...
mit
C#
706bcc885837cd255d6fb3e0030ebab8c171245f
Update cache version
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/CacheVersion.cs
resharper/resharper-unity/src/CacheVersion.cs
using JetBrains.Annotations; using JetBrains.Application.PersistentMap; using JetBrains.Serialization; namespace JetBrains.ReSharper.Plugins.Unity { // Cache version [PolymorphicMarshaller(3)] public class CacheVersion { [UsedImplicitly] public static UnsafeReader.ReadDelegate<object> ReadDeleg...
using JetBrains.Annotations; using JetBrains.Application.PersistentMap; using JetBrains.Serialization; namespace JetBrains.ReSharper.Plugins.Unity { // Cache version [PolymorphicMarshaller(2)] public class CacheVersion { [UsedImplicitly] public static UnsafeReader.ReadDelegate<object> ReadDeleg...
apache-2.0
C#
128b9f19c06c88093a46ed597daba9a3ebaab646
Make configuration private
serbrech/Common.Serializer
src/Common.Serializer/Serialization.cs
src/Common.Serializer/Serialization.cs
using System; using Common.Serializer.Xml; namespace Common.Serializer { public class Serialization { private static readonly SerializationConfiguration Configuration; private static readonly Lazy<ISerializationContext> SerializationContext = new Lazy<ISerializationContext>(() => ...
using System; using Common.Serializer.Xml; namespace Common.Serializer { public class Serialization { public static SerializationConfiguration Configuration { get; internal set; } private static readonly Lazy<ISerializationContext> SerializationContext = new Lazy<ISerializationCon...
mit
C#
3462e8b9fbc19b04df357b18958952f7fde4d417
Test for missing header property.
ar3cka/Journalist
test/Journalist.EventStore.UnitTests/Events/JournaledEventTests.cs
test/Journalist.EventStore.UnitTests/Events/JournaledEventTests.cs
using System.IO; using Journalist.EventStore.Events; using Journalist.EventStore.UnitTests.Infrastructure.TestData; using Xunit; namespace Journalist.EventStore.UnitTests.Events { public class JournaledEventTests { [Theory] [AutoMoqData] public void GetEventPayload_ReturnsStreamWithPay...
using System.IO; using Journalist.EventStore.Events; using Journalist.EventStore.UnitTests.Infrastructure.TestData; using Xunit; namespace Journalist.EventStore.UnitTests.Events { public class JournaledEventTests { [Theory] [AutoMoqData] public void GetEventPayload_ReturnsStreamWithPay...
apache-2.0
C#
efb59091ed0aa5f9a305e74149767e795a7e5337
Set HasFile when opening an image from the command line, so we won't use Save As when Save is clicked.
PintaProject/Pinta,Mailaender/Pinta,PintaProject/Pinta,jakeclawson/Pinta,Fenex/Pinta,Mailaender/Pinta,jakeclawson/Pinta,Fenex/Pinta,PintaProject/Pinta
Pinta/Main.cs
Pinta/Main.cs
// // Main.cs // // Author: // Jonathan Pobst <monkey@jpobst.com> // // Copyright (c) 2010 Jonathan Pobst // // 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,...
// // Main.cs // // Author: // Jonathan Pobst <monkey@jpobst.com> // // Copyright (c) 2010 Jonathan Pobst // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction,...
mit
C#
9c5695401c2cf6e7b751f0c108793f4435d2cf55
Update ChangeHtmlLinkTarget.cs
aspose-cells/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,aspose-cells/Aspose.Cells-for-....
Examples/CSharp/Articles/ChangeHtmlLinkTarget.cs
Examples/CSharp/Articles/ChangeHtmlLinkTarget.cs
using System; using Aspose.Cells; namespace CSharp.Articles { class ChangeHtmlLinkTarget { public static void Main(string[] args) { //ExStart:1 // The path to the documents directory. string dataDir = Aspose.Cells.Examples.Utils.GetDataDir(System.Reflection....
using System; using Aspose.Cells; namespace CSharp.Articles { class ChangeHtmlLinkTarget { public static void Main(string[] args) { // The path to the documents directory. string dataDir = Aspose.Cells.Examples.Utils.GetDataDir(System.Reflection.MethodBase.GetCurrentMet...
mit
C#
6152ca9c6d5d40a0dca4b0f450b8659805457c75
Fix for #2547 occasional null HttpContext on Mono (#2556)
shibayan/kudu,projectkudu/kudu,projectkudu/kudu,shibayan/kudu,EricSten-MSFT/kudu,shibayan/kudu,projectkudu/kudu,shibayan/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,projectkudu/kudu,shibayan/kudu,EricSten-MSFT/kudu,projectkudu/kudu
Kudu.Services/EnsureRequestIdHandlerAttribute.cs
Kudu.Services/EnsureRequestIdHandlerAttribute.cs
using System; using System.Collections.Generic; using System.Web; using System.Web.Http.Filters; namespace Kudu.Services { [AttributeUsage(AttributeTargets.Class)] public sealed class EnsureRequestIdHandlerAttribute : ActionFilterAttribute { public override void OnActionExecuted(HttpActionExecuted...
using System; using System.Collections.Generic; using System.Web; using System.Web.Http.Filters; namespace Kudu.Services { [AttributeUsage(AttributeTargets.Class)] public sealed class EnsureRequestIdHandlerAttribute : ActionFilterAttribute { public override void OnActionExecuted(HttpActionExecuted...
apache-2.0
C#
bfe1184d2f3fad93dec65fe82534a083bfbb6a19
hide ios keyboard after add
harouny/XamarinTodoList
TodoList/TodoList.iOS/ViewController.cs
TodoList/TodoList.iOS/ViewController.cs
using System; using System.IO; using System.Threading.Tasks; using TodoList.Models; using UIKit; namespace TodoList.iOS { public partial class ViewController : UIViewController { private ITodosService _todosService; public ViewController (IntPtr handle) : base (handle) { UITableView.Appearance...
using System; using System.IO; using System.Threading.Tasks; using TodoList.Models; using UIKit; namespace TodoList.iOS { public partial class ViewController : UIViewController { private ITodosService _todosService; public ViewController (IntPtr handle) : base (handle) { UITableView.Appearance...
apache-2.0
C#
4583683d8b2b7c539d5ebf007387d79a379030f5
Modify error handling for SendInput
hukatama024e/MacroRecoderCsScript,hukatama024e/UserInputMacro
src/UserInputMacro/SendInputWrapper.cs
src/UserInputMacro/SendInputWrapper.cs
using System.Runtime.InteropServices; using System.ComponentModel; using System.Windows.Input; namespace UserInputMacro { public static class SendInputWrapper { private static readonly int FAIL_SENDINPUT = 0; [ DllImport( "user32.dll", SetLastError = true ) ] private static extern uint SendInput( uint inputN...
using System.Runtime.InteropServices; using System.ComponentModel; using System.Windows.Input; namespace UserInputMacro { public static class SendInputWrapper { private static readonly int WIN32_NOERROR = 0x00000000; [ DllImport( "user32.dll", SetLastError = true ) ] private static extern uint SendInput( uin...
mit
C#
7fac30425055eab5d2be23c23a451c3641345098
Fix stats link so that it doesn't have the id in it.
chrisofspades/PickemApp,chrisofspades/PickemApp,chrisofspades/PickemApp
PickemApp/Views/Home/NavLogin.cshtml
PickemApp/Views/Home/NavLogin.cshtml
@model PickemApp.ViewModels.HomeNavLogin @{ Layout = null; } <ul class="nav navbar-nav navbar-right"> @if (Request.IsAuthenticated) { <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">@Model.Curren...
@model PickemApp.ViewModels.HomeNavLogin @{ Layout = null; } <ul class="nav navbar-nav navbar-right"> @if (Request.IsAuthenticated) { <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">@Model.Curren...
isc
C#
8edad8a648fa8aaa4184b31c54aa6a592d0f60a0
Use static form style
mgmccarthy/allReady,jonatwabash/allReady,jonatwabash/allReady,chinwobble/allReady,BillWagner/allReady,mipre100/allReady,mikesigs/allReady,arst/allReady,chinwobble/allReady,bcbeatty/allReady,joelhulen/allReady,pranap/allReady,JowenMei/allReady,HTBox/allReady,JowenMei/allReady,gitChuckD/allReady,forestcheng/allReady,gitC...
AllReadyApp/Web-App/AllReady/Areas/Admin/Views/Site/EditUser.cshtml
AllReadyApp/Web-App/AllReady/Areas/Admin/Views/Site/EditUser.cshtml
@using AllReady.Areas.Admin.ViewModels @model EditUserViewModel @{ ViewData["Title"] = $"Edit User - {Model.UserName}"; } <h2>@ViewData["Title"]</h2> @using (Html.BeginForm()) { @Html.AntiForgeryToken() <div class="form-horizontal"> <hr /> <input asp-for="UserId" type="hidden" /> ...
@using AllReady.Areas.Admin.ViewModels @model EditUserViewModel @{ ViewData["Title"] = $"Edit User - {Model.UserName}"; } <h2>@ViewData["Title"]</h2> @using (Html.BeginForm()) { @Html.AntiForgeryToken() <div class="form-horizontal"> <hr /> <input asp-for="UserId" type="hidden" /> ...
mit
C#
0cf4c8a794d1e79ef389c6db684efc369f8e1c76
fix exception file path
bordoley/RxApp
RxApp.Example.Android/RxAppExampleApplication.cs
RxApp.Example.Android/RxAppExampleApplication.cs
using System; using System.Collections.Generic; using System.IO; using System.Reactive.Disposables; using System.Reactive.Linq; using RxApp; using Android.App; using Android.Runtime; namespace RxApp.Example { [Application] public sealed class RxAppExampleApplication : RxApplication { private reado...
using System; using System.Collections.Generic; using System.IO; using System.Reactive.Disposables; using System.Reactive.Linq; using RxApp; using Android.App; using Android.Runtime; namespace RxApp.Example { [Application] public sealed class RxAppExampleApplication : RxApplication { private reado...
apache-2.0
C#
4bea00d10e05fcd5f452449b4c2d4b953a009429
Fix for Twitter video
mika-f/Orion,OrionDevelop/Orion
Source/Orion.Shared/Absorb/Objects/Attachment.cs
Source/Orion.Shared/Absorb/Objects/Attachment.cs
using System.Linq; using Orion.Service.Mastodon.Enum; using Orion.Shared.Absorb.Enums; using CroudiaAttachment = Orion.Service.Croudia.Models.Media; using MastodonAttachment = Orion.Service.Mastodon.Models.Attachment; using TwitterAttachment = CoreTweet.MediaEntity; namespace Orion.Shared.Absorb.Objects { publi...
using Orion.Service.Mastodon.Enum; using Orion.Shared.Absorb.Enums; using CroudiaAttachment = Orion.Service.Croudia.Models.Media; using MastodonAttachment = Orion.Service.Mastodon.Models.Attachment; using TwitterAttachment = CoreTweet.MediaEntity; namespace Orion.Shared.Absorb.Objects { public class Attachment ...
mit
C#
447fd2f954e8c220e7b700e808263862e76a9ca7
Update DotMinecraft.cs
111WARLOCK111/Craft.Net,Geptun/Chuckle.net,icedream/Craft.Net,SirCmpwn/Craft.Net,samuto/Craft.Net,darkcrash/Craft.Net
source/Craft.Net.Client/DotMinecraft.cs
source/Craft.Net.Client/DotMinecraft.cs
using System; using Craft.Net.Common; using System.IO; namespace Craft.Net.Client { public static class DotMinecraft { public static string GetDotMinecraftPath() { if (RuntimeInfo.IsLinux) return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Person...
using System; using Craft.Net.Common; using System.IO; namespace Craft.Net.Client { public static class DotMinecraft { public static string GetDotMinecraftPath() { if (RuntimeInfo.IsLinux) return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Person...
mit
C#
3a65077520524ce48b964287033f969730cf9935
Update Box.cs
dimmpixeye/Unity3dTools
Runtime/LibProcessors/Box.cs
Runtime/LibProcessors/Box.cs
// Project : ACTORS // Contacts : Pixeye - ask@pixeye.games using System; using System.Collections.Generic; using UnityEngine; using Object = UnityEngine.Object; namespace Pixeye.Framework { /// <summary> /// <para>Caches / return assets that Developer takes from the Resources folder. /// Box cleans cache when ...
// Project : ACTORS // Contacts : Pixeye - ask@pixeye.games using System; using System.Collections.Generic; using UnityEngine; using Object = UnityEngine.Object; namespace Pixeye.Framework { /// <summary> /// <para>Caches / return assets that Developer takes from the Resources folder. /// Box cleans cache when ...
mit
C#
f15866ecaca47e44a55f20ba26d705110c98ef33
Add test for Range.Select
adamreeve/semver.net
SemVer.Tests/SimpleRanges.cs
SemVer.Tests/SimpleRanges.cs
using Xunit; namespace SemVer.Tests { public class SimpleRanges { [Fact] public void Test01() { var range = new Range(">=1.2.7 <1.3.0"); Assert.True(range.Match(new Version("1.2.7"))); Assert.True(range.Match(new Version("1.2.8"))); Asser...
using Xunit; namespace SemVer.Tests { public class SimpleRanges { [Fact] public void Test01() { var range = new Range(">=1.2.7 <1.3.0"); Assert.True(range.Match(new Version("1.2.7"))); Assert.True(range.Match(new Version("1.2.8"))); Asser...
mit
C#
e1c8ed9f496e08e2c3980fdaee5f264822ec7540
Add new members to Const class
lou1306/CIV,lou1306/CIV
CIV.Ccs/Const.cs
CIV.Ccs/Const.cs
using System; namespace CIV.Ccs { public static class Const { public static readonly string tau = GetLiteral(CcsLexer.TAU); public static readonly string nil = GetLiteral(CcsLexer.NIL); public static readonly string par = GetLiteral(CcsLexer.PAR); public static readonly string prefix = GetL...
namespace CIV.Ccs { public static class Const { public const string tau = "tau"; } }
mit
C#
4e777ffdff4e53d43c1d6c9b12fcf232a7861626
Fix weird crashes
arcaneex/hash,Rohansi/RohBot,arcaneex/hash,Rohansi/RohBot,Rohansi/RohBot,arcaneex/hash,Rohansi/RohBot,arcaneex/hash
SteamMobile/TaskScheduler.cs
SteamMobile/TaskScheduler.cs
using System; using System.Collections.Generic; using System.Diagnostics; namespace SteamMobile { public class TaskScheduler { private class Task { public double Delay; public double Accumulator; public Action Callback; public Task(double delay,...
using System; using System.Collections.Generic; using System.Diagnostics; namespace SteamMobile { public class TaskScheduler { private class Task { public double Delay; public double Accumulator; public Action Callback; public Task(double delay,...
mit
C#
a32f5d44e279f617ad2933b28f26c0d0250882d6
Improve clarity of xmldoc
peppy/osu,smoogipoo/osu,peppy/osu-new,ppy/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,NeoAdonis/osu,ppy/osu,smoogipooo/osu,peppy/osu,smoogipoo/osu,peppy/osu
osu.Game/Database/IRealmFactory.cs
osu.Game/Database/IRealmFactory.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 Realms; namespace osu.Game.Database { public interface IRealmFactory { /// <summary> /// The main realm context, bound to the update thread...
// 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 Realms; namespace osu.Game.Database { public interface IRealmFactory { /// <summary> /// The main realm context, bound to the update thread...
mit
C#
3747b66011cd0c47a4c122f27ccfbb0c310d696d
fix the assembly version file
blackducksoftware/hub-nuget
BuildBomTask/Properties/AssemblyInfo.cs
BuildBomTask/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("Bu...
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("Bd...
apache-2.0
C#
95732ba67f49da9c34914245ccfd1516bec6916d
Change in Version Numbering
typeset/typeset
Typeset.Common/GlobalAssemblyInfo.cs
Typeset.Common/GlobalAssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Typeset")] [assembly: AssemblyCopyright("Copyright © Bates Westmoreland 2012")] [assembly: AssemblyTrademark("")] [as...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Typeset")] [assembly: AssemblyCopyright("Copyright © Bates Westmoreland 2012")] [assembly: AssemblyTrademark("")] [as...
mit
C#
1c7613c98225772affe228f60b49bae29807a873
Write command exception message to the console
appharbor/appharbor-cli
src/AppHarbor/CommandDispatcher.cs
src/AppHarbor/CommandDispatcher.cs
using System; using System.Linq; using System.Collections.Generic; namespace AppHarbor { public class CommandDispatcher { private readonly IEnumerable<ICommand> _commands; public CommandDispatcher(IEnumerable<ICommand> commands) { _commands = commands; } public void Dispatch(string[] args) { var...
using System; using System.Linq; using System.Collections.Generic; namespace AppHarbor { public class CommandDispatcher { private readonly IEnumerable<ICommand> _commands; public CommandDispatcher(IEnumerable<ICommand> commands) { _commands = commands; } public void Dispatch(string[] args) { var...
mit
C#
9368431a76cbe3a362193c4ad789a1c8b5a21a41
Fix pattern matching
Krusen/Additio.Sitecore.DependencyConfigReader
src/Additio.Configuration/DependencyLoader.cs
src/Additio.Configuration/DependencyLoader.cs
using System; using System.Collections.Generic; using System.Linq; using System.Xml.Linq; namespace Additio.Configuration { public interface IDependencyLoader { IEnumerable<string> GetDependencyPatterns(string configFile); } public class DependencyLoader : IDependencyLoader { prot...
using System; using System.Collections.Generic; using System.Linq; using System.Xml.Linq; namespace Additio.Configuration { public interface IDependencyLoader { IEnumerable<string> GetDependencyPatterns(string configFile); } public class DependencyLoader : IDependencyLoader { prot...
unlicense
C#
473787d42ac0e488560b0102715972bf4802aa31
Update IPathConverter.cs
wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D
src/Core2D/Model/Interfaces/IPathConverter.cs
src/Core2D/Model/Interfaces/IPathConverter.cs
using System.Collections.Generic; using Core2D.Renderer; using Core2D.Shapes; namespace Core2D.Interfaces { /// <summary> /// Defines path converter contract. /// </summary> public interface IPathConverter { /// <summary> /// Convert shapes to path shape. /// </summary> ...
using System.Collections.Generic; using Core2D.Renderer; using Core2D.Shapes; namespace Core2D.Interfaces { /// <summary> /// Defines path converter contract. /// </summary> public interface IPathConverter { /// <summary> /// Convert shape to path shape. /// </summary> ...
mit
C#
97a6d2d178161846b1a1afd6598d3157f7c1d678
Simplify NUnitLite
nivanov1984/nunit,OmicronPersei/nunit,Green-Bug/nunit,Green-Bug/nunit,jadarnel27/nunit,agray/nunit,nivanov1984/nunit,jnm2/nunit,ChrisMaddock/nunit,mikkelbu/nunit,ggeurts/nunit,jadarnel27/nunit,danielmarbach/nunit,JustinRChou/nunit,mjedrzejek/nunit,agray/nunit,nunit/nunit,JustinRChou/nunit,Suremaker/nunit,appel1/nunit,g...
src/NUnitFramework/nunitlite.tests/Program.cs
src/NUnitFramework/nunitlite.tests/Program.cs
using System; using System.Collections.Generic; using System.Reflection; using System.Text; using NUnit.Common; namespace NUnitLite.Tests { class Program { public static int Main(string[] args) { #if NETCOREAPP1_0 || PORTABLE return new AutoRun(Assembly.GetEntryAssembly()).Execute(...
using System; using System.Collections.Generic; using System.Reflection; using System.Text; using NUnit.Common; namespace NUnitLite.Tests { class Program { public static int Main(string[] args) { #if NETCOREAPP1_0 return new AutoRun(Assembly.GetEntryAssembly()).Execute(args, new Co...
mit
C#
d63deb3273303eeac0a5681c2e83734ae1acadd4
Add MaxLength property to text boxes
kswoll/WootzJs,x335/WootzJs,kswoll/WootzJs,x335/WootzJs,x335/WootzJs,kswoll/WootzJs
WootzJs.Mvc/Views/TextBox.cs
WootzJs.Mvc/Views/TextBox.cs
using System; using System.Runtime.WootzJs; using WootzJs.Web; namespace WootzJs.Mvc.Views { public class TextBox : Control { public event Action Changed; public new InputElement Node { get { return base.Node.As<InputElement>(); } } public TextBoxType Type...
using System; using System.Runtime.WootzJs; using WootzJs.Web; namespace WootzJs.Mvc.Views { public class TextBox : Control { public event Action Changed; public new InputElement Node { get { return base.Node.As<InputElement>(); } } public TextBoxType Type...
mit
C#
9b1352085aa64c4c5df8e3445d77f874d7f07a9b
Fix install modules command (#19)
Sitecore/Sitecore-Instance-Manager,Brad-Christie/Sitecore-Instance-Manager,sergeyshushlyapin/Sitecore-Instance-Manager
src/SIM.Core/Commands/InstallModuleCommand.cs
src/SIM.Core/Commands/InstallModuleCommand.cs
namespace SIM.Core.Commands { using System.IO; using System.Linq; using Sitecore.Diagnostics.Base; using JetBrains.Annotations; using SIM.Core.Common; using SIM.Instances; using SIM.IO; using SIM.Pipelines; using SIM.Pipelines.InstallModules; using SIM.Products; public class InstallModuleCommand ...
namespace SIM.Core.Commands { using System.IO; using System.Linq; using Sitecore.Diagnostics.Base; using JetBrains.Annotations; using SIM.Core.Common; using SIM.Instances; using SIM.IO; using SIM.Pipelines; using SIM.Pipelines.InstallModules; using SIM.Products; public class InstallModuleCommand ...
mit
C#
62d721a96b9a77a0b89d9af37f8871913d5b6abb
switch to thread sleep
jefking/King.Service.ServiceBus
King.Service.ServiceBus/Timing/Sleep.cs
King.Service.ServiceBus/Timing/Sleep.cs
namespace King.Service.ServiceBus.Timing { using System; using System.Threading; /// <summary> /// Sleep /// </summary> public class Sleep : ISleep { #region Methods /// <summary> /// Until /// </summary> /// <param name="time">Time</param> p...
namespace King.Service.ServiceBus.Timing { using System; using System.Threading; /// <summary> /// Sleep /// </summary> public class Sleep : ISleep { #region Methods /// <summary> /// Until /// </summary> /// <param name="time">Time</param> p...
mit
C#
64cf07049c4e07927faeafccf6f50a96a8d4935b
Make ChangeDate and RemoveDate fields of BaseEntity nullable
denismaster/dcs,denismaster/dcs,denismaster/dcs,denismaster/dcs
src/Diploms.Core/Entities/BaseEntity.cs
src/Diploms.Core/Entities/BaseEntity.cs
using System; namespace Diploms.Core { public abstract class BaseEntity : IEntity { public int Id { get; set; } public DateTime CreateDate { get; set; } public DateTime? ChangeDate { get; set; } public DateTime? RemoveDate { get; set; } } }
using System; namespace Diploms.Core { public abstract class BaseEntity : IEntity { public int Id { get; set; } public DateTime CreateDate { get; set; } public DateTime ChangeDate { get; set; } public DateTime RemoveDate { get; set; } } }
mit
C#
cd01ab192e7dc80cfb9b1b1b0785d1a4349e1e8c
Hide window when minimizing
szarvas/fanduino,szarvas/fanduino
FanduinoWindow/Form1.cs
FanduinoWindow/Form1.cs
/* Copyright 2016 Attila Szarvas Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software...
/* Copyright 2016 Attila Szarvas Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software...
apache-2.0
C#
ed6a29a9c1718bd47bd4f9fab43bd35448f7a6b6
Make TaroEnvironment.EventDispatcher public so we can set a different dispatcher
mouhong/Taro
src/Taro/Config/TaroEnvironment.cs
src/Taro/Config/TaroEnvironment.cs
using System; using System.Collections.Generic; using System.Reflection; using Taro.Dispatching; namespace Taro.Config { public class TaroEnvironment { public static readonly TaroEnvironment Instance = new TaroEnvironment(); public IEventDispatcher EventDispatcher { get; set; } ...
using System; using System.Collections.Generic; using System.Reflection; using Taro.Dispatching; namespace Taro.Config { public class TaroEnvironment { public static readonly TaroEnvironment Instance = new TaroEnvironment(); public IEventDispatcher EventDispatcher { get; private se...
apache-2.0
C#
5debe5c4cca0511da318024f93c14fb605f5f36a
add extractCsvRow()
yasokada/unity-150825-TELChecker
Assets/CheckButtonControl.cs
Assets/CheckButtonControl.cs
using UnityEngine; using System.Collections; using UnityEngine.UI; using System.Linq; // for Where using System.Collections.Generic; using System; // for StringSplitOptions.RemoveEmptyEntries public class CheckButtonControl : MonoBehaviour { public const string kTitle = "<title>"; public Text resText; // to show c...
using UnityEngine; using System.Collections; using UnityEngine.UI; using System.Linq; // for Where using System.Collections.Generic; public class CheckButtonControl : MonoBehaviour { public const string kTitle = "<title>"; public Text resText; // to show check result public InputField IFtelno; // for input teleph...
mit
C#
e84601a7a360b8b5cc5f7f93d33937aa0cb065c5
fix indents
chraft/c-raft
Chraft/Client.Persistence.cs
Chraft/Client.Persistence.cs
using Chraft.Properties; using System.IO; using System.Xml.Serialization; using Chraft.Persistence; namespace Chraft { public partial class Client { private static XmlSerializer Xml = new XmlSerializer(typeof(ClientSurrogate)); internal string Folder { get { return Settings.Default.PlayersFold...
using Chraft.Properties; using System.IO; using System.Xml.Serialization; using Chraft.Persistence; namespace Chraft { public partial class Client { private static XmlSerializer Xml = new XmlSerializer(typeof(ClientSurrogate)); internal string Folder { get { return Settings.Default.PlayersFolder; } } in...
agpl-3.0
C#
bcb65e358494e1e29b2db472a25eb77664186af3
Add docs region for User class
GoogleCloudPlatform/getting-started-dotnet,GoogleCloudPlatform/getting-started-dotnet,GoogleCloudPlatform/getting-started-dotnet
aspnet/4-auth/Models/User.cs
aspnet/4-auth/Models/User.cs
// Copyright(c) 2016 Google 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 // // Unless required by applicable law or agree...
// Copyright(c) 2016 Google 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 // // Unless required by applicable law or agree...
apache-2.0
C#
13c1a9cdb8e6939a9222beda4dfbb7e847450d46
Fix broken licence header
ppy/osu-framework,smoogipooo/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,peppy/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework
osu.Framework.Tests/IO/FontStoreTest.cs
osu.Framework.Tests/IO/FontStoreTest.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using NUnit.Framework; using osu.Framework.Graphics; using osu.Framework.IO.Stores; namespace osu.Framework.Tests.IO { [TestFixture] public class FontStoreTest ...
// // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // // See the LICENCE file in the repository root for full licence text. using NUnit.Framework; using osu.Framework.Graphics; using osu.Framework.IO.Stores; namespace osu.Framework.Tests.IO { [TestFixture] public class FontStore...
mit
C#
80e44a34603c8eefeb991f4920e29aa0440acbce
Update server test
synel/syndll2
Syndll2.Tests/BasicTests/ServerTests.cs
Syndll2.Tests/BasicTests/ServerTests.cs
using System; using System.Threading; using System.Threading.Tasks; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Syndll2.Tests.BasicTests { [TestClass] public class ServerTests { [TestMethod] //[Ignore] // run this manually, when appropriate public async Task Can_R...
using System; using System.Threading; using System.Threading.Tasks; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Syndll2.Tests.BasicTests { [TestClass] public class ServerTests { [TestMethod] [Ignore] // run this manually, after enabling polling mode and recording some dat...
mit
C#
546320fa79f395c936d3a6f3c3af7260a4ad5c02
Rename `Option` to `Opt` in key combination output
peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework
osu.Framework/Platform/MacOS/MacOSReadableKeyCombinationProvider.cs
osu.Framework/Platform/MacOS/MacOSReadableKeyCombinationProvider.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Input.Bindings; using osu.Framework.Platform.SDL2; using SDL2; namespace osu.Framework.Platform.MacOS { public class MacOSReadableKeyCombinationP...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Input.Bindings; using osu.Framework.Platform.SDL2; using SDL2; namespace osu.Framework.Platform.MacOS { public class MacOSReadableKeyCombinationP...
mit
C#
d1fb31ca31f61f2c60c19b8f36b423a3d38a5f22
increment version
pudds/cfl-api.net,pudds/cfl-api.net
src/v1/Core/CurrentVersion.cs
src/v1/Core/CurrentVersion.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace mdryden.cflapi.v1 { public static class CurrentVersion { public const string Version = "1.24.0"; } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace mdryden.cflapi.v1 { public static class CurrentVersion { public const string Version = "1.9.0"; } }
mit
C#
330f8bbe7020f182d6979c50f51666e08b71bde9
Add module12
aloisdg/edx-csharp
edX/ModuleC/MainWindow.xaml.cs
edX/ModuleC/MainWindow.xaml.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; 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...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; 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...
mit
C#
970fdf493ed958652d4e333fa525bd3a7afa520b
Update description and version information
FelixINX/SpotifyStatusApplet,LPardue/SpotifyStatusApplet
SpotifyStatusApplet/Properties/AssemblyInfo.cs
SpotifyStatusApplet/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("Sp...
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("Sp...
apache-2.0
C#
1110e1885e1c76a354aa0b542936063c02b7fcbd
Expand p tag on about screen.
jpfultonzm/trainingsandbox,jpfultonzm/trainingsandbox,jpfultonzm/trainingsandbox
ZirMed.TrainingSandbox/Views/Home/About.cshtml
ZirMed.TrainingSandbox/Views/Home/About.cshtml
@{ ViewBag.Title = "About"; } <h2>@ViewBag.Title.</h2> <h3>@ViewBag.Message</h3> <p>Use this area to provide additional information. Here is more groovy info.</p>
@{ ViewBag.Title = "About"; } <h2>@ViewBag.Title.</h2> <h3>@ViewBag.Message</h3> <p>Use this area to provide additional information.</p>
mit
C#
f340442fe5841346b9a73a60dd38ac71a4859885
Bump latest potential breaking change to 2.0.0
devlead/cake,gep13/cake,devlead/cake,cake-build/cake,patriksvensson/cake,gep13/cake,patriksvensson/cake,cake-build/cake
src/Cake.Core/Constants.cs
src/Cake.Core/Constants.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; namespace Cake.Core { internal static class Constants { public const ConsoleColor De...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; namespace Cake.Core { internal static class Constants { public const ConsoleColor De...
mit
C#
04d91dcd4377386561b820e52daf1a426578cde0
Generalize Not on item type.
plioi/parsley
src/Parsley/Grammar.Not.cs
src/Parsley/Grammar.Not.cs
using System.Diagnostics.CodeAnalysis; namespace Parsley; partial class Grammar { /// <summary> /// The parser Not(p) succeeds when parser p fails, and fails /// when parser p succeeds. Not(p) never consumes input. /// </summary> public static Parser<TItem, Void> Not<TItem, TValue>(Parser<TItem, T...
using System.Diagnostics.CodeAnalysis; namespace Parsley; partial class Grammar { /// <summary> /// The parser Not(p) succeeds when parser p fails, and fails /// when parser p succeeds. Not(p) never consumes input. /// </summary> public static Parser<char, Void> Not<TValue>(Parser<char, TValue> pa...
mit
C#
7af2048de4e0a0899eaa41f7cb78f05f44a12ff6
hide messages in VS from internal analyzer
bkoelman/CSharpGuidelinesAnalyzer
src/CSharpGuidelinesAnalyzer/CSharpGuidelinesAnalyzer/Rules/OperationIsStatementAnalyzer.cs
src/CSharpGuidelinesAnalyzer/CSharpGuidelinesAnalyzer/Rules/OperationIsStatementAnalyzer.cs
#if DEBUG using System; using System.Collections.Immutable; using CSharpGuidelinesAnalyzer.Extensions; using JetBrains.Annotations; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Text; namespace CSharpGuidelinesAnalyzer.Rules { [DiagnosticAnalyzer(LanguageName...
#if DEBUG using System; using System.Collections.Immutable; using CSharpGuidelinesAnalyzer.Extensions; using JetBrains.Annotations; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Text; namespace CSharpGuidelinesAnalyzer.Rules { [DiagnosticAnalyzer(LanguageName...
apache-2.0
C#
9a3902ef8983064d3eba68c671b25c6160a0a593
remove useless
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/CSharp/Daemon/Stages/BurstCodeAnalysis/Analyzers/Rider/BurstCodeInsightProvider.cs
resharper/resharper-unity/src/CSharp/Daemon/Stages/BurstCodeAnalysis/Analyzers/Rider/BurstCodeInsightProvider.cs
using System.Collections.Generic; using JetBrains.Application.UI.Controls.GotoByName; using JetBrains.Collections.Viewable; using JetBrains.ProjectModel; using JetBrains.ReSharper.Host.Features.CodeInsights.Providers; using JetBrains.ReSharper.Plugins.Unity.ProjectModel; using JetBrains.ReSharper.Plugins.Unity.Rider.Co...
using System.Collections.Generic; using JetBrains.Application.UI.Controls.GotoByName; using JetBrains.Collections.Viewable; using JetBrains.ProjectModel; using JetBrains.ReSharper.Host.Features.CodeInsights.Providers; using JetBrains.ReSharper.Plugins.Unity.ProjectModel; using JetBrains.ReSharper.Plugins.Unity.Rider.Co...
apache-2.0
C#
c9f0890b1352a853c924a7dcedda63490a41c0f4
Return generic definitions last for ContravariantFilter
Miruken-DotNet/Miruken
Source/Miruken.Castle/ContravariantFilter.cs
Source/Miruken.Castle/ContravariantFilter.cs
namespace Miruken.Castle { using System; using System.Linq; using System.Reflection; using global::Castle.MicroKernel; public class ContravariantFilter : IHandlersFilter { public bool HasOpinionAbout(Type service) { if (!service.IsGenericType) return false; ...
namespace Miruken.Castle { using System; using System.Linq; using System.Reflection; using global::Castle.MicroKernel; public class ContravariantFilter : IHandlersFilter { public bool HasOpinionAbout(Type service) { if (!service.IsGenericType) return false; ...
mit
C#
f9c2a9bc0c58c1a297035dc2960cbf6ac07456f6
Use delegate type name to distinguish Action<> from Func<>
sergeyshushlyapin/AutoFixture,dcastro/AutoFixture,AutoFixture/AutoFixture,sean-gilliam/AutoFixture,sergeyshushlyapin/AutoFixture,sbrockway/AutoFixture,dcastro/AutoFixture,sbrockway/AutoFixture,adamchester/AutoFixture,zvirja/AutoFixture,Pvlerick/AutoFixture,adamchester/AutoFixture
Src/AutoFixture/LambdaExpressionGenerator.cs
Src/AutoFixture/LambdaExpressionGenerator.cs
namespace Ploeh.AutoFixture { using System; using System.Linq; using System.Linq.Expressions; using Kernel; /// <summary> /// Creates new lambda expressions represented by the <see cref="Expression{TDelegate}"/> type. /// </summary> /// <remarks> /// Specimens are typically either ...
namespace Ploeh.AutoFixture { using System; using System.Linq; using System.Linq.Expressions; using Kernel; /// <summary> /// Creates new lambda expressions represented by the <see cref="Expression{TDelegate}"/> type. /// </summary> /// <remarks> /// Specimens are typically either ...
mit
C#
53466b37c216e0d91d57ef544d96604b6dd18fdd
Add filter property to most watched shows request.
henrikfroehling/TraktApiSharp
Source/Lib/TraktApiSharp/Requests/WithoutOAuth/Shows/Common/TraktShowsMostWatchedRequest.cs
Source/Lib/TraktApiSharp/Requests/WithoutOAuth/Shows/Common/TraktShowsMostWatchedRequest.cs
namespace TraktApiSharp.Requests.WithoutOAuth.Shows.Common { using Base; using Base.Get; using Enums; using Objects.Basic; using Objects.Get.Shows.Common; using System.Collections.Generic; internal class TraktShowsMostWatchedRequest : TraktGetRequest<TraktPaginationListResult<TraktMostWatc...
namespace TraktApiSharp.Requests.WithoutOAuth.Shows.Common { using Base.Get; using Enums; using Objects.Basic; using Objects.Get.Shows.Common; using System.Collections.Generic; internal class TraktShowsMostWatchedRequest : TraktGetRequest<TraktPaginationListResult<TraktMostWatchedShow>, TraktM...
mit
C#
17bf8530df99d10fc61fc52f3da33267f962544c
fix divide by zero
depp/morning-ritual
MorningRitual/Assets/Scripts/CameraMovement.cs
MorningRitual/Assets/Scripts/CameraMovement.cs
using UnityEngine; using System.Collections; public class CameraMovement : MonoBehaviour { public delegate void Action(); bool ismoving = false; private Vector3 nextCameraPosition; private Vector3 cameraStart; public float speed = 30.0f; public float smoothing = 1.0f; private float startTime; private float...
using UnityEngine; using System.Collections; public class CameraMovement : MonoBehaviour { public delegate void Action(); bool ismoving = false; private Vector3 nextCameraPosition; private Vector3 cameraStart; public float speed = 30.0f; public float smoothing = 1.0f; private float startTime; private float...
mit
C#
9d5b6947c0ee9ade786889a00f4e7ee50264a42b
Change the name of MessageWithLayout property
harouny/NLog.Extensions.AzureTableStorage
NLog.Extensions.AzureTableStorage/LogEntity.cs
NLog.Extensions.AzureTableStorage/LogEntity.cs
using System.Globalization; using System.Linq; using Microsoft.WindowsAzure.Storage.Table; namespace NLog.Extensions.AzureTableStorage { public class LogEntity : TableEntity { public LogEntity(LogEventInfo logEvent, string layoutMessage) { LoggerName = logEvent.LoggerName; ...
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.WindowsAzure.Storage.Table; namespace NLog.Extensions.AzureTableStorage { public class LogEntity : TableEntity { public LogEntity(LogEventInfo...
mit
C#
e6ec730aef7076d3527432143a3e7eb3f2e452c4
Remove ReferenceTableReferenceTable test in regular cache
villermen/runescape-cache-tools,villermen/runescape-cache-tools
RuneScapeCacheToolsTests/RuneTek5CacheTests.cs
RuneScapeCacheToolsTests/RuneTek5CacheTests.cs
using RuneScapeCacheToolsTests.Fixtures; using Villermen.RuneScapeCacheTools.Cache; using Villermen.RuneScapeCacheTools.Cache.RuneTek5; using Xunit; using Xunit.Abstractions; namespace RuneScapeCacheToolsTests { [Collection("TestCache")] public class RuneTek5CacheTests { private ITestOutputHelper ...
using RuneScapeCacheToolsTests.Fixtures; using Villermen.RuneScapeCacheTools.Cache; using Villermen.RuneScapeCacheTools.Cache.RuneTek5; using Xunit; using Xunit.Abstractions; namespace RuneScapeCacheToolsTests { [Collection("TestCache")] public class RuneTek5CacheTests { private ITestOutputHelper ...
mit
C#
3fa9aa79aac34b95cabb7f965751cd69c393dfdb
Set tooltip text on initial load
DMagic1/KSP_Contract_Window
Source/ContractsWindow.Unity/TooltipHandler.cs
Source/ContractsWindow.Unity/TooltipHandler.cs
#region license /*The MIT License (MIT) TooltipHandler - Script to control tooltip activation Copyright (c) 2016 DMagic 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, inclu...
#region license /*The MIT License (MIT) TooltipHandler - Script to control tooltip activation Copyright (c) 2016 DMagic 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, inclu...
mit
C#
25f8630ddc7f2bbd4ad46d377e565f78b217ae42
Make "scopes" required, closes #2497
RSuter/NSwag,RSuter/NSwag,RSuter/NSwag,quails4Eva/NSwag,quails4Eva/NSwag,quails4Eva/NSwag,quails4Eva/NSwag,RSuter/NSwag,RSuter/NSwag
src/NSwag.Core/OpenApiOAuthFlow.cs
src/NSwag.Core/OpenApiOAuthFlow.cs
//----------------------------------------------------------------------- // <copyright file="SwaggerSecurityScheme.cs" company="NSwag"> // Copyright (c) Rico Suter. All rights reserved. // </copyright> // <license>https://github.com/RicoSuter/NSwag/blob/master/LICENSE.md</license> // <author>Rico Suter, mail@rsute...
//----------------------------------------------------------------------- // <copyright file="SwaggerSecurityScheme.cs" company="NSwag"> // Copyright (c) Rico Suter. All rights reserved. // </copyright> // <license>https://github.com/RicoSuter/NSwag/blob/master/LICENSE.md</license> // <author>Rico Suter, mail@rsute...
mit
C#
13626244ce09c6e4f8e063cea32bffcb6e487672
Add async/await based pattern execution
peterblazejewicz/azure-aspnet5-examples,peterblazejewicz/azure-aspnet5-examples
src/QueueGettingStarted/Program.cs
src/QueueGettingStarted/Program.cs
using System; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Queue; using Microsoft.Extensions.Configuration; using System.Diagnostics; using System.Threading.Tasks; namespace QueueGettingStarted { public class Program { public static void Main(string[] args) { ...
using System; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Queue; using Microsoft.Extensions.Configuration; using System.Diagnostics; namespace QueueGettingStarted { public class Program { public static void Main(string[] args) { // configuration ...
mit
C#
d104dccf3ebbac10677a44a58d3937d140b310bf
Fix runner_util paths
heejaechang/roslyn,AnthonyDGreen/roslyn,michalhosala/roslyn,wvdd007/roslyn,AArnott/roslyn,bartdesmet/roslyn,jasonmalinowski/roslyn,AdamSpeight2008/roslyn-AdamSpeight2008,davkean/roslyn,zooba/roslyn,swaroop-sridhar/roslyn,jaredpar/roslyn,jeffanders/roslyn,swaroop-sridhar/roslyn,stephentoub/roslyn,Pvlerick/roslyn,bartdes...
src/Test/Perf/util/runner_util.csx
src/Test/Perf/util/runner_util.csx
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #r "..\infra\bin\Microsoft.CodeAnalysis.Scripting.dll" #r "..\infra\bin\Microsoft.CodeAnalysis.CSharp.Scripting.dll" using Microsoft.CodeAnalysis.Scripting; ...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #r "bin\Microsoft.CodeAnalysis.Scripting.dll" #r "bin\Microsoft.CodeAnalysis.CSharp.Scripting.dll" using Microsoft.CodeAnalysis.Scripting; using Microsoft.Co...
mit
C#
cc450ed8cebfe0cd0767d65b1867d0dec6b45845
Update the version for migration project
ravimeda/cli,weshaggard/cli,livarcocc/cli-1,dasMulli/cli,nguerrera/cli,Faizan2304/cli,jonsequitur/cli,livarcocc/cli-1,jonsequitur/cli,jonsequitur/cli,EdwardBlair/cli,nguerrera/cli,mlorbetske/cli,mlorbetske/cli,livarcocc/cli-1,nguerrera/cli,svick/cli,EdwardBlair/cli,blackdwarf/cli,blackdwarf/cli,svick/cli,Faizan2304/cli...
src/Microsoft.DotNet.ProjectJsonMigration/ConstantPackageVersions.cs
src/Microsoft.DotNet.ProjectJsonMigration/ConstantPackageVersions.cs
// Copyright (c) .NET Foundation and contributors. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace Microsoft.DotNet.ProjectJsonMigration { internal class ConstantPackageVersions { public const string AspNetToolsVersion...
// Copyright (c) .NET Foundation and contributors. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace Microsoft.DotNet.ProjectJsonMigration { internal class ConstantPackageVersions { public const string AspNetToolsVersion...
mit
C#
4f5c7c7db1a7d1b754351f81e1712c9ca9c6bea2
Rename 'Browse Gallery' to 'Browse Media'
yonglehou/Orchard,fortunearterial/Orchard,jchenga/Orchard,jerryshi2007/Orchard,omidnasri/Orchard,Codinlab/Orchard,asabbott/chicagodevnet-website,vard0/orchard.tan,xiaobudian/Orchard,Inner89/Orchard,spraiin/Orchard,gcsuk/Orchard,phillipsj/Orchard,qt1/Orchard,vairam-svs/Orchard,smartnet-developers/Orchard,Cphusion/Orchar...
src/Orchard.Web/Modules/Orchard.MediaPicker/Views/Admin/Index.cshtml
src/Orchard.Web/Modules/Orchard.MediaPicker/Views/Admin/Index.cshtml
@model Orchard.Media.ViewModels.MediaFolderEditViewModel @using Orchard.Media.Extensions; @using Orchard.Media.Helpers; @using Orchard.Media.Services; @using Orchard.Media.Models; @using Orchard.UI.Resources; @{ // these need to be in the head because MediaBrowser.js defines a callback that the thumbnail im...
@model Orchard.Media.ViewModels.MediaFolderEditViewModel @using Orchard.Media.Extensions; @using Orchard.Media.Helpers; @using Orchard.Media.Services; @using Orchard.Media.Models; @using Orchard.UI.Resources; @{ // these need to be in the head because MediaBrowser.js defines a callback that the thumbnail im...
bsd-3-clause
C#
b8c1a63015a39c544815fc406e930be03c804104
Use GLib.Marshaller to handle our string freeing and marshalling
hyperair/libgpod,neuschaefer/libgpod,neuschaefer/libgpod,hyperair/libgpod,neuschaefer/libgpod,hyperair/libgpod,neuschaefer/libgpod,hyperair/libgpod,neuschaefer/libgpod,hyperair/libgpod
bindings/mono/libgpod-sharp/GPodBase.cs
bindings/mono/libgpod-sharp/GPodBase.cs
/* * Copyright (c) 2010 Nathaniel McCallum <nathaniel@natemccallum.com> * * The code contained in this file is free software; you can redistribute * it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either version * 2.1 of the License, or...
/* * Copyright (c) 2010 Nathaniel McCallum <nathaniel@natemccallum.com> * * The code contained in this file is free software; you can redistribute * it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either version * 2.1 of the License, or...
lgpl-2.1
C#
82c1be3304c49bc71b6ee5382fbe4c80ee41a4bb
change implementation of ControlBlock
myxini/block-program
block-program/Detection/ControlBlock.cs
block-program/Detection/ControlBlock.cs
namespace Myxini.Recognition { public class ControlBlock : IBlock { public ControlBlock(Command command, BlockParameter parameter) { } public bool IsControlBlock { get { return true; } } public Command CommandIdentification {...
namespace Myxini.Recognition { public class ControlBlock : Instruction { public ControlBlock(Command command, BlockParameter parameter) : base(command, parameter, true) { } } }
mit
C#
55d42787f52f266856807de77d4f9bc8c9ffdcf1
Fix formatting - CI build merge fail
dotnet/roslyn-analyzers,mavasani/roslyn-analyzers,dotnet/roslyn-analyzers,pakdev/roslyn-analyzers,mavasani/roslyn-analyzers,pakdev/roslyn-analyzers
src/NetAnalyzers/UnitTests/Microsoft.NetFramework.Analyzers/DoNotUseInsecureDtdProcessingXmlDocumentSecureDefaultXmlResolverAnalyzerTests.cs
src/NetAnalyzers/UnitTests/Microsoft.NetFramework.Analyzers/DoNotUseInsecureDtdProcessingXmlDocumentSecureDefaultXmlResolverAnalyzerTests.cs
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.Testing; using Xunit; using VerifyCS = Test.Utilities.CSharpSecurityCodeFixVerifier< Microsoft...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.Testing; using Xunit; using VerifyCS = Test.Utilities.CSharpSecurityCodeFixVerifier< Microsoft...
mit
C#
5f0a8e139ea213fa84c654d112fd67d1ec0c9f2b
Update ConsoleAppPublisher to common construct
MassTransit/MassTransit,MassTransit/MassTransit,phatboyg/MassTransit,phatboyg/MassTransit
docs/code/configuration/ConsoleAppPublisher.cs
docs/code/configuration/ConsoleAppPublisher.cs
namespace EventContracts { public interface ValueEntered { string Value { get; } } } namespace ConsoleEventPublisher { using System; using System.Threading; using System.Threading.Tasks; using EventContracts; using MassTransit; public class Program { ...
namespace EventContracts { public interface ValueEntered { string Value { get; } } } namespace ConsoleEventPublisher { using System; using System.Threading; using System.Threading.Tasks; using EventContracts; using MassTransit; public class Program { ...
apache-2.0
C#
83c6735c56da1a075f2d5ce8e7f94dd5207294ba
Format source
danielmundt/csremote
source/Remoting.Client/FormMain.cs
source/Remoting.Client/FormMain.cs
#region Header // Copyright (C) 2012 Daniel Schubert // // 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, ...
#region Header // Copyright (C) 2012 Daniel Schubert // // 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, ...
mit
C#
7cde3c6492f773a1d3cc294b587e75753e56b1ed
Update IDockerClient.cs
ahmetalpbalkan/Docker.DotNet
src/Docker.DotNet/IDockerClient.cs
src/Docker.DotNet/IDockerClient.cs
using System; namespace Docker.DotNet { public interface IDockerClient : IDisposable { DockerClientConfiguration Configuration { get; } TimeSpan DefaultTimeout { get; set; } #region Endpoints IContainerOperations Containers { get; } IImageOperations Images { get; } ...
using System; namespace Docker.DotNet { public interface IDockerClient : IDisposable { DockerClientConfiguration Configuration { get; } TimeSpan DefaultTimeout { get; set; } #region Endpoints IContainerOperations Containers { get; } IImageOperations Images { get; } ...
apache-2.0
C#
a0dc3466b880ba36f39e4a4b8e55457236cfdec0
move to layout and material
ucdavis/Namster,ucdavis/Namster,ucdavis/Namster
src/Namster/Views/Home/List.cshtml
src/Namster/Views/Home/List.cshtml
@{ ViewData["Title"] = "List Results"; } <link href="//cdn.datatables.net/1.10.10/css/jquery.dataTables.min.css" rel="stylesheet" /> <div id="example"></div> @section scripts { <environment names="Development"> <script src="https://fb.me/react-0.14.3.js"></script> <script src="https://fb.me/...
@model dynamic @{ Layout = null; } <html> <head> <title>List test</title> <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css"/> <link href="//cdn.datatables.net/1.10.10/css/jquery.dataTables.min.css" rel="stylesheet" /> @*<script src="https://cdnjs.cloudflare.com/ajax/libs/babel...
mit
C#
91717c204c55f578f7122cd45d5c6956b83ad087
Update index.cshtml
reactiveui/website,reactiveui/website,reactiveui/website,reactiveui/website
input/contribute/operations/index.cshtml
input/contribute/operations/index.cshtml
Order: 100 --- @Html.Partial("_ChildPages") <script async class="speakerdeck-embed" data-slide="4" data-id="880cb5d4ec364909a1db5b5655aa9d37" data-ratio="1.33333333333333" src="//speakerdeck.com/assets/embed.js"></script>
Order: 100 --- @Html.Partial("_ChildPages")
mit
C#
aa469b012df78b8fe47e937bead78a411319fd53
rewrite filename to update.exe and pass along any additional arguments
ruisebastiao/Squirrel.Windows,sickboy/Squirrel.Windows,markwal/Squirrel.Windows,Katieleeb84/Squirrel.Windows,vaginessa/Squirrel.Windows,awseward/Squirrel.Windows,markwal/Squirrel.Windows,EdZava/Squirrel.Windows,jbeshir/Squirrel.Windows,EdZava/Squirrel.Windows,flagbug/Squirrel.Windows,NeilSorensen/Squirrel.Windows,Barry...
src/Squirrel/AssemblyExtensions.cs
src/Squirrel/AssemblyExtensions.cs
using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Reflection; namespace Squirrel { public static class AssemblyExtensions { public static Process Restart(this Assembly assembly, string[] arguments = null) { return ProcessStart(assembly, assem...
using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Reflection; namespace Squirrel { public static class AssemblyExtensions { public static Process Restart(this Assembly assembly, string[] arguments = null) { return ProcessStart(assembly, assem...
mit
C#
428b6a9bbed35966a0822571d6cf4af167cb6a81
Fix hex conversion.
vcsjones/OpenVsixSignTool
src/OpenVsixSignTool.Core/HexHelpers.cs
src/OpenVsixSignTool.Core/HexHelpers.cs
using System; namespace OpenVsixSignTool.Core { internal static class HexHelpers { private static ReadOnlySpan<byte> LookupTable => new byte[] { (byte)'0', (byte)'1', (byte)'2', (byte)'3', (byte)'4', (byte)'5', (byte)'6', (byte)'7', (byte)'8', (byte)'9', (by...
using System; namespace OpenVsixSignTool.Core { internal static class HexHelpers { private static ReadOnlySpan<byte> LookupTable => new byte[] { (byte)'0', (byte)'1', (byte)'2', (byte)'3', (byte)'4', (byte)'5', (byte)'6', (byte)'7', (byte)'8', (byte)'9', (by...
mit
C#
94f6764098dc88a0bb68ed9a4d46602badd0cec9
Update TriggerOfT.cs
wieslawsoltes/AvaloniaBehaviors,wieslawsoltes/AvaloniaBehaviors
src/Avalonia.Xaml.Interactivity/TriggerOfT.cs
src/Avalonia.Xaml.Interactivity/TriggerOfT.cs
using System; using System.ComponentModel; namespace Avalonia.Xaml.Interactivity { /// <summary> /// A base class for behaviors, implementing the basic plumbing of <seealso cref="ITrigger"/>. /// </summary> /// <typeparam name="T">The object type to attach to</typeparam> public abstract class Trig...
using System; using System.ComponentModel; namespace Avalonia.Xaml.Interactivity { /// <summary> /// A base class for behaviors, implementing the basic plumbing of <seealso cref="ITrigger"/>. /// </summary> /// <typeparam name="T">The object type to attach to</typeparam> public abstract class Trig...
mit
C#
3449eae3d2e71a57f7878ddd1b990f6c946d8558
Add missing ConfigureAwait
lewishenson/FluentCineworld
src/FluentCineworld/Sites/SiteDetailsQuery.cs
src/FluentCineworld/Sites/SiteDetailsQuery.cs
using System; using System.Linq; using System.Net.Http; using System.Text.Json; using System.Threading.Tasks; namespace FluentCineworld.Sites { public class SiteDetailsQuery { private readonly IUriGenerator _uriGenerator; private readonly HttpClient _httpClient; public SiteDetailsQuery...
using System; using System.Linq; using System.Net.Http; using System.Text.Json; using System.Threading.Tasks; namespace FluentCineworld.Sites { public class SiteDetailsQuery { private readonly IUriGenerator _uriGenerator; private readonly HttpClient _httpClient; public SiteDetailsQuery...
mit
C#
9480f273d40d83aa6b00da59184f58b35a32a87a
Add back in the implementation for tracking begin and end request
zanetdev/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,Glimpse/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,zanetdev/Glimpse.Prototype,Glimpse/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,zanetdev...
src/Glimpse.Agent.Web/WebTelemetryListener.cs
src/Glimpse.Agent.Web/WebTelemetryListener.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Glimpse.Agent.Web.Messages; using Microsoft.AspNet.Http; using Microsoft.Framework.TelemetryAdapter; namespace Glimpse.Agent.Web { public class WebTelemetryListener { private readonly IAgentBroker _b...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Glimpse.Agent.Web.Messages; using Microsoft.AspNet.Http; using Microsoft.Framework.TelemetryAdapter; namespace Glimpse.Agent.Web { public class WebTelemetryListener { private readonly IAgentBroker _b...
mit
C#
7635a5fc1d6cf2d644a2ca322ebc15efc4712bc6
Update UnixTimeConvert.cs
patchkit-net/patchkit-library-dotnet,patchkit-net/patchkit-library-dotnet
src/PatchKit.Api/Utilities/UnixTimeConvert.cs
src/PatchKit.Api/Utilities/UnixTimeConvert.cs
using System; namespace PatchKit.Api.Utilities { /// <summary> /// Utility for converting Unix time stamp. /// </summary> public static class UnixTimeConvert { /// <summary> /// Converts Unix time stamp to DateTime value. /// </summary> public static DateTime FromUn...
using System; namespace PatchKit.Api.Utilities { /// <summary> /// Utility for converting Unix time stamp. /// </summary> public static class UnixTimeConvert { /// <summary> /// Converts Unix time stamp to DateTime value. /// </summary> public static DateTime FromUn...
mit
C#
ea764f9e86c1e8a0827b4658e26c9b8a8bbd9f89
Set all values in AssemblyInfo
akamsteeg/SwissArmyKnife
src/SwissArmyKnife/Properties/AssemblyInfo.cs
src/SwissArmyKnife/Properties/AssemblyInfo.cs
using System; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("SwissArmyKnife")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("SwissArmyKnife")] [assem...
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("Sw...
mit
C#
8269b60263ac95803851eab6273df7a94c7350de
Fix SampleBass potentially adding invalid memory pressure (#2797)
ppy/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework
osu.Framework/Audio/Sample/SampleBass.cs
osu.Framework/Audio/Sample/SampleBass.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 ManagedBass; using osu.Framework.Allocation; using System.Collections.Concurrent; using System.Runtime.InteropServices; using System.Threading.Tasks; using osu.Fra...
// 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 ManagedBass; using osu.Framework.Allocation; using System.Collections.Concurrent; using System.Runtime.InteropServices; using System.Threading.Tasks; using osu.Fra...
mit
C#
560a0174dff62173c2288a390a0324b9ddedfaf2
Make auto restart toggleable
NeoAdonis/osu,smoogipooo/osu,ppy/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,peppy/osu,peppy/osu-new,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,peppy/osu,ppy/osu
osu.Game/Rulesets/Mods/ModSuddenDeath.cs
osu.Game/Rulesets/Mods/ModSuddenDeath.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.Bindables; using osu.Framework.Graphics.Sprites; using osu.Game.Configuration; using osu.Game.Graphics; using osu.Game.Rulesets.Judgemen...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using osu.Framework.Graphics.Sprites; using osu.Game.Graphics; using osu.Game.Rulesets.Judgements; using osu.Game.Rulesets.Scoring; namespace osu.Game.Rule...
mit
C#
a447f200958977b86129d5159edb9891fc6e2031
Fix formatting of `#nullable enable`
NeoAdonis/osu,UselessToucan/osu,peppy/osu,ppy/osu,peppy/osu,smoogipooo/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu-new,NeoAdonis/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu
osu.Game/Rulesets/Edit/BeatmapVerifierContext.cs
osu.Game/Rulesets/Edit/BeatmapVerifierContext.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.Beatmaps; #nullable enable namespace osu.Game.Rulesets.Edit { /// <summary> /// Represents the context provided by the beatmap verifier to the ch...
// 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.Beatmaps; #nullable enable namespace osu.Game.Rulesets.Edit { /// <summary> /// Represents the context provided by the beatmap verifier to the che...
mit
C#
a88fd4f4a003c8ab79a253729ddf9d42a6fd8826
Teste do ambiente de CI.
mfpalladino/palla.labs.vdt,mfpalladino/palla.labs.vdt,mfpalladino/palla.labs.vdt
Server/src/Palla.Labs.Vdt.WebApi/Controllers/HealthCheckController.cs
Server/src/Palla.Labs.Vdt.WebApi/Controllers/HealthCheckController.cs
using System.Net; using System.Net.Http; using System.Web.Http; namespace Palla.Labs.Vdt.Controllers { public class HealthCheckController : ApiController { public HttpResponseMessage Get() { return Request.CreateResponse<string>(HttpStatusCode.OK, "Aparentemente está tudo ok (testa...
using System.Net; using System.Net.Http; using System.Web.Http; namespace Palla.Labs.Vdt.Controllers { public class HealthCheckController : ApiController { public HttpResponseMessage Get() { return Request.CreateResponse<string>(HttpStatusCode.OK, "Aparentemente está tudo ok..."); ...
unlicense
C#
45d9781aa443b79c0faf1592df63fd52e63211a0
Increment version
KevinJump/jumps.umbraco.usync
jumps.umbraco.usync/Properties/AssemblyInfo.cs
jumps.umbraco.usync/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("ju...
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("ju...
mit
C#
69b36ae52d35c5f983040a28ae9365beed157e5a
Remove out of sync property
code4romania/anabi-gestiune-api,code4romania/anabi-gestiune-api,code4romania/anabi-gestiune-api
Anabi.DataAccess.Ef/DbModels/AssetDb.cs
Anabi.DataAccess.Ef/DbModels/AssetDb.cs
using Anabi.Common.Utils; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Anabi.DataAccess.Ef.DbModels { [Table("Assets")] public class AssetDb : BaseEntity { [Required(ErrorMessage = Constants.NAME_NOT_EM...
using Anabi.Common.Utils; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Anabi.DataAccess.Ef.DbModels { [Table("Assets")] public class AssetDb : BaseEntity { [Required(ErrorMessage = Constants.NAME_NOT_EM...
mpl-2.0
C#
9029e7660061b8931b98cefad14903b3a5e6fb6f
Fix waypoint function
emazzotta/unity-tower-defense
Assets/Scripts/MetallKeferController.cs
Assets/Scripts/MetallKeferController.cs
using UnityEngine; using System.Collections; public class MetallKeferController : MonoBehaviour { private GameController gameController; private GameObject[] baseBuildable; private GameObject nextWaypiont; private int currentWaypointIndex = 0; private int movementSpeed = 2; void Start () { this.gameControll...
using UnityEngine; using System.Collections; public class MetallKeferController : MonoBehaviour { private GameController gameController; private GameObject[] baseBuildable; private GameObject nextWaypiont; private int currentWaypointIndex = 0; private int movementSpeed = 2; void Start () { this.gameControll...
mit
C#
f7c3a81b6324d142a6e46eaa39a604afdc0987da
Add fail safe lookAt function for MetallKefer
emazzotta/unity-tower-defense
Assets/Scripts/MetallKeferController.cs
Assets/Scripts/MetallKeferController.cs
using UnityEngine; using System.Collections; public class MetallKeferController : MonoBehaviour { private GameController gameController; private GameObject[] baseBuildable; private GameObject nextWaypiont; private float health; private int currentWaypointIndex = 0; private int movementSpeed = 2; void Star...
using UnityEngine; using System.Collections; public class MetallKeferController : MonoBehaviour { private GameController gameController; private GameObject[] baseBuildable; private GameObject nextWaypiont; private float health; private int currentWaypointIndex = 0; private int movementSpeed = 2; void Star...
mit
C#
1e568afc83db1ca98b9b88faf4d82ff48852496f
Bump version
nixxquality/GitHubUpdate
GitHubUpdate/Properties/AssemblyInfo.cs
GitHubUpdate/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; 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. [ass...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; 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. [ass...
mit
C#
e84652c31c1f3ef16e370b2e35a6410fb5dee796
fix assemblyinfo
Ar3sDevelopment/Json.NET.Web
Json.NET.Web/Properties/AssemblyInfo.cs
Json.NET.Web/Properties/AssemblyInfo.cs
using System.Resources; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [ass...
using System.Resources; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [ass...
mit
C#
3ecff370781d326e7f80ca7270ec0331b5fe7f95
bump version number to 1.5.5
martin2250/OpenCNCPilot
OpenCNCPilot/Properties/AssemblyInfo.cs
OpenCNCPilot/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("OpenCNCPilot")] [as...
using System.Reflection; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("OpenCNCPilot")] [as...
mit
C#
b4d77b35eebaa1bc427b86258653b74822ed89a8
Update GameManager.cs
afroraydude/First_Unity_Game,afroraydude/First_Unity_Game,afroraydude/First_Unity_Game
Real_Game/Assets/Scripts/GameManager.cs
Real_Game/Assets/Scripts/GameManager.cs
using UnityEngine; using System.Collections; public class GameManager : MonoBehaviour { // Score based stuff public float highScore = 0f; // Level based stuff public int currentLevel = 0; public int unlockedLevels; public int LevelGradingID = 6; // Things that deal with GUI or whatever public Rect stopwat...
using UnityEngine; using System.Collections; public class GameManager : MonoBehaviour { // Score based stuff public float highScore = 0f; //Level based stuff public int currentLevel = 0; public int unlockedLevels; public int LevelGradingID = 6; // Things that deal with GUI or whatever public Rect stopwatc...
mit
C#
169a8a51f44ff9985a01d4f10fd8c9b16a32230b
Handle MouseLeave event
sakapon/Samples-2014,sakapon/Samples-2014,sakapon/Samples-2014
RxSample/MouseOldWpf/MainWindow.xaml.cs
RxSample/MouseOldWpf/MainWindow.xaml.cs
using System; using System.Collections.Generic; using System.Diagnostics; 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.Diagnostics; 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#
46f0df7bc0be14da3f2a955bbaadb43e84972da0
Set title of root controller (sample app)
Microsoft/ApplicationInsights-Xamarin
SampleApp/ExampleTableViewController.cs
SampleApp/ExampleTableViewController.cs
using Foundation; using System; using System.CodeDom.Compiler; using UIKit; namespace SampleApp { partial class ExampleTableViewController : UITableViewController { public ExampleTableViewController (IntPtr handle) : base (handle) { } public override void ViewDidLoad () { base.ViewDidLoad (); Titl...
using Foundation; using System; using System.CodeDom.Compiler; using UIKit; namespace SampleApp { partial class ExampleTableViewController : UITableViewController { public ExampleTableViewController (IntPtr handle) : base (handle) { } public override void ViewDidLoad () { base.ViewDidLoad (); Tabl...
mit
C#
4e7da67558eda4f696dad0a5a15f44668bfc45c1
Remove useless if check
ThomasNigro/ScrollWatchedSelector,ThomasNigro/ScrollWatcher
ScrollWatchedListView/SelectorHelper.cs
ScrollWatchedListView/SelectorHelper.cs
using System; using Windows.UI.Xaml.Controls; using WinRTXamlToolkit.Controls.Extensions; namespace ScrollWatchedSelector { public static class SelectorHelper { private static IScrollWatchedSelector _scrollWatchedSelector; public static ScrollViewer RegisterScrollViewer(ItemsControl selector, ...
using System; using Windows.UI.Xaml.Controls; using WinRTXamlToolkit.Controls.Extensions; namespace ScrollWatchedSelector { public static class SelectorHelper { private static IScrollWatchedSelector _scrollWatchedSelector; public static ScrollViewer RegisterScrollViewer(ItemsControl selector, ...
mit
C#
00bbd698ebcfed09ed11eb464bc0e4b91b162866
bump up version number to be able to deploy a successful manual
PapaMufflon/StandUpTimer,PapaMufflon/StandUpTimer,PapaMufflon/StandUpTimer
StandUpTimer/Properties/AssemblyInfo.cs
StandUpTimer/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyVersion("0.8.8")] [assembly: AssemblyFileVersion("0.8.8")] [assembly: InternalsVisibleTo("StandUpTimer.UnitTests")] [assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyVersion("0.8.7")] [assembly: AssemblyFileVersion("0.8.7")] [assembly: InternalsVisibleTo("StandUpTimer.UnitTests")] [assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
mit
C#
fc1075b28377b546ac2fc1c067b072d810dedc99
Add informational version to assembly manifest
elcattivo/CloudFlareUtilities
CloudFlareUtilities/Properties/AssemblyInfo.cs
CloudFlareUtilities/Properties/AssemblyInfo.cs
using System; using System.Resources; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an ...
using System; using System.Resources; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an ...
mit
C#
36c5ab551d96137054408809be389c39edad9554
Fix mobs not dropping items when falling down. (#5771)
space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14
Content.Server/Standing/StandingStateSystem.cs
Content.Server/Standing/StandingStateSystem.cs
using Content.Server.Hands.Components; using Content.Shared.Standing; using Robust.Shared.GameObjects; using Robust.Shared.IoC; using Robust.Shared.Maths; using Robust.Shared.Random; namespace Content.Server.Standing; public class StandingStateSystem : EntitySystem { [Dependency] private readonly IRobustRandom _r...
using Content.Server.Hands.Components; using Content.Shared.Standing; using Robust.Shared.GameObjects; using Robust.Shared.IoC; using Robust.Shared.Maths; using Robust.Shared.Random; namespace Content.Server.Standing; public class StandingStateSystem : EntitySystem { [Dependency] private readonly IRobustRandom _r...
mit
C#
49c2d6875affe1a0124f3a8a255aaacc094afb3f
Update FormationAnimationTrigger.cs
Goodgulf281/Unity-Formation-Movement
Scripts/Formation/FormationAnimationTrigger.cs
Scripts/Formation/FormationAnimationTrigger.cs
using System.Collections; using System.Collections.Generic; using UnityEngine; //using Pathfinding.Util; // Code from A*Pathfinding using com.t7t.utilities; namespace com.t7t.formation { public class FormationAnimationTrigger : MonoBehaviour { [SerializeField] float period = 0.8F; // C...
using System.Collections; using System.Collections.Generic; using UnityEngine; using Pathfinding.Util; using com.t7t.utilities; namespace com.t7t.formation { public class FormationAnimationTrigger : MonoBehaviour { [SerializeField] float period = 0.8F; // Checks every period seconds if a for...
mit
C#
fc97329c154303ed188ebac28dc4877451d522a0
Fix key binding
eivindveg/PG3300-Innlevering1
SnakeMessModelsLib/GeneratedCode/KeyMapping.cs
SnakeMessModelsLib/GeneratedCode/KeyMapping.cs
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool // Changes to this file will be lost if the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ using ...
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool // Changes to this file will be lost if the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ using ...
mit
C#
18b987615a5074300be1908e357870523c870e92
Add menu items for additional actions.
tvanfosson/azure-web-jobs-demo,tvanfosson/azure-web-jobs-demo,tvanfosson/azure-web-jobs-demo
WebJobsDemo/WebApp/Views/Shared/_Layout.cshtml
WebJobsDemo/WebApp/Views/Shared/_Layout.cshtml
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>@ViewBag.Title - WebJob Demos</title> @Styles.Render("~/content/css") @Scripts.Render("~/bundles/modernizr") </head> <body> <div class="navbar navbar-inverse navb...
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>@ViewBag.Title - WebJob Demos</title> @Styles.Render("~/content/css") @Scripts.Render("~/bundles/modernizr") </head> <body> <div class="navbar navbar-inverse navb...
mit
C#
4e1c5bce3dd7183951c218d7bc9c21f0caf4ff27
Add region tags for sample.
GoogleCloudPlatform/getting-started-dotnet,GoogleCloudPlatform/getting-started-dotnet,GoogleCloudPlatform/getting-started-dotnet
aspnet/1-hello-world/App_Start/WebApiConfig.cs
aspnet/1-hello-world/App_Start/WebApiConfig.cs
// Copyright(c) 2016 Google 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 // // Unless required by applicable law or ag...
// Copyright(c) 2016 Google 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 // // Unless required by applicable law or ag...
apache-2.0
C#
a02539f6fcc31ad2c59982ae35759dbd0af67bcc
Downgrade thumbnail property from BitmapImage to subclass ImageSource
batzen/MahApps.Metro,MahApps/MahApps.Metro,pfattisc/MahApps.Metro,Evangelink/MahApps.Metro,ye4241/MahApps.Metro,xxMUROxx/MahApps.Metro
src/MahApps.Metro/MahApps.Metro.Shared/Controls/HamburgerMenu/MenuItems/HamburgerMenuImageItem.cs
src/MahApps.Metro/MahApps.Metro.Shared/Controls/HamburgerMenu/MenuItems/HamburgerMenuImageItem.cs
using System.Windows; using System.Windows.Media; namespace MahApps.Metro.Controls { /// <summary> /// The HamburgerMenuImageItem provides an image based implementation for HamburgerMenu entries. /// </summary> public class HamburgerMenuImageItem : HamburgerMenuItem { /// <summary> ...
using System.Windows; using System.Windows.Media.Imaging; namespace MahApps.Metro.Controls { /// <summary> /// The HamburgerMenuImageItem provides an image based implementation for HamburgerMenu entries. /// </summary> public class HamburgerMenuImageItem : HamburgerMenuItem { /// <summary>...
mit
C#
ed92ef24288d980928868569c891e0bd86da8196
Remove unused namespace which caused a build failure
jorbor/Kekiri,chris-peterson/Kekiri,jorbor/Kekiri
src/IoC/Autofac/AutofacFluentScenario.cs
src/IoC/Autofac/AutofacFluentScenario.cs
namespace Kekiri.IoC.Autofac { public class AutofacFluentScenario : IoCFluentScenario { public AutofacFluentScenario() : base(new AutofacContainer()) { } } public class AutofacFluentScenario<TContext> : IoCFluentScenario<TContext> where TContext : new() { public Aut...
using NUnit.Framework; namespace Kekiri.IoC.Autofac { public class AutofacFluentScenario : IoCFluentScenario { public AutofacFluentScenario() : base(new AutofacContainer()) { } } public class AutofacFluentScenario<TContext> : IoCFluentScenario<TContext> where TContext : new() ...
mit
C#
408531919b8d11f0a01a1981815e9033b50478d9
reset AssemblyInfo to something more meaningful
kenegozi/ntemplate
src/NTemplate/Properties/AssemblyInfo.cs
src/NTemplate/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("NTemplate")] [assembly: AssemblyDescription("")] [assembly: AssemblyCompany("Ken Egozi")] [assembly: AssemblyProduct("NTemplate")] [assembly: AssemblyCopyright("Copyright © Ken Egozi 2010")] [assembly: AssemblyVersion("...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
bsd-3-clause
C#
aca0d06a3e132da9b9d3ed9f034bc3d42a2193bb
remove whitespace
SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice
src/SFA.DAS.EAS.Portal/Application/Services/AccountDocumentService.cs
src/SFA.DAS.EAS.Portal/Application/Services/AccountDocumentService.cs
using SFA.DAS.CosmosDb; using SFA.DAS.EAS.Portal.Database; using SFA.DAS.EAS.Portal.Client.Database.Models; using System.Threading; using System.Threading.Tasks; namespace SFA.DAS.EAS.Portal.Application.Services { public class AccountDocumentService : IAccountDocumentService { private readonly IAccoun...
using SFA.DAS.CosmosDb; using SFA.DAS.EAS.Portal.Database; using SFA.DAS.EAS.Portal.Client.Database.Models; using System.Threading; using System.Threading.Tasks; namespace SFA.DAS.EAS.Portal.Application.Services { public class AccountDocumentService : IAccountDocumentService { private readonly IAccoun...
mit
C#
5bd16f9a7ca3f8fd9f3a6fb9897d30e5d7fbc60f
Add scaling factor
NeoAdonis/osu,2yangk23/osu,smoogipoo/osu,NeoAdonis/osu,DrabWeb/osu,EVAST9919/osu,naoey/osu,ppy/osu,UselessToucan/osu,ZLima12/osu,peppy/osu,2yangk23/osu,smoogipoo/osu,ppy/osu,ZLima12/osu,peppy/osu,johnneijzen/osu,smoogipoo/osu,peppy/osu-new,NeoAdonis/osu,ppy/osu,naoey/osu,johnneijzen/osu,DrabWeb/osu,naoey/osu,smoogipooo...
osu.Game.Rulesets.Osu/Difficulty/Skills/Aim.cs
osu.Game.Rulesets.Osu/Difficulty/Skills/Aim.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 System; using osu.Game.Rulesets.Osu.Difficulty.Preprocessing; using osuTK; namespace osu.Game.Rulesets.Osu.Difficulty.Skills { /// <summary> /// Represen...
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using osu.Game.Rulesets.Osu.Difficulty.Preprocessing; using osuTK; namespace osu.Game.Rulesets.Osu.Difficulty.Skills { /// <summary> /// Represen...
mit
C#