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
f67a09d50c95657a70784d10aa94bcaa2a87ea0b
Add some docs
mminns/xwt,residuum/xwt,mono/xwt,sevoku/xwt,cra0zy/xwt,hamekoz/xwt,antmicro/xwt,hwthomas/xwt,akrisiun/xwt,iainx/xwt,lytico/xwt,steffenWi/xwt,TheBrainTech/xwt,mminns/xwt,directhex/xwt
Xwt/Xwt.Backends/IScrollAdjustmentBackend.cs
Xwt/Xwt.Backends/IScrollAdjustmentBackend.cs
// // IScrollAdjustmentBackend.cs // // Author: // Lluis Sanchez <lluis@xamarin.com> // // Copyright (c) 2012 Xamarin Inc // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software with...
// // IScrollAdjustmentBackend.cs // // Author: // Lluis Sanchez <lluis@xamarin.com> // // Copyright (c) 2012 Xamarin Inc // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software with...
mit
C#
bf9c2c04ad712351a1d538562132f5480bae253d
Fix disabling check boxes
leotsarev/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net,leotsarev/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,kirillkos/joinrpg-net,kirillkos/joinrpg-net,joinrpg/joinrpg-net,joinrpg/joinrpg-net
Joinrpg/Views/Shared/EditorTemplates/SubscribeSettingsViewModel.cshtml
Joinrpg/Views/Shared/EditorTemplates/SubscribeSettingsViewModel.cshtml
@model JoinRpg.Web.Models.SubscribeSettingsViewModel @functions { private object CheckBoxEnabled(bool enabled) { return enabled ? null : new {@disabled = "disabled"}; } } <div class="form-horizontal"> <h4>Настройки подписки</h4> <hr/> @Html.ValidationSummary(true, "", new {@class =...
@model JoinRpg.Web.Models.SubscribeSettingsViewModel <div class="form-horizontal"> <h4>Настройки подписки</h4> <hr/> @Html.ValidationSummary(true, "", new {@class = "text-danger"}) <div class="form-group"> @Html.LabelFor(model => model.ClaimStatusChange, htmlAttributes: new {@class = "control...
mit
C#
6449fa9617e9ccefa22f5c59f8294c50a4583724
implement IComparable for teams
svmnotn/cuddly-octo-adventure
Core/Data/Team.cs
Core/Data/Team.cs
namespace COA.Data { using System; using System.Drawing; public class Team : IComparable<Team> { public string name; public Color color; public Font font; [NonSerialized] public int score; public int CompareTo(Team other) { if(score > other.score) { return -1; } else...
namespace COA.Data { using System; using System.Drawing; public class Team { public string name; public Color color; public Font font; [NonSerialized] public int score; } }
mit
C#
0bc918ee43487331d1bf0d5d7ca3e80d755fe94b
Fix name violation
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Fluent/ViewModels/Dialogs/DialogViewModelBaseOfTResult.cs
WalletWasabi.Fluent/ViewModels/Dialogs/DialogViewModelBaseOfTResult.cs
using ReactiveUI; using System; using System.Reactive.Linq; using System.Threading.Tasks; namespace WalletWasabi.Fluent.ViewModels.Dialogs { /// <summary> /// Base ViewModel class for Dialogs that returns a value back. /// Do not reuse all types derived from this after calling ShowDialogAsync. /// Spawn a new inst...
using ReactiveUI; using System; using System.Reactive.Linq; using System.Threading.Tasks; namespace WalletWasabi.Fluent.ViewModels.Dialogs { /// <summary> /// Base ViewModel class for Dialogs that returns a value back. /// Do not reuse all types derived from this after calling ShowDialogAsync. /// Spawn a new inst...
mit
C#
f0c5c04fb66a1099a9d1cd4330f8804e1a6f8c1d
Fix for: MPLY-6962. The data binding properties were not being set or notified. Buddy: John
eegeo/eegeo-example-app,eegeo/eegeo-example-app,wrld3d/wrld-example-app,wrld3d/wrld-example-app,eegeo/eegeo-example-app,wrld3d/wrld-example-app,eegeo/eegeo-example-app,eegeo/eegeo-example-app,wrld3d/wrld-example-app,wrld3d/wrld-example-app,eegeo/eegeo-example-app,wrld3d/wrld-example-app,eegeo/eegeo-example-app,wrld3d/w...
windows/ExampleApp/ExampleAppWPF/Views/SearchResultPoi/GeonamesSearchResultsPoiView.cs
windows/ExampleApp/ExampleAppWPF/Views/SearchResultPoi/GeonamesSearchResultsPoiView.cs
using System; using System.Windows; using System.Windows.Controls; namespace ExampleAppWPF { public class GeoNamesSearchResultsPoiView : SearchResultPoiViewBase { private ExampleApp.SearchResultModelCLI m_model; private Image m_categoryIcon; private string m_title; ...
using System; using System.Windows; using System.Windows.Controls; namespace ExampleAppWPF { public class GeoNamesSearchResultsPoiView : SearchResultPoiViewBase { private ExampleApp.SearchResultModelCLI m_model; private Image m_categoryIcon; public string Title { get; set; } ...
bsd-2-clause
C#
0f69b2d030822d2c810c3cc8dc372dd99065c65c
Update UnprotectingPasswordProtectedWorksheet.cs
maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells...
Examples/CSharp/Worksheets/Security/Unprotect/UnprotectingPasswordProtectedWorksheet.cs
Examples/CSharp/Worksheets/Security/Unprotect/UnprotectingPasswordProtectedWorksheet.cs
using System.IO; using Aspose.Cells; namespace Aspose.Cells.Examples.Worksheets.Security.Unprotect { public class UnprotectingPasswordProtectedWorksheet { public static void Main(string[] args) { //ExStart:1 // The path to the documents directory. string dat...
using System.IO; using Aspose.Cells; namespace Aspose.Cells.Examples.Worksheets.Security.Unprotect { public class UnprotectingPasswordProtectedWorksheet { public static void Main(string[] args) { // The path to the documents directory. string dataDir = Aspose.Cells.Exam...
mit
C#
6ae2f65fd6c733b2216eb9c3683055de176b6a32
build v0.5.2
Netuitive/collectdwin,pall-valmundsson/collectdwin,bloomberg/collectdwin,Netuitive/netuitive-windows-agent
src/CollectdWinService/Properties/AssemblyInfo.cs
src/CollectdWinService/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("CollectdWinService")] [assembly: Assembl...
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("CollectdWinService")] [assembly: Assembl...
apache-2.0
C#
e7147965518c4267236ebcf2c9569bc0d31507f6
Set version to 0.4.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: AssemblyTi...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
mit
C#
a34be74f263f1713c94dd4524244dec4625ddb36
Fix bug with writing file name as timestamp
anthonyvscode/FluentEmail,anthonyvscode/FluentEmail,lukencode/FluentEmail,lukencode/FluentEmail
src/FluentEmail.Core/Defaults/SaveToDiskSender.cs
src/FluentEmail.Core/Defaults/SaveToDiskSender.cs
using System; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using FluentEmail.Core.Interfaces; using FluentEmail.Core.Models; namespace FluentEmail.Core.Defaults { public class SaveToDiskSender : ISender { private readonly string _directory; public ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using FluentEmail.Core.Interfaces; using FluentEmail.Core.Models; namespace FluentEmail.Core.Defaults { public class SaveToDiskSender : ISender { private readonly s...
mit
C#
29e3b7097027fb175176bb052f9fb6ea8afdec34
Move arguments to the MinerConfiguration (instead of Launch parameter)
IWBWbiz/MultiMiner,nwoolls/MultiMiner,nwoolls/MultiMiner,IWBWbiz/MultiMiner
MultiMiner.Xgminer/MinerConfiguration.cs
MultiMiner.Xgminer/MinerConfiguration.cs
using System.Collections.Generic; namespace MultiMiner.Xgminer { public class MinerConfiguration { public MinerConfiguration() { this.DeviceIndexes = new List<int>(); } public string ExecutablePath { get; set; } public List<MiningPool> Pools { get; set; } ...
using System.Collections.Generic; namespace MultiMiner.Xgminer { public class MinerConfiguration { public MinerConfiguration() { this.DeviceIndexes = new List<int>(); } public string ExecutablePath { get; set; } public List<MiningPool> Pools { get; set; } ...
mit
C#
88e1348e09e7a850e25db558fd54eac13c3242f5
Update copyright and default assembly file version
Seddryck/NBi,Seddryck/NBi
AssemblyInfo.cs
AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; // 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: AssemblyCompany("NBi Team - Cdric L. Charlier")] ...
using System.Reflection; using System.Runtime.CompilerServices; // 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: AssemblyCompany("NBi Team - Cdric L. Charlier")] ...
apache-2.0
C#
e89ac3b0e6fba5055e64f965138f5169c773f8d9
Bump version
roman-yagodin/R7.University,roman-yagodin/R7.University,roman-yagodin/R7.University
R7.University/Properties/AssemblyInfo.cs
R7.University/Properties/AssemblyInfo.cs
using System.Reflection; // Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. [assembly: AssemblyTitle("R7.University")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("R7.Labs")] ...
using System.Reflection; // Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. [assembly: AssemblyTitle("R7.University")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("R7.Labs")] ...
agpl-3.0
C#
5788ceb5d3aa8db1ca7c9ce4dffa322d83420291
change assembly title
alexrster/SAML2,elerch/SAML2
src/SAML2.Core/Properties/AssemblyInfo.cs
src/SAML2.Core/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("SA...
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("SA...
mpl-2.0
C#
ba09734a632296437805aea94b908776951e6a0e
Add Optional.Empty
ethanmoffat/EndlessClient
EOLib/Optional.cs
EOLib/Optional.cs
// Original Work Copyright (c) Ethan Moffat 2014-2016 // This file is subject to the GPL v2 License // For additional details, see the LICENSE file namespace EOLib { public class Optional<T> { private static readonly Optional<T> _readOnlyEmpty = new Optional<T>(); public static Optional<T> Emp...
// Original Work Copyright (c) Ethan Moffat 2014-2016 // This file is subject to the GPL v2 License // For additional details, see the LICENSE file namespace EOLib { public class Optional<T> { public T Value { get; private set; } public bool HasValue { get; private set; } public Opti...
mit
C#
38a81a9083d4a07ff89d16a0ddf08a785c1a6f10
Use POL.OpenPOLUtilsConfigKey() where applicable.
Vicrelant/polutils,Vicrelant/polutils,graspee/polutils,graspee/polutils
PlayOnline.Utils.FFXIDataBrowser/IItemExporter.cs
PlayOnline.Utils.FFXIDataBrowser/IItemExporter.cs
using System; using System.IO; using System.Windows.Forms; using Microsoft.Win32; using PlayOnline.Core; using PlayOnline.FFXI; namespace PlayOnline.Utils.FFXIDataBrowser { internal abstract class IItemExporter { public abstract void DoExport(FFXIItem[] Items); private static FolderBrowserDialog dlgBrows...
using System; using System.IO; using System.Windows.Forms; using Microsoft.Win32; using PlayOnline.Core; using PlayOnline.FFXI; namespace PlayOnline.Utils.FFXIDataBrowser { internal abstract class IItemExporter { public abstract void DoExport(FFXIItem[] Items); private static FolderBrowserDialog dlgBrows...
apache-2.0
C#
a4c3f76f00bd7c9196559ddc7977ec6f5ee89b43
Extend cookie timeout to 1 day
mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander,mattgwagner/Battery-Commander
BatteryCommander.Web/IdentityConfig.cs
BatteryCommander.Web/IdentityConfig.cs
[assembly: Microsoft.Owin.OwinStartup(typeof(BatteryCommander.Web.Startup))] namespace BatteryCommander.Web { using Microsoft.AspNet.Identity; using Microsoft.Owin; using Microsoft.Owin.Security.Cookies; using Owin; using System; public partial class Startup { public void Configur...
[assembly: Microsoft.Owin.OwinStartup(typeof(BatteryCommander.Web.Startup))] namespace BatteryCommander.Web { using Microsoft.AspNet.Identity; using Microsoft.Owin; using Microsoft.Owin.Security.Cookies; using Owin; using System; public partial class Startup { public void Configur...
mit
C#
c7ff0399a0ce02ea7b01396d7c733708d95b47cc
Update AssemblyInfo
Vtek/Bartender
Cheers.Cqrs/Properties/AssemblyInfo.cs
Cheers.Cqrs/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("Cheers.Cqrs")] [assembly: AssemblyDescription("Cheers CQRS contracts")] [assembly: AssemblyConfig...
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("Cheers.Cqrs")] [assembly: AssemblyDescription("Cheers CQRS contracts")] [assembly: AssemblyConfig...
mit
C#
342ff5f43b540998b0bb0e12af543809ba58fc2d
Fix server crash when attempting to deploy AME part in space or in your hands.
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/GameObjects/Components/Power/AME/AMEPartComponent.cs
Content.Server/GameObjects/Components/Power/AME/AMEPartComponent.cs
#nullable enable using System.Threading.Tasks; using System.Linq; using Content.Server.GameObjects.Components.Interactable; using Content.Server.Interfaces.GameObjects.Components.Items; using Content.Shared.GameObjects.Components.Interactable; using Content.Shared.Interfaces; using Content.Shared.Interfaces.GameObjects...
#nullable enable using System.Threading.Tasks; using System.Linq; using Content.Server.GameObjects.Components.Interactable; using Content.Server.Interfaces.GameObjects.Components.Items; using Content.Shared.GameObjects.Components.Interactable; using Content.Shared.Interfaces; using Content.Shared.Interfaces.GameObjects...
mit
C#
aaf13deb5182b8768ef82a23de4ee87f6fb582d6
移動File_Write方法
60071jimmy/UartOscilloscope,60071jimmy/UartOscilloscope
UartOscilloscope/CSharpFiles/FileIO.cs
UartOscilloscope/CSharpFiles/FileIO.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UartOscilloscope { public class FileIO { public void File_Write(string File_name, string Input_string) // 宣告File_Write副程式,將資料寫入檔案 // File_name為欲寫入檔案名稱 // Input_string為欲寫入檔案之字串資料 ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UartOscilloscope { public class FileIO { } }
apache-2.0
C#
14d789c7c935c2f78e7dc885ba1ea5798d71d18b
Update Program.cs
sgbj/Dukpt.NET
Test/Program.cs
Test/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using DukptSharp; namespace Test { class Program { static void Main(string[] args) { var test = "%B5452300551227189^HOGAN/PAUL ^08043210000000725000000?\0\0\0\0"...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using DukptSharp; namespace Test { class Program { static void Main(string[] args) { var test = "%B5452300551227189^HOGAN/PAUL ^08043210000000725000000?\0\0\0\0"...
mit
C#
41acbcf90ed302bc1b3689bd46237838f098b3f7
Fix compilation issues on AWS side.
bstark23/Cloud.Storage
src/Cloud.Storage.AWS/Queues/Queue.cs
src/Cloud.Storage.AWS/Queues/Queue.cs
using System; using System.Collections.Generic; using System.Threading.Tasks; using Cloud.Storage.Queues; namespace Cloud.Storage.AWS.Queues { public class Queue : IQueue { public Task AddMessage(IMessage message) { throw new NotImplementedException(); } public Task Clear() { throw new NotImplement...
using System; using System.Collections.Generic; using System.Threading.Tasks; using Cloud.Storage.Queues; namespace Cloud.Storage.AWS.Queues { public class Queue : IQueue { public Task AddMessage(IMessage message) { throw new NotImplementedException(); } public IMessage CreateMessage(byte[] messageConte...
mit
C#
030271e2476fb19bb7465578b65fd989cd290d68
Trim email addresses
mwcaisse/portfolio,mwcaisse/portfolio,mwcaisse/portfolio
Portfolio/Portfolio.API/Startup.cs
Portfolio/Portfolio.API/Startup.cs
using System; using System.Linq; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Serilog; namespace Portfolio.API { public cla...
using System; using System.Linq; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Serilog; namespace Portfolio.API { public cla...
mit
C#
3048c13ee95577dd103b21ad468f6cd154fd1914
Remove unneeded using
jetheredge/SquishIt,wolfgang42/SquishIt,farans/SquishIt,farans/SquishIt,jetheredge/SquishIt,farans/SquishIt,0liver/SquishIt,Worthaboutapig/SquishIt,AlexCuse/SquishIt,wolfgang42/SquishIt,0liver/SquishIt,0liver/SquishIt,0liver/SquishIt,AlexCuse/SquishIt,wolfgang42/SquishIt,AlexCuse/SquishIt,wolfgang42/SquishIt,Worthabout...
SquishIt.Framework/Coffee/CoffeescriptCompiler.cs
SquishIt.Framework/Coffee/CoffeescriptCompiler.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Text; using Jurassic; namespace SquishIt.Framework.Coffee { public class CoffeescriptCompiler { private static string _coffeescript; private static ScriptEngin...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Text; using EcmaScript.NET; using Jurassic; namespace SquishIt.Framework.Coffee { public class CoffeescriptCompiler { private static string _coffeescript; pri...
mit
C#
4f59fc15a50910eb4716f3968779e64b28856acc
Mark `BeatmapSet` as nullable for the time being
peppy/osu-new,ppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,smoogipooo/osu,smoogipoo/osu
osu.Game/Beatmaps/IBeatmapInfo.cs
osu.Game/Beatmaps/IBeatmapInfo.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.Database; using osu.Game.Rulesets; #nullable enable namespace osu.Game.Beatmaps { /// <summary> /// A single beatmap difficulty. /// </summar...
// 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.Database; using osu.Game.Rulesets; #nullable enable namespace osu.Game.Beatmaps { /// <summary> /// A single beatmap difficulty. /// </summar...
mit
C#
4625edf8c331ea20bd3943be1e1b1275082902a9
add basic character movement
Natsirtt/office-rituals
Assets/Scripts/Character.cs
Assets/Scripts/Character.cs
using UnityEngine; using System.Collections; public abstract class Meter { public float Value; void Start() { Value = 0.0f; } public abstract void CalcWork(ref float value); } public class Character : MonoBehaviour { private float WorkMeter; private float CoffeeMeter; private...
using UnityEngine; using System.Collections; public abstract class Meter { public float Value; void Start() { Value = 0.0f; } public abstract void CalcWork(ref float value); } public class Character : MonoBehaviour { private float WorkMeter; private float CoffeeMeter; private...
cc0-1.0
C#
f31ff2411e3c81c076f70685cc62986337f6ffe7
Adjust max size of contents read from incoming request headers to be 1k
Microsoft/ApplicationInsights-aspnet5,Microsoft/ApplicationInsights-aspnet5,Microsoft/ApplicationInsights-aspnet5,Microsoft/ApplicationInsights-aspnetcore,Microsoft/ApplicationInsights-aspnetcore,Microsoft/ApplicationInsights-aspnetcore
src/Microsoft.ApplicationInsights.AspNetCore/Common/InjectionGuardConstants.cs
src/Microsoft.ApplicationInsights.AspNetCore/Common/InjectionGuardConstants.cs
namespace Microsoft.ApplicationInsights.AspNetCore.Common { /// <summary> /// These values are listed to guard against malicious injections by limiting the max size allowed in an HTTP Response. /// These max limits are intentionally exaggerated to allow for unexpected responses, while still guarding agains...
namespace Microsoft.ApplicationInsights.AspNetCore.Common { /// <summary> /// These values are listed to guard against malicious injections by limiting the max size allowed in an HTTP Response. /// These max limits are intentionally exaggerated to allow for unexpected responses, while still guarding agains...
mit
C#
ea3505fd17a2c33067c978bb9d8b0e51c9c55ef2
Fix "Sequence contains no elements" error.
stackia/DNSAgent
DNSAgent/DnsMessageCache.cs
DNSAgent/DnsMessageCache.cs
using System; using System.Collections.Concurrent; using System.Linq; using ARSoft.Tools.Net.Dns; namespace DNSAgent { internal class DnsCacheMessageEntry { public DnsCacheMessageEntry(DnsMessage message, int timeToLive) { Message = message; var records = message.Answer...
using System; using System.Collections.Concurrent; using System.Linq; using ARSoft.Tools.Net.Dns; namespace DNSAgent { internal class DnsCacheMessageEntry { public DnsCacheMessageEntry(DnsMessage message, int timeToLive) { Message = message; timeToLive = ...
mit
C#
f077b9c727067f4f5bd77e594a68ea74cc255043
remove unnecessary callback
StefanoFiumara/Harry-Potter-Unity
Assets/Scripts/HarryPotterUnity/Cards/BaseSpell.cs
Assets/Scripts/HarryPotterUnity/Cards/BaseSpell.cs
using System.Collections.Generic; using HarryPotterUnity.Enums; using HarryPotterUnity.Game; using HarryPotterUnity.Tween; using UnityEngine; namespace HarryPotterUnity.Cards { public abstract class BaseSpell : BaseCard { private static readonly Vector3 _spellOffset = new Vector3(0f, 0f, -400f); ...
using System.Collections.Generic; using HarryPotterUnity.Enums; using HarryPotterUnity.Game; using HarryPotterUnity.Tween; using UnityEngine; namespace HarryPotterUnity.Cards { public abstract class BaseSpell : BaseCard { private static readonly Vector3 _spellOffset = new Vector3(0f, 0f, -400f); ...
mit
C#
66f8c81b1513158856f756502760bdff164aae32
Increment version to v1.1.0.10
MatthewSteeples/XeroAPI.Net,jcvandan/XeroAPI.Net,TDaphneB/XeroAPI.Net,XeroAPI/XeroAPI.Net
source/XeroApi/Properties/AssemblyInfo.cs
source/XeroApi/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("XeroApi")] [assembly: AssemblyDescription...
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("XeroApi")] [assembly: AssemblyDescription...
mit
C#
1e1c80da0a449043282d5b449b9525a0c5607ccd
Update Customization.cs
apemost/Newq,apemost/Newq
src/Newq/Customization.cs
src/Newq/Customization.cs
namespace Newq { using System; using System.Linq.Expressions; /// <summary> /// /// </summary> public abstract class Customization { /// <summary> /// /// </summary> protected Context context; /// <summary> /// /// </summary> ...
namespace Newq { using System; /// <summary> /// /// </summary> public abstract class Customization { /// <summary> /// /// </summary> protected Context context; /// <summary> /// /// </summary> /// <param name="context"></par...
mit
C#
a6320291d142c10fea7d9983f48697ef93d2c929
Update IDisposable #406
masterdidoo/LiteDB,RytisLT/LiteDB,mbdavid/LiteDB,falahati/LiteDB,masterdidoo/LiteDB,RytisLT/LiteDB,89sos98/LiteDB,89sos98/LiteDB,falahati/LiteDB
LiteDB/Utils/LockControl.cs
LiteDB/Utils/LockControl.cs
using System; using System.Threading; namespace LiteDB { /// <summary> /// A class to control locking disposal. Can be a "new lock" - when a lock is not not coming from other lock state /// </summary> public class LockControl : IDisposable { // dispose based on // https://lostechie...
using System; using System.Threading; namespace LiteDB { /// <summary> /// A class to control locking disposal. Can be a "new lock" - when a lock is not not coming from other lock state /// </summary> public class LockControl : IDisposable { // dispose based on // https://lostechie...
mit
C#
3675469c58b057e64a267f8811ab03d00c58ff1e
Add some documentation and rename some method args (no api changes)
activelylazy/TestFirst.Net,activelylazy/TestFirst.Net,TestFirstNet/TestFirst.Net,TestFirstNet/TestFirst.Net
TestFirst.Net/IMatchDiagnostics.cs
TestFirst.Net/IMatchDiagnostics.cs
using System; namespace TestFirst.Net { public interface IMatchDiagnostics:IDescription { IMatchDiagnostics Matched(String text, params Object[] args); IMatchDiagnostics Matched(ISelfDescribing selfDescribing); IMatchDiagnostics MisMatched(String text, params Object[] args)...
using System; namespace TestFirst.Net { public interface IMatchDiagnostics:IDescription { IMatchDiagnostics Matched(String text, params Object[] args); IMatchDiagnostics Matched(ISelfDescribing selfDescribing); IMatchDiagnostics MisMatched(String text, params Object[] args);...
bsd-2-clause
C#
9b869466a777187cb93e0c19892e57523c0a8a77
Clean up: register view
ramzzzay/GalleryMVC_With_Auth,ramzzzay/GalleryMVC_With_Auth,ramzzzay/GalleryMVC_With_Auth
GalleryMVC_With_Auth/Views/Account/Register.cshtml
GalleryMVC_With_Auth/Views/Account/Register.cshtml
@using Microsoft.AspNet.Identity.EntityFramework @model GalleryMVC_With_Auth.Models.RegisterViewModel @{ ViewBag.Title = "Register"; //List<IdentityRole> lst = ViewBag.tmp; //List<IdentityRole> lst2 = ViewBag.tmp2; //var db = lst2; } <h2>@ViewBag.Title.</h2> @using (Html.BeginForm("Register", "Accoun...
@using Microsoft.AspNet.Identity.EntityFramework @model GalleryMVC_With_Auth.Models.RegisterViewModel @{ ViewBag.Title = "Register"; //List<IdentityRole> lst = ViewBag.tmp; //List<IdentityRole> lst2 = ViewBag.tmp2; //var db = lst2; } <h2>@ViewBag.Title.</h2> @using (Html.BeginForm("Register", "Accoun...
apache-2.0
C#
1fada0e3c2deae67565cf00615367f8b8594b73f
update styles
lAnubisl/PostTrack,lAnubisl/PostTrack,lAnubisl/PostTrack
Posttrack.BLL/Models/EmailModels/BaseEmailModel.cs
Posttrack.BLL/Models/EmailModels/BaseEmailModel.cs
using Posttrack.Data.Interfaces.DTO; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Globalization; using System.Text.RegularExpressions; namespace Posttrack.BLL.Models.EmailModels { internal abstract class BaseEmailModel { internal BaseEmailModel(str...
using Posttrack.Data.Interfaces.DTO; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Globalization; using System.Text.RegularExpressions; namespace Posttrack.BLL.Models.EmailModels { internal abstract class BaseEmailModel { internal BaseEmailModel(str...
apache-2.0
C#
5587abc0c30e60890393896970332a81eea518ef
Adjust starting point just slightly - move Display Initial Grid to just before operation occurs. This allows it to be included if we loop around the naive solution.
bsstahl/DPDemo
ShortestPath/Program.cs
ShortestPath/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShortestPath { class Program { const int _gridSize = 6; static void Main(string[] args) { Optimization.Entities.Grid grid = Construct...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShortestPath { class Program { const int _gridSize = 6; static void Main(string[] args) { Optimization.Entities.Grid grid = Construct...
mit
C#
2cab6e15bf97e1c7e8b8d04c37084cc21041ac9b
Fix build with VS
markmeeus/MarcelloDB
Marcello/Properties/AssemblyInfo.cs
Marcello/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 ("Marcello")] [assembly: AssemblyDescription ("")] [assembly: AssemblyConfiguration ("")] [assembl...
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 ("Marcello")] [assembly: AssemblyDescription ("")] [assembly: AssemblyConfiguration ("")] [assembl...
mit
C#
0a4b1fcf4d14ab50b2b6b8597e4003cf2ccc4613
Update AssemblyInfo.cs
NLog/NLog.Web
NLog.Web/Properties/AssemblyInfo.cs
NLog.Web/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("NLo...
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("NLo...
bsd-3-clause
C#
dddf1f98354fb929d80236650ce5ae672568f2ec
Update CameraMovement.cs
highnet/Java-101,highnet/Java-101
Unity/CameraMovement.cs
Unity/CameraMovement.cs
using UnityEngine; using System.Collections; public class CameraMovement : MonoBehaviour { public GameObject player; //Public variable to store a reference to the player game object private Vector3 offset; //Private variable to store the offset distance between the player and camera // Us...
mit
C#
f555e3f1f7cf48ccfb8aa5dc0d097db9e796c9d3
Bump version to 1.3.1
kendallb/PreMailer.Net,rohk/PreMailer.Net,CarterTsai/PreMailer.Net,milkshakesoftware/PreMailer.Net,CodeAnimal/PreMailer.Net,tobio/PreMailer.Net
PreMailer.Net/GlobalAssemblyInfo.cs
PreMailer.Net/GlobalAssemblyInfo.cs
using System; using System.Reflection; using System.Runtime.InteropServices; [assembly: ComVisible(false)] [assembly: CLSCompliant(true)] [assembly: AssemblyProduct("PreMailer.Net")] [assembly: AssemblyCompany("Milkshake Software")] [assembly: AssemblyCopyright("Copyright © Milkshake Software 2015")] [assembly: Ass...
using System; using System.Reflection; using System.Runtime.InteropServices; [assembly: ComVisible(false)] [assembly: CLSCompliant(true)] [assembly: AssemblyProduct("PreMailer.Net")] [assembly: AssemblyCompany("Milkshake Software")] [assembly: AssemblyCopyright("Copyright © Milkshake Software 2015")] [assembly: Ass...
mit
C#
fa31b3ffd36419e59b4a9df5b1510d8c45a27bad
handle a null SHA when showing a build
half-ogre/qed,Haacked/qed
RequestHandlers/GetBuild.cs
RequestHandlers/GetBuild.cs
using System; using System.Collections.Generic; using System.Threading.Tasks; using fn = qed.Functions; namespace qed { public static partial class Handlers { public static async Task GetBuild( IDictionary<string, object> environment, dynamic @params, Func<IDictiona...
using System; using System.Collections.Generic; using System.Threading.Tasks; using fn = qed.Functions; namespace qed { public static partial class Handlers { public static async Task GetBuild( IDictionary<string, object> environment, dynamic @params, Func<IDictiona...
mit
C#
df5d23242146ea0b205a89253a2cf7c6e662931c
Update StrictFakeSpecs to Given/When/Then language
thomaslevesque/FakeItEasy,FakeItEasy/FakeItEasy,blairconrad/FakeItEasy,FakeItEasy/FakeItEasy,thomaslevesque/FakeItEasy,blairconrad/FakeItEasy,adamralph/FakeItEasy,adamralph/FakeItEasy
tests/FakeItEasy.Specs/StrictFakeSpecs.cs
tests/FakeItEasy.Specs/StrictFakeSpecs.cs
namespace FakeItEasy.Specs { using System; using FakeItEasy.Tests.TestHelpers; using FluentAssertions; using Xbehave; using Xunit; public static class StrictFakeSpecs { public interface IMyInterface { void DoIt(Guid id); } [Scenari...
namespace FakeItEasy.Specs { using System; using FakeItEasy.Tests.TestHelpers; using FluentAssertions; using Xbehave; using Xunit; public interface IMyInterface { void DoIt(Guid id); } public static class StrictFakeSpecs { [Scenario] publ...
mit
C#
f2ea5228d2549cb9e8aca84008c12810340128c5
Add documentation
killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity
Assets/MixedRealityToolkit.Tools/ReserializeAssetsUtility/ReserializeAssetsUtility.cs
Assets/MixedRealityToolkit.Tools/ReserializeAssetsUtility/ReserializeAssetsUtility.cs
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System.Collections.Generic; using UnityEditor; namespace Microsoft.MixedReality.Toolkit.Utilities.Editor { /// <summary> /// Adds menu items to automa...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System.Collections.Generic; using UnityEditor; using UnityEngine; namespace Microsoft.MixedReality.Toolkit.Utilities.Editor { public class ReserializeUtil...
mit
C#
f99099c016158e1ad78874b814ec4a81737d7330
Check for an exact match of item name
PhannGor/unity3d-rainbow-folders
Assets/RainbowItems/Editor/Settings/CustomBrowserIconSettings.cs
Assets/RainbowItems/Editor/Settings/CustomBrowserIconSettings.cs
/* * 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 * distrib...
/* * 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 * distrib...
apache-2.0
C#
537b9d181adf5f009ab7dad834b35ef21adac747
change interface alert
Appleseed/base,Appleseed/base
Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Model/IAlert.cs
Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Model/IAlert.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Appleseed.Base.Alerts.Model { interface IAlert { List<UserAlert> GetUserAlerts(); JSONRootObject GetAlert(string query); Task SendAlert(UserAlert uAlert, strin...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Appleseed.Base.Alerts.Model { interface IAlert { List<UserAlert> GetUserAlerts(); JSONRootObject GetAlert(string query); Task SendAlert(string email, string li...
apache-2.0
C#
787e5d861941c4fd04d147ffba697a02be3918f3
update help
Lone-Coder/letsencrypt-win-simple
src/main/Plugins/InstallationPlugins/Script/ScriptOptionsFactory.cs
src/main/Plugins/InstallationPlugins/Script/ScriptOptionsFactory.cs
using PKISharp.WACS.DomainObjects; using PKISharp.WACS.Extensions; using PKISharp.WACS.Plugins.Base.Factories; using PKISharp.WACS.Services; using System; namespace PKISharp.WACS.Plugins.InstallationPlugins { internal class ScriptOptionsFactory : InstallationPluginFactory<Script, ScriptOptions> { publ...
using PKISharp.WACS.DomainObjects; using PKISharp.WACS.Extensions; using PKISharp.WACS.Plugins.Base.Factories; using PKISharp.WACS.Services; using System; namespace PKISharp.WACS.Plugins.InstallationPlugins { internal class ScriptOptionsFactory : InstallationPluginFactory<Script, ScriptOptions> { publ...
apache-2.0
C#
921f17c3da17e0f71262885cf8a4c6691daad8cd
update packages
hahoyer/reni.cs,hahoyer/reni.cs,hahoyer/reni.cs
src/reni2/ReniObjectExtender.cs
src/reni2/ReniObjectExtender.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using hw.DebugFormatter; using Reni.Formatting; using Reni.TokenClasses; namespace Reni { static class Extension { // will throw an exception if not a ReniObject internal static int GetObjectId(this obj...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using hw.DebugFormatter; using Reni.Formatting; using Reni.TokenClasses; namespace Reni { static class Extension { [DebuggerHidden] public static void StopByObjectId(this object t, int objectId) ...
mit
C#
b0b514a85e89867359f19fa1cc321ed427973d6d
Remove extra line break
TwilioDevEd/api-snippets,teoreteetik/api-snippets,TwilioDevEd/api-snippets,teoreteetik/api-snippets,teoreteetik/api-snippets,TwilioDevEd/api-snippets,teoreteetik/api-snippets,TwilioDevEd/api-snippets,teoreteetik/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snippets,TwilioDevEd/api-snip...
lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.cs
lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.cs
using Newtonsoft.Json; using RestSharp; using RestSharp.Authenticators; using Newtonsoft.Json.Serialization; // Download the twilio-csharp library from twilio.com/docs/csharp/install using System; class Example { static void Main(string[] args) { // The C# helper library will support Add-ons in June 2016, for...
using Newtonsoft.Json; using RestSharp; using RestSharp.Authenticators; using Newtonsoft.Json.Serialization; // Download the twilio-csharp library from twilio.com/docs/csharp/install using System; class Example { static void Main(string[] args) { // The C# helper library will support Add-ons in June 2016, fo...
mit
C#
1b6021a8a88942d3a7cbf8f65b765ba6670d1aed
Fix #142: Sorting in UI is not culture aware
tom-englert/ResXResourceManager
ResXManager.View/Visuals/ShellView.xaml.cs
ResXManager.View/Visuals/ShellView.xaml.cs
namespace tomenglertde.ResXManager.View.Visuals { using System; using System.ComponentModel.Composition; using System.ComponentModel.Composition.Hosting; using System.Diagnostics.Contracts; using System.Globalization; using System.Windows.Markup; using JetBrains.Annotations; ...
namespace tomenglertde.ResXManager.View.Visuals { using System; using System.ComponentModel.Composition; using System.ComponentModel.Composition.Hosting; using System.Diagnostics.Contracts; using JetBrains.Annotations; using tomenglertde.ResXManager.Infrastructure; using TomsT...
mit
C#
1658549ab6d8bd4f3288f08c8a82d7e18e10882d
Update ConvertingColumnChartToImage.cs
aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,ma...
Examples/CSharp/Articles/ConvertExcelChartToImage/ConvertingColumnChartToImage.cs
Examples/CSharp/Articles/ConvertExcelChartToImage/ConvertingColumnChartToImage.cs
using System.IO; using Aspose.Cells; namespace Aspose.Cells.Examples.Articles.ConvertExcelChartToImage { public class ConvertingColumnChartToImage { public static void Main(string[] args) { //ExStart:1 // The path to the documents directory. string dataDir =...
using System.IO; using Aspose.Cells; namespace Aspose.Cells.Examples.Articles.ConvertExcelChartToImage { public class ConvertingColumnChartToImage { public static void Main(string[] args) { // The path to the documents directory. string dataDir = Aspose.Cells.Examples.U...
mit
C#
6188c4087e7608590ee7fa5fbd33c2826b91ce13
Add comment
charlenni/Mapsui,charlenni/Mapsui
Samples/Mapsui.Samples.Maui/MauiProgram.cs
Samples/Mapsui.Samples.Maui/MauiProgram.cs
using SkiaSharp.Views.Maui.Controls.Hosting; namespace Mapsui.Samples.Maui { public static class MauiProgram { public static MauiApp CreateMauiApp() { var builder = MauiApp.CreateBuilder(); builder .UseMauiApp<App>() // Without the line b...
using SkiaSharp.Views.Maui.Controls.Hosting; namespace Mapsui.Samples.Maui { public static class MauiProgram { public static MauiApp CreateMauiApp() { var builder = MauiApp.CreateBuilder(); builder .UseMauiApp<App>() .UseSkiaSharp() ...
mit
C#
b30d2462c38ce79e275564db7cbd21afe779141a
Fix bug in test which made it look like it failed
csf-dev/CSF.Screenplay,csf-dev/CSF.Screenplay,csf-dev/CSF.Screenplay
Tests/CSF.Screenplay.SpecFlow.Tests/ResolvingATestRunnerSteps.cs
Tests/CSF.Screenplay.SpecFlow.Tests/ResolvingATestRunnerSteps.cs
using System; using TechTalk.SpecFlow; using NUnit.Framework; namespace CSF.Screenplay.SpecFlow.Tests { [Binding] public class ResolvingATestRunnerSteps { readonly Lazy<ITestRunner> testRunner; readonly Lazy<BindingWhichDerivesFromSteps> stepsBinding; readonly ScenarioContext context; [Given("I...
using System; using TechTalk.SpecFlow; using NUnit.Framework; namespace CSF.Screenplay.SpecFlow.Tests { [Binding] public class ResolvingATestRunnerSteps { readonly Lazy<ITestRunner> testRunner; readonly Lazy<BindingWhichDerivesFromSteps> stepsBinding; readonly ScenarioContext context; [Given("I...
mit
C#
f292872f6c45972b1d10b88e98b277183a140f64
Add xmldoc and TODO comment
smoogipooo/osu-framework,peppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ppy/osu-framework,ppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,ZLima12/osu-framework
osu.Framework/Utils/ThrowHelper.cs
osu.Framework/Utils/ThrowHelper.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 enable using System; namespace osu.Framework.Utils { /// <summary> /// Helper class for throwing exceptions in isolated methods, for cases where metho...
// 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 enable using System; namespace osu.Framework.Utils { public static class ThrowHelper { public static void ThrowInvalidOperationException(strin...
mit
C#
3d59e6fee926d487c7c2f11e187291aff1f829d4
Fix indexing bug in MonthViewModel.
jakubfijalkowski/studentscalendar
StudentsCalendar.UI/Main/MonthViewModel.cs
StudentsCalendar.UI/Main/MonthViewModel.cs
using System; using System.Collections.Generic; using System.Linq; using Caliburn.Micro; using NodaTime; using StudentsCalendar.Core; using StudentsCalendar.UI.Services; namespace StudentsCalendar.UI.Main { /// <summary> /// Widok miesiąca podzielonego na tygodnie. Pozwala na wyświetlenie aktualnego tygodnia i kilk...
using System; using System.Collections.Generic; using System.Linq; using Caliburn.Micro; using NodaTime; using StudentsCalendar.Core; using StudentsCalendar.UI.Services; namespace StudentsCalendar.UI.Main { /// <summary> /// Widok miesiąca podzielonego na tygodnie. Pozwala na wyświetlenie aktualnego tygodnia i kilk...
mit
C#
9489f5c1bb9ffee11793028641a1b254a928e071
Fix simple syntax
erlingsjostrom/TESS-V2,erlingsjostrom/TESS-V2,erlingsjostrom/TESS-V2,erlingsjostrom/TESS-V2,erlingsjostrom/TESS-V2
TestRestfulAPI/App_Start/EntityMappings.cs
TestRestfulAPI/App_Start/EntityMappings.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Http; using AutoMapper; using TestRestfulAPI.Entities.TESS; namespace TestRestfulAPI { public class EntityMappings { public static void Register(HttpConfiguration config) { Mapper....
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Http; using AutoMapper; using TestRestfulAPI.Entities.TESS; namespace TestRestfulAPI { public class EntityMappings { public static void Register(HttpConfiguration config) { Mapper....
mit
C#
016684b52d65db6e1e94723f134a4d03dc16549a
Remove unreachable code
peppy/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu,peppy/osu,smoogipooo/osu,peppy/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu
osu.Game/Skinning/LegacySkinResourceStore.cs
osu.Game/Skinning/LegacySkinResourceStore.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Framework.Extensions; using osu.Framework.IO.Stores; using osu.Game.Database; using osu.Game....
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Framework.Extensions; using osu.Framework.IO.Stores; using osu.Game.Database; using osu.Game....
mit
C#
cf68cd48bacc89f38cec72c29b5a4f0a22d94177
remove array
Appleseed/base,Appleseed/base
Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Model/SolrResponseItem.cs
Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Model/SolrResponseItem.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Appleseed.Base.Alerts.Model { class SolrResponseItem { public string id { get; set; } public string item_type { get; set; } public string address_1 { get; set;...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Appleseed.Base.Alerts.Model { class SolrResponseItem { public string id { get; set; } public string item_type { get; set; } public string address_1 { get; set;...
apache-2.0
C#
051fd0e957552a9444c488fc095805d064967d65
Add xml documentation
naoey/osu-framework,Nabile-Rahmani/osu-framework,smoogipooo/osu-framework,paparony03/osu-framework,default0/osu-framework,peppy/osu-framework,Nabile-Rahmani/osu-framework,default0/osu-framework,DrabWeb/osu-framework,naoey/osu-framework,ppy/osu-framework,ZLima12/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framewor...
osu.Framework/MathUtils/Precision.cs
osu.Framework/MathUtils/Precision.cs
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE using OpenTK; using System; namespace osu.Framework.MathUtils { public static class Precision { public const float FLOAT_EPSILON = ...
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE using OpenTK; using System; namespace osu.Framework.MathUtils { public static class Precision { public const float FLOAT_EPSILON = ...
mit
C#
b3ac544d655e6846a94b6bf2d31332b471d90de4
Revert "Consider `UnknownMod` to be "playable in multiplayer""
ppy/osu,peppy/osu,ppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu
osu.Game/Rulesets/Mods/UnknownMod.cs
osu.Game/Rulesets/Mods/UnknownMod.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Rulesets.Mods { public class UnknownMod : Mod { /// <summary> /// The acronym of the mod which could not be resolved. /...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Rulesets.Mods { public class UnknownMod : Mod { /// <summary> /// The acronym of the mod which could not be resolved. /...
mit
C#
ae1c6fa617407bda0f67855806dba1c72448ddc2
Update QuickFind.cs
qdimka/Algorithms,qdimka/Algorithms,Oscarbralo/Algorithms,qdimka/Algorithms,Oscarbralo/Algorithms,Oscarbralo/Algorithms
CSharpQuickFind/QuickFind.cs
CSharpQuickFind/QuickFind.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace QuickFind { public class QuickFindAlgorithm { private int[] id; //Initialize the quick find data structure public QuickFind(int n) { ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace QuickFind { public class QuickFind { private int[] id; //Initialize the quick find data structure public QuickFind(int n) { ...
mit
C#
a128e1a43a225878898b2553d7db582645b1565a
Update to Abp.Zero 0.7.0.0
Jerome2606/module-zero,lemestrez/module-zero,lemestrez/module-zero,volkd/module-zero,AndHuang/module-zero,ilyhacker/module-zero,chilin/module-zero,asauriol/module-zero,abdllhbyrktr/module-zero,AndHuang/module-zero,daywrite/module-zero,volkd/module-zero,CooperLiu/module-zero,aspnetboilerplate/module-zero,Jerome2606/modu...
sample/ModuleZeroSampleProject.Core/Authorization/RoleManager.cs
sample/ModuleZeroSampleProject.Core/Authorization/RoleManager.cs
using Abp.Authorization; using Abp.Authorization.Roles; using Abp.Domain.Uow; using Abp.Zero.Configuration; using ModuleZeroSampleProject.MultiTenancy; using ModuleZeroSampleProject.Users; namespace ModuleZeroSampleProject.Authorization { public class RoleManager : AbpRoleManager<Tenant, Role, User> { ...
using Abp.Authorization; using Abp.Authorization.Roles; using Abp.Domain.Uow; using Abp.Zero.Configuration; using ModuleZeroSampleProject.MultiTenancy; using ModuleZeroSampleProject.Users; namespace ModuleZeroSampleProject.Authorization { public class RoleManager : AbpRoleManager<Tenant, Role, User> { ...
mit
C#
75a2beb044a82fec18f7f7f0504f6530c6bd01fc
Update KieranJacobsen.cs
planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell
src/Firehose.Web/Authors/KieranJacobsen.cs
src/Firehose.Web/Authors/KieranJacobsen.cs
using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; using System.Web; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class KieranJacobsen : IAmAMicrosoftMVP, IFilterMyBlogPosts { public string FirstName => "Kieran"; ...
using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; using System.Web; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class KieranJacobsen : IAmACommunityMember, IFilterMyBlogPosts { public string FirstName => "Kieran"; ...
mit
C#
c64ea0686dd7eb265403a7093575e1adc0931ce6
Remove already included mvp status (#483)
planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin
src/Firehose.Web/Authors/MartijnVanDijk.cs
src/Firehose.Web/Authors/MartijnVanDijk.cs
using System; using System.Collections.Generic; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class MartijnVanDijk : IAmAMicrosoftMVP, IAmAXamarinMVP { public string FirstName => "Martijn"; public string LastName => "van Dijk"; public string StateOrRegion => "Amsterdam...
using System; using System.Collections.Generic; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class MartijnVanDijk : IAmAMicrosoftMVP, IAmAXamarinMVP { public string FirstName => "Martijn"; public string LastName => "van Dijk"; public string StateOrRegion => "Amsterdam...
mit
C#
56fb4c4e69b175ed3e27953098cd9f97e96f65fc
Update to 1.2
PowerOfCode/Eto,l8s/Eto,PowerOfCode/Eto,l8s/Eto,bbqchickenrobot/Eto-1,PowerOfCode/Eto,bbqchickenrobot/Eto-1,l8s/Eto,bbqchickenrobot/Eto-1
Source/GlobalAssemblyInfo.cs
Source/GlobalAssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyCompany("Picoe Software Solutions Inc.")] [assembly: AssemblyProduct("")] [assembly: AssemblyCopyright("(c) 2010-2013 by Curtis Wensley aka Eto")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: AssemblyVer...
using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyCompany("Picoe Software Solutions Inc.")] [assembly: AssemblyProduct("")] [assembly: AssemblyCopyright("(c) 2010-2013 by Curtis Wensley aka Eto")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: AssemblyVer...
bsd-3-clause
C#
2c05642a74989200ccb88febbe326e1b694cccb7
Make IProjection interface public
huysentruitw/projecto
src/Projecto/Infrastructure/IProjection.cs
src/Projecto/Infrastructure/IProjection.cs
/* * Copyright 2017 Wouter Huysentruit * * 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 agre...
/* * Copyright 2017 Wouter Huysentruit * * 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 agre...
apache-2.0
C#
78d19bd572765601fa4bfa30a136d3b6f6dc8b5d
Add External Access!
seyedk/Staffing
Staffing/Staffing/Program.cs
Staffing/Staffing/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Staffing { class Program { static void Main(string[] args) { } static void DoSomthing() { Console.WriteLine("I'm doing ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Staffing { class Program { static void Main(string[] args) { } static void DoSomthing() { Console.WriteLine("I'm doing ...
mit
C#
73b082b1d3e5bc783447835d163349140e4669da
Remove unused using directives
aliencube/Aliencube.WebApi.Hal,aliencube/Aliencube.WebApi.Hal
src/Aliencube.WebApi.App/App_Start/WebApiConfig.cs
src/Aliencube.WebApi.App/App_Start/WebApiConfig.cs
using System; using System.Web.Http; using Aliencube.WebApi.Hal.Configs; using Autofac; using Autofac.Integration.WebApi; using Owin; namespace Aliencube.WebApi.App { /// <summary> /// This represents the config entity for Web API. /// </summary> public static class WebApiConfig { /// <...
using System; using System.Web.Http; using Aliencube.WebApi.Hal.Configs; using Aliencube.WebApi.Hal.Formatters; using Autofac; using Autofac.Integration.WebApi; using Newtonsoft.Json; using Newtonsoft.Json.Serialization; using Owin; namespace Aliencube.WebApi.App { /// <summary> /// This represents the co...
mit
C#
e80e413cf001bd77bec30688ae2c56c1c5aa2d6b
Add sumary and remark to class header
wieslawsoltes/Perspex,Perspex/Perspex,jkoritzinsky/Perspex,jkoritzinsky/Avalonia,SuperJMN/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,SuperJMN/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,w...
src/Avalonia.Base/Metadata/XmlnsPrefixAttribute.cs
src/Avalonia.Base/Metadata/XmlnsPrefixAttribute.cs
using System; namespace Avalonia.Metadata { /// <summary> /// Use to predefine the prefix associated to an xml namespace in a xaml file /// </summary> /// <remarks> /// example: /// [assembly: XmlnsPrefix("https://github.com/avaloniaui", "av")] /// xaml: /// xmlns:av="https://github.co...
using System; namespace Avalonia.Metadata { [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] public sealed class XmlnsPrefixAttribute : Attribute { /// <summary> /// Constructor /// </summary> /// <param name="xmlNamespace">XML namespce</param> /// ...
mit
C#
b9a9685f3ff842896b1a407f09332c2749b35a3e
Bump version
canton7/SyncTrayzor,canton7/SyncTrayzor,canton7/SyncTrayzor
src/SyncTrayzor/Properties/AssemblyInfo.cs
src/SyncTrayzor/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
mit
C#
48a6ee61e9fbddf798c280753b3b23be4151423c
Add 'Open Gmail' to file menu.
joeyespo/google-apps-client
GoogleAppsClient/MainForm.cs
GoogleAppsClient/MainForm.cs
using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Windows.Forms; namespace GoogleAppsClient { public partial class MainForm : Form { const string BASE_URL = "https://mail.google.com/"; const string DOMAIN_SEPARATOR = "a/"; ...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Windows.Forms; namespace GoogleAppsClient { public partial class MainForm : Form { const string BASE_URL = "https://mail.google.com/"; const string DOMAIN_SEPARATOR = "a/"; ...
mit
C#
a09552fc0a8e719dd26dfb4097bb07db1f6044c2
remove unused attribute
petrhaus/RedCapped,AppSpaceIT/RedCapped
src/RedCapped.Core/Header.cs
src/RedCapped.Core/Header.cs
using System; using MongoDB.Bson.Serialization.Attributes; namespace RedCapped.Core { public class Header<T> { [BsonElement("v")] public string Version => "1"; [BsonElement("t")] public string Type => typeof(T).FullName; [BsonElement("q")] public QoS QoS { get...
using System; using MongoDB.Bson.Serialization.Attributes; namespace RedCapped.Core { public class Header<T> { [BsonElement("v")] public string Version => "1"; [BsonElement("t")] public string Type => typeof(T).FullName; [BsonElement("q")] public QoS QoS { get...
apache-2.0
C#
ffdae4ee002bc9d94c37769620abe289bcf8645b
update link
ucdavis/Badges,ucdavis/Badges
Badges/Views/Shared/_ExperienceWork.cshtml
Badges/Views/Shared/_ExperienceWork.cshtml
@model Badges.Models.Shared.ExperienceViewModel <div id="work-container" class="container work"> <div class="row"> @foreach (var work in @Model.SupportingWorks) { @* <div class="col-md-4"> *@ <div class="@work.Type work-item-box"> @Html.Partial("_View...
@model Badges.Models.Shared.ExperienceViewModel <div id="work-container" class="container work"> <div class="row"> @foreach (var work in @Model.SupportingWorks) { @* <div class="col-md-4"> *@ <div class="@work.Type work-item-box"> @Html.Partial("_View...
mpl-2.0
C#
75433726478b98326c8eefb594b15f458a66b982
Set Variable explorer tool window icon (issue #308)
MikhailArkhipov/RTVS,MikhailArkhipov/RTVS,AlexanderSher/RTVS,karthiknadig/RTVS,karthiknadig/RTVS,AlexanderSher/RTVS,karthiknadig/RTVS,MikhailArkhipov/RTVS,AlexanderSher/RTVS,karthiknadig/RTVS,karthiknadig/RTVS,AlexanderSher/RTVS,karthiknadig/RTVS,MikhailArkhipov/RTVS,MikhailArkhipov/RTVS,AlexanderSher/RTVS,MikhailArkhi...
src/Package/Impl/DataInspect/VariableWindowPane.cs
src/Package/Impl/DataInspect/VariableWindowPane.cs
using System.Runtime.InteropServices; using Microsoft.VisualStudio.Imaging; using Microsoft.VisualStudio.Shell; namespace Microsoft.VisualStudio.R.Package.DataInspect { [Guid("99d2ea62-72f2-33be-afc8-b8ce6e43b5d0")] public class VariableWindowPane : ToolWindowPane { public VariableWindowPane() { ...
using System.Runtime.InteropServices; using Microsoft.VisualStudio.Shell; namespace Microsoft.VisualStudio.R.Package.DataInspect { [Guid("99d2ea62-72f2-33be-afc8-b8ce6e43b5d0")] public class VariableWindowPane : ToolWindowPane { public VariableWindowPane() { Caption = Resources.VariableWin...
mit
C#
51ad0f1ce0d5d2f9a55d943504136042469a3bb5
make save data string[]
chitoku-k/CoreTweet,azyobuzin/LibAzyotter
misc/coretweet_for_shell.cs
misc/coretweet_for_shell.cs
// CoreTweet for Mono C# Shell // // Required Files: // CoreTweet.dll Newtonsoft.Json.dll // // * Place this script and required dlls into $HOME/.scripts/csharp . // * You need an internet connection to use this (at least the first time). // * You also need a consumer key and a consumer secret key. // * Your data will ...
// CoreTweet for Mono C# Shell // // Required Files: // CoreTweet.dll Newtonsoft.Json.dll // // * Place this script and required dlls into $HOME/.scripts/csharp . // * You need an internet connection to use this (at least the first time). // * You also need a consumer key and a consumer secret key. // * Your data will ...
mit
C#
bca5e7f18e2877120d82f71b187a809ca980127f
add Size field to Screen (#575)
prime31/Nez,prime31/Nez,prime31/Nez,ericmbernier/Nez
Nez.Portable/Utils/Screen.cs
Nez.Portable/Utils/Screen.cs
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; namespace Nez { public static class Screen { static internal GraphicsDeviceManager _graphicsManager; internal static void Initialize(GraphicsDeviceManager graphicsManager) => _graphicsManager = graphicsManager; /// <summary> /// width...
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; namespace Nez { public static class Screen { static internal GraphicsDeviceManager _graphicsManager; internal static void Initialize(GraphicsDeviceManager graphicsManager) => _graphicsManager = graphicsManager; /// <summary> /// width...
mit
C#
1997dc8ca09c136134efe592020126da13897a08
make readonly settings
hienng/NyaaDB,hienng/NyaaDB
NyaaDB/UI/MainWindow.xaml.cs
NyaaDB/UI/MainWindow.xaml.cs
using NyaaDB.Impl.DBIntegration; using NyaaDB.Impl.Settings; using NyaaDB.UI.Api.Settings; 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.D...
using NyaaDB.Impl.DBIntegration; using NyaaDB.Impl.Settings; using NyaaDB.UI.Api.Settings; 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.D...
mit
C#
37798424947367cba14ea79443942d0fd9ecf8a1
Update AssemblyInfo.cs
nathannfan/azure-sdk-for-net,AsrOneSdk/azure-sdk-for-net,btasdoven/azure-sdk-for-net,yugangw-msft/azure-sdk-for-net,samtoubia/azure-sdk-for-net,r22016/azure-sdk-for-net,peshen/azure-sdk-for-net,ahosnyms/azure-sdk-for-net,yaakoviyun/azure-sdk-for-net,atpham256/azure-sdk-for-net,MichaelCommo/azure-sdk-for-net,olydis/azur...
src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/Properties/AssemblyInfo.cs
src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/Properties/AssemblyInfo.cs
// // Copyright (c) Microsoft. 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 applicable la...
// // Copyright (c) Microsoft. 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 applicable la...
mit
C#
fac0e67cf772c05ba092ad5515628335c556f220
Update assembly version to 4.0.0 (+semver: major)
ZEISS-PiWeb/PiWeb-Api
src/Properties/AssemblyInfo.cs
src/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; [assembly: AssemblyCompany( "Carl Zeiss Innovationszentrum für Messtechnik GmbH" )] [assembly: AssemblyProduct( "ZEISS PiWeb Api" )] [assembly: AssemblyCopyright( "Copyright © 2019 Carl Zeiss Innovationszentrum für Messtechnik GmbH" )] [assembly: AssemblyTrademark...
using System.Reflection; using System.Resources; [assembly: AssemblyCompany( "Carl Zeiss Innovationszentrum für Messtechnik GmbH" )] [assembly: AssemblyProduct( "ZEISS PiWeb Api" )] [assembly: AssemblyCopyright( "Copyright © 2019 Carl Zeiss Innovationszentrum für Messtechnik GmbH" )] [assembly: AssemblyTrademark...
bsd-3-clause
C#
496eba25937e67f585ac9551b154a26a176c9a7b
Update version info for 2016.1.0-beta1.
miniter/SSH.NET,sshnet/SSH.NET,Bloomcredit/SSH.NET
src/Renci.SshNet/Properties/CommonAssemblyInfo.cs
src/Renci.SshNet/Properties/CommonAssemblyInfo.cs
using System; using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyDescription("SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.")] [assembly: AssemblyCompany("Renci")] [assembly: AssemblyProduct("SSH.NET")] [assembly: AssemblyCopyright("Copyright Renci 2010-20...
using System; using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyDescription("SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.")] [assembly: AssemblyCompany("Renci")] [assembly: AssemblyProduct("SSH.NET")] [assembly: AssemblyCopyright("Copyright Renci 2010-20...
mit
C#
bdee855a8038529fccb7b89127c67aa6c23f73d8
Clarify event type for DNSLookup example.
zacbrown/hiddentreasure-etw-demo
hiddentreasure-etw-demo/DNSLookup.cs
hiddentreasure-etw-demo/DNSLookup.cs
using System; using O365.Security.ETW; namespace hiddentreasure_etw_demo { public static class DNSLookup { public static UserTrace CreateTrace() { var filter = new EventFilter(Filter .EventIdIs(3018) // cached lookup .Or(Filter.EventIdIs(3020))); // ...
using System; using O365.Security.ETW; namespace hiddentreasure_etw_demo { public static class DNSLookup { public static UserTrace CreateTrace() { var filter = new EventFilter(Filter .EventIdIs(3018) .Or(Filter.EventIdIs(3020))); filter....
mit
C#
bebb47f5cfb0b549e4625b0d0a11ba05bdb1586a
Allow specifying metadata for skip reason.
mmitche/buildtools,stephentoub/buildtools,jthelin/dotnet-buildtools,AlexGhiondea/buildtools,roncain/buildtools,karajas/buildtools,MattGal/buildtools,JeremyKuhne/buildtools,ChadNedzlek/buildtools,AlexGhiondea/buildtools,crummel/dotnet_buildtools,MattGal/buildtools,ChadNedzlek/buildtools,joperezr/buildtools,nguerrera/bui...
src/xunit.netcore.extensions/Attributes/SkipOnTargetFrameworkAttribute.cs
src/xunit.netcore.extensions/Attributes/SkipOnTargetFrameworkAttribute.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using Xunit.Sdk; namespace Xunit { /// <summary> /// Apply this attribute to your test metho...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using Xunit.Sdk; namespace Xunit { /// <summary> /// Apply this attribute to your test metho...
mit
C#
3a66c52e9d54eb3e1d3fe570e69e94e3ff9b4323
Update RebillySubscription.cs
dara123/rebilly-dotnet-client,Rebilly/rebilly-dotnet-client
Library/Rebilly/RebillySubscription.cs
Library/Rebilly/RebillySubscription.cs
using System; using System.Net; using System.IO; using System.Linq; using System.Text; using System.Collections.Generic; using System.Threading.Tasks; using Newtonsoft.Json; namespace Rebilly { public class RebillySubscription : RebillyRequest { public string subscriptionId = null; public stri...
using System; using System.Net; using System.IO; using System.Linq; using System.Text; using System.Collections.Generic; using System.Threading.Tasks; using Newtonsoft.Json; namespace Rebilly { public class RebillySubscription : RebillyRequest { public string subscriptionId = null; public stri...
mit
C#
4fe4a3731ff9794a2d285e6c0266f79c1299f4cd
Revert changes outside of KnifeDodge
NitorInc/NitoriWare,NitorInc/NitoriWare,Barleytree/NitoriWare,Barleytree/NitoriWare
Assets/Resources/Microgames/_Finished/Spaceship/Scripts/SpaceshipRocket.cs
Assets/Resources/Microgames/_Finished/Spaceship/Scripts/SpaceshipRocket.cs
using UnityEngine; using System.Collections; public class SpaceshipRocket : MonoBehaviour { public Rigidbody2D[] spaceshipBodies; public Rigidbody2D leftBody, rightBody; public ParticleSystem explosionParticles, liftoffParticles; public SpaceshipBar bar; public Animator shipAnimator, sceneAnimator; public Audi...
using UnityEngine; using System.Collections; public class SpaceshipRocket : MonoBehaviour { public Rigidbody2D[] spaceshipBodies; public Rigidbody2D leftBody, rightBody; public ParticleSystem explosionParticles, liftoffParticles; public SpaceshipBar bar; public Animator shipAnimator, sceneAnimator; public Audi...
mit
C#
eac709f8095ca25f0fd3de7514c54db69ff2fdac
Fix .ConfigureAwait(false) -> .DefaultAwait() in HttpResponseMessageJsonExtensions
vkhorikov/CSharpFunctionalExtensions
CSharpFunctionalExtensions/Result/Dto/HttpResponseMessageJsonExtensions.cs
CSharpFunctionalExtensions/Result/Dto/HttpResponseMessageJsonExtensions.cs
#nullable enable using System.Text.Json; using System.Threading.Tasks; using CSharpFunctionalExtensions; namespace System.Net.Http.Json { public static class HttpResponseMessageJsonExtensions { public static async Task<Result> ReadResult(this HttpResponseMessage? response) { if (r...
#nullable enable using System.Text.Json; using System.Threading.Tasks; using CSharpFunctionalExtensions; namespace System.Net.Http.Json { public static class HttpResponseMessageJsonExtensions { public static async Task<Result> ReadResult(this HttpResponseMessage? response) { if (r...
mit
C#
7a76b6fcfd48ad392019fa62ca9e2c8ce7eb0d9a
Add new science types
Kerbas-ad-astra/Orbital-Science,DMagic1/Orbital-Science
Source/DMScienceContainer.cs
Source/DMScienceContainer.cs
#region license /* DMagic Orbital Science - DMScienceContainer * Object to store experiment properties * * Copyright (c) 2014, David Grandy <david.grandy@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the fol...
#region license /* DMagic Orbital Science - DMScienceContainer * Object to store experiment properties * * Copyright (c) 2014, David Grandy <david.grandy@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the fol...
bsd-3-clause
C#
2b3e11fc804e8af0eef0bdaf4e1e1eefcdf533b8
Update PermissionHandler.cs (#5940)
xkproject/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,petedavis/Orchard2,OrchardCMS/Brochard,stevetayloruk/Orchard2,xkproject/Orchard2,xkproject/Orchard2,xkproject/Orchard2,OrchardCMS/Brochard,petedavis/Orchard2,OrchardCMS/Brochard,stevetayloruk/Orchard2,petedavis/Orchar...
src/OrchardCore/OrchardCore.Infrastructure/Security/AuthorizationHandlers/PermissionHandler.cs
src/OrchardCore/OrchardCore.Infrastructure/Security/AuthorizationHandlers/PermissionHandler.cs
using System.Threading.Tasks; using Microsoft.AspNetCore.Authorization; using OrchardCore.Security.Permissions; namespace OrchardCore.Security.AuthorizationHandlers { /// <summary> /// This authorization handler ensures that the user has the required permission. /// </summary> public class PermissionH...
using System.Threading.Tasks; using Microsoft.AspNetCore.Authorization; using OrchardCore.Security.Permissions; namespace OrchardCore.Security.AuthorizationHandlers { /// <summary> /// This authorization handler ensures that the user has the required permission. /// </summary> public class PermissionH...
bsd-3-clause
C#
02450493915678d0ccc497d3874c885aeda3fddf
Update Person_MenuFunctions.cs
NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework
Test/AdventureWorksFunctionalModel/Person/Person_MenuFunctions.cs
Test/AdventureWorksFunctionalModel/Person/Person_MenuFunctions.cs
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. // You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. // Unless requi...
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. // You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. // Unless requi...
apache-2.0
C#
f47f6aa267ad3771121af84420dd10293cb74c84
Fix link open in browsers
ZombieUnicornStudio/Arkapongout
Assets/Scripts/LinkButton.cs
Assets/Scripts/LinkButton.cs
using UnityEngine; public class LinkButton : MonoBehaviour { public void OpenUrl (string url) { if(Application.platform == RuntimePlatform.WebGLPlayer) { Application.ExternalEval("window.open(\"" + url + "\",\"_blank\")"); } else { Application.OpenURL(url); } } }
using UnityEngine; public class LinkButton : MonoBehaviour { public void OpenUrl (string url) { Application.OpenURL(url); } }
mit
C#
6483b5edc778e8fbeb1a0c29d55c150f9d60965e
Add Has method to IPseudoClasses
AvaloniaUI/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia
src/Avalonia.Base/Controls/IPseudoClasses.cs
src/Avalonia.Base/Controls/IPseudoClasses.cs
using Avalonia.Metadata; namespace Avalonia.Controls { /// <summary> /// Exposes an interface for setting pseudoclasses on a <see cref="Classes"/> collection. /// </summary> [NotClientImplementable] public interface IPseudoClasses { /// <summary> /// Adds a pseudoclass to the co...
using Avalonia.Metadata; namespace Avalonia.Controls { /// <summary> /// Exposes an interface for setting pseudoclasses on a <see cref="Classes"/> collection. /// </summary> [NotClientImplementable] public interface IPseudoClasses { /// <summary> /// Adds a pseudoclass to the co...
mit
C#
01c327d3bfb6538a1c08716471974d55c981a74e
Add pressed pseudo class to ListBoxItem.
SuperJMN/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,akrisiun/Perspex,Perspex/Perspex,jkoritzinsky/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,jkoritzinsky/Avalo...
src/Avalonia.Controls/ListBoxItem.cs
src/Avalonia.Controls/ListBoxItem.cs
using Avalonia.Controls.Mixins; using Avalonia.Input; namespace Avalonia.Controls { /// <summary> /// A selectable item in a <see cref="ListBox"/>. /// </summary> public class ListBoxItem : ContentControl, ISelectable { /// <summary> /// Defines the <see cref="IsSelected"/> property...
using Avalonia.Controls.Mixins; namespace Avalonia.Controls { /// <summary> /// A selectable item in a <see cref="ListBox"/>. /// </summary> public class ListBoxItem : ContentControl, ISelectable { /// <summary> /// Defines the <see cref="IsSelected"/> property. /// </summar...
mit
C#
d6f0c653ff42a6df4b46b191c8a9047af4b7959b
Fix underlying type.
gitsno/MySqlConnector,gitsno/MySqlConnector,mysql-net/MySqlConnector,mysql-net/MySqlConnector
src/MySql.Data/Serialization/ServerStatus.cs
src/MySql.Data/Serialization/ServerStatus.cs
using System; namespace MySql.Data.Serialization { [Flags] internal enum ServerStatus : ushort { /// <summary> /// A transaction is active. /// </summary> InTransaction = 1, /// <summary> /// Auto-commit is enabled /// </summary> AutoCommit = 2, MoreResultsExist = 8, NoGoodIndexUsed = ...
using System; namespace MySql.Data.Serialization { [Flags] internal enum ServerStatus : short { /// <summary> /// A transaction is active. /// </summary> InTransaction = 1, /// <summary> /// Auto-commit is enabled /// </summary> AutoCommit = 2, MoreResultsExist = 8, NoGoodIndexUsed = 0...
mit
C#
fed69bc32eeddc05b687184697410075ebf15c15
Revert LocatorRegister sequence
Ullink/gradle-msbuild-plugin
src/main/dotnet/ProjectFileParser/Program.cs
src/main/dotnet/ProjectFileParser/Program.cs
using Microsoft.Build.Construction; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.IO; namespace ProjectFileParser { internal class Program { private static int Main(string[] args) { MSBuildCustomLocator.Register(); using (new ...
using Microsoft.Build.Construction; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.IO; namespace ProjectFileParser { internal class Program { private static int Main(string[] args) { using (new MonoHack()) { MSBu...
apache-2.0
C#
357268ff2f13eeead1aa4a78b8daf7712df59ebc
Add ActionItemSubMenu.ID property
l8s/Eto,PowerOfCode/Eto,PowerOfCode/Eto,bbqchickenrobot/Eto-1,bbqchickenrobot/Eto-1,PowerOfCode/Eto,l8s/Eto,l8s/Eto,bbqchickenrobot/Eto-1
Source/Eto/Forms/Actions/ActionItem.cs
Source/Eto/Forms/Actions/ActionItem.cs
using System; using System.Collections; namespace Eto.Forms { public partial interface IActionItem { void Generate(ToolBar toolBar); int Order { get; } } public abstract partial class ActionItemBase : IActionItem { int order = 500; public abstract void Generate(ToolBar toolBar); public int Orde...
using System; using System.Collections; namespace Eto.Forms { public partial interface IActionItem { void Generate(ToolBar toolBar); int Order { get; } } public abstract partial class ActionItemBase : IActionItem { int order = 500; public abstract void Generate(ToolBar toolBar); public int Orde...
bsd-3-clause
C#
3cce340e3d88f2603d858477a407d2fa71009d71
Add some random shit
wajeehnaeem/TCFPROJECT,wajeehnaeem/TCFPROJECT,wajeehnaeem/TCFPROJECT
TCFPROJECT/Controllers/RandomController.cs
TCFPROJECT/Controllers/RandomController.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace TCFPROJECT.Controllers { public class RandomController : Controller { public ActionResult Index() { ViewBag.Message = "This is some random shit"; return View(); ...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace TCFPROJECT.Controllers { public class RandomController : Controller { public ActionResult Index() { return View(); } } }
apache-2.0
C#
db8371d3afcdc76756078efe915df22e0d66dc6d
Fix crash issue when user didn't install python.
Launchify/Launchify,Launchify/Launchify,gnowxilef/Wox,danisein/Wox,kayone/Wox,qianlifeng/Wox,18098924759/Wox,vebin/Wox,Rovak/Wox,dstiert/Wox,orzFly/Wox,AlexCaranha/Wox,qianlifeng/Wox,kdar/Wox,EmuxEvans/Wox,apprentice3d/Wox,yozora-hitagi/Saber,renzhn/Wox,sanbinabu/Wox,sanbinabu/Wox,Rovak/Wox,qianlifeng/Wox,apprentice3d/...
Wox/PluginLoader/PythonPluginLoader.cs
Wox/PluginLoader/PythonPluginLoader.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using Python.Runtime; using Wox.Plugin; using Wox.Helper; namespace Wox.PluginLoader { public class PythonPluginLoader : BasePluginLoader { public override List<PluginPair> LoadPlugin() { if ...
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using Python.Runtime; using Wox.Plugin; namespace Wox.PluginLoader { public class PythonPluginLoader : BasePluginLoader { public override List<PluginPair> LoadPlugin() { List<PluginPair> plug...
mit
C#
f7e7c0606f37d3c2622bafd1083ce5c38ac2a8b3
Update documentation comment
tgstation/tgstation-server,tgstation/tgstation-server
src/Tgstation.Server.Host/Components/Repository/IGitRemoteAdditionalInformation.cs
src/Tgstation.Server.Host/Components/Repository/IGitRemoteAdditionalInformation.cs
using System.Threading; using System.Threading.Tasks; using Tgstation.Server.Api.Models; using Tgstation.Server.Api.Models.Internal; namespace Tgstation.Server.Host.Components.Repository { /// <summary> /// Additional information from git remotes. /// </summary> public interface IGitRemoteAdditionalInformation :...
using System.Threading; using System.Threading.Tasks; using Tgstation.Server.Api.Models; using Tgstation.Server.Api.Models.Internal; namespace Tgstation.Server.Host.Components.Repository { /// <summary> /// Additional information from git remotes. /// </summary> public interface IGitRemoteAdditionalInformation :...
agpl-3.0
C#
5a2b55bbab1d47bc3b30b26811462fb85c258422
Update MvxFormsDroidPagePresenter.cs
Cheesebaron/Cheesebaron.MvxPlugins,Cheesebaron/Cheesebaron.MvxPlugins,Ideine/Cheesebaron.MvxPlugins,Ideine/Cheesebaron.MvxPlugins
FormsPresenters/Droid/MvxFormsDroidPagePresenter.cs
FormsPresenters/Droid/MvxFormsDroidPagePresenter.cs
// MvxFormsDroidPagePresenter.cs // 2015 (c) Copyright Cheesebaron. http://ostebaronen.dk // Cheesebaron.MvxPlugins.FormsPresenters is licensed using Microsoft Public License (Ms-PL) // Contributions and inspirations noted in readme.md and license.txt // // Project Lead - Tomasz Cielecki, @cheesebaron, mvxplugins@oste...
using Cheesebaron.MvxPlugins.FormsPresenters.Core; using Cirrious.CrossCore; using Cirrious.MvvmCross.Droid.Views; using Cirrious.MvvmCross.ViewModels; using Cirrious.MvvmCross.Views; using System.Threading.Tasks; using Xamarin.Forms; namespace Cheesebaron.MvxPlugins.FormsPresenters.Droid { public class MvxFormsDr...
apache-2.0
C#
eec69df674d92f90f5d5a8c13cf81179836ffc30
Fix test failure After consulting with search team, we can get results needed for this test by searching for "rock,pop" not "rock,pop,2000s"
danhaller/SevenDigital.Api.Wrapper,emashliles/SevenDigital.Api.Wrapper,luiseduardohdbackup/SevenDigital.Api.Wrapper,AnthonySteele/SevenDigital.Api.Wrapper,mattgray/SevenDigital.Api.Wrapper,danbadge/SevenDigital.Api.Wrapper,bnathyuw/SevenDigital.Api.Wrapper,actionshrimp/SevenDigital.Api.Wrapper,raoulmillais/SevenDigital...
src/SevenDigital.Api.Wrapper.Integration.Tests/EndpointTests/TagsEndpoint/ArtistByTagTopTests.cs
src/SevenDigital.Api.Wrapper.Integration.Tests/EndpointTests/TagsEndpoint/ArtistByTagTopTests.cs
using System.Linq; using NUnit.Framework; using SevenDigital.Api.Schema; using SevenDigital.Api.Schema.Tags; namespace SevenDigital.Api.Wrapper.Integration.Tests.EndpointTests.TagsEndpoint { [TestFixture] public class ArtistByTagTopTests { private const string Tags = "rock,pop"; [Test] public v...
using System.Linq; using NUnit.Framework; using SevenDigital.Api.Schema; using SevenDigital.Api.Schema.Tags; namespace SevenDigital.Api.Wrapper.Integration.Tests.EndpointTests.TagsEndpoint { [TestFixture] public class ArtistByTagTopTests { [Test] public void Can_hit_endpoint() { ArtistByTagTop tags = Api...
mit
C#
6cdfbeb0a35ac7d7fc5ff0689e763b1ef3d2743b
Add filter property to most anticipated movies request.
henrikfroehling/TraktApiSharp
Source/Lib/TraktApiSharp/Requests/WithoutOAuth/Movies/Common/TraktMoviesMostAnticipatedRequest.cs
Source/Lib/TraktApiSharp/Requests/WithoutOAuth/Movies/Common/TraktMoviesMostAnticipatedRequest.cs
namespace TraktApiSharp.Requests.WithoutOAuth.Movies.Common { using Base; using Base.Get; using Objects.Basic; using Objects.Get.Movies.Common; internal class TraktMoviesMostAnticipatedRequest : TraktGetRequest<TraktPaginationListResult<TraktMostAnticipatedMovie>, TraktMostAnticipatedMovie> { ...
namespace TraktApiSharp.Requests.WithoutOAuth.Movies.Common { using Base.Get; using Objects.Basic; using Objects.Get.Movies.Common; internal class TraktMoviesMostAnticipatedRequest : TraktGetRequest<TraktPaginationListResult<TraktMostAnticipatedMovie>, TraktMostAnticipatedMovie> { internal...
mit
C#
c01c0647efae7d21a706583e93f0dc228fcc4c7e
Add ID property to OverwriteParameters
BundledSticksInkorperated/Discore
src/Discore/Http/OverwriteParameters.cs
src/Discore/Http/OverwriteParameters.cs
namespace Discore.Http { /// <summary> /// A set of parameters defining a permission overwrite. /// </summary> public class OverwriteParameters { /// <summary> /// Gets the ID of the role or user that this overwrites. /// </summary> public Snowflake Id { get; } ...
namespace Discore.Http { /// <summary> /// A set of parameters defining a permission overwrite. /// </summary> public class OverwriteParameters { /// <summary> /// Gets or sets the type the overwrite affects. /// </summary> public DiscordOverwriteType Type { get; set...
mit
C#
670f99c31aebd917e573db82db7900b4164420b2
Update the output messages
BigEggTools/JsonComparer
JsonComparer.Console/Parameters/CompareParameter.cs
JsonComparer.Console/Parameters/CompareParameter.cs
namespace BigEgg.Tools.JsonComparer.Parameters { using BigEgg.Tools.ConsoleExtension.Parameters; [Command("compare", "Compare the JSON files in two folder.")] public class CompareParameter { [StringProperty("path1", "p1", "The folder name of JSON files to compare.", Required = true)] p...
namespace BigEgg.Tools.JsonComparer.Parameters { using BigEgg.Tools.ConsoleExtension.Parameters; [Command("compare", "Compare the JSON files in two folder.")] public class CompareParameter { [StringProperty("path1", "p1", "The folder name of JSON files to compare.", Required = true)] p...
mit
C#