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
db1ad6b75439dea596052234ca78cc74e61d4485
fix the icon position
PatrickDinh/frankenwiki,frankenwiki/frankenwiki,bendetat/frankenwiki
src/Frankenwiki.Example.NancyWeb/Views/page.cshtml
src/Frankenwiki.Example.NancyWeb/Views/page.cshtml
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase<Frankenwiki.Frankenpage> @using System @using System.Linq @{ Layout = "_Layout.cshtml"; ViewBag.Title = Model.Title; } @section tools { <li><span class="glyphicon glyphicon-link"></span> <a href="/what-links-to/@Model.Slug" title="A list of articles tha...
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase<Frankenwiki.Frankenpage> @using System @using System.Linq @{ Layout = "_Layout.cshtml"; ViewBag.Title = Model.Title; } @section tools { <li><a href="/what-links-to/@Model.Slug" title="A list of articles that link to this article"><span class="glyphicon ...
apache-2.0
C#
b90fc4cbf579f2ea0bb4923ae9c9591004a92bbe
clean up assembly properties for nuget.
mikeckennedy/mongodb-query-helper-for-dotnet,ChrisMcKee/mongodb-query-helper-for-dotnet
src/MongoDB.QueryHelper/Properties/AssemblyInfo.cs
src/MongoDB.QueryHelper/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("MongoDB.Kennedy")] [assembly: AssemblyDescription("MongoDB query helper library.")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("PDX Web Properties, LLC.")] [assembly: AssemblyProduct("MongoDB.QueryHelper")] ...
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("Mo...
mit
C#
3b80815c4ec60a35ae318d1ac81f3fcc350f5b84
Rewrite ExceptionPanel component to use Alert component.
maraf/Money,maraf/Money,maraf/Money
src/Money.UI.Blazor/Components/ExceptionPanel.cshtml
src/Money.UI.Blazor/Components/ExceptionPanel.cshtml
@inject Neptuo.Exceptions.Handlers.ExceptionHandlerBuilder ExceptionHandlerBuilder @inject Money.Services.MessageBuilder MessageBuilder @if (LastException != null) { <Alert Title="@Title" Message="@Message" Mode="AlertMode.Error" IsDismissible="true" /> } @functions { public Exception LastException { get; p...
@inject Neptuo.Exceptions.Handlers.ExceptionHandlerBuilder ExceptionHandlerBuilder @inject Money.Services.MessageBuilder MessageBuilder @if (LastException != null) { <div class="alert alert-danger alert-dismissible" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close">...
apache-2.0
C#
f87c98458de0b3695c7eadd62886b94d56121a62
Improve the documentation on IArgument<>.
mikebarker/Plethora.NET
src/Plethora.Cache/IArgument.cs
src/Plethora.Cache/IArgument.cs
using System.Collections.Generic; namespace Plethora.Cache { /// <summary> /// Interface defining the methods required by the <see cref="CacheBase{TData,TArgument}"/> class. /// </summary> /// <typeparam name="TData">The data type returned by </typeparam> /// <typeparam name="TArgument">Th...
using System.Collections.Generic; namespace Plethora.Cache { public interface IArgument<TData, TArgument> { //TODO: Type documentation bool IsOverlapped( TArgument B, out IEnumerable<TArgument> notInB); bool IsDataIncluded(TData data); } }
mit
C#
74a6faf9b9b87a3dd28805686a5bb0e9c40780e1
Bring tasks in
jefking/King.Service.ServiceBus
Demo/King.Service.ServiceBus.WorkerRole/Factory.cs
Demo/King.Service.ServiceBus.WorkerRole/Factory.cs
namespace King.Service.ServiceBus { using King.Service.ServiceBus.Queue; using King.Service.WorkerRole; using King.Service.WorkerRole.Queue; using System.Collections.Generic; /// <summary> /// Facotry /// </summary> public class Factory : ITaskFactory<Configuration> { /// <...
namespace King.Service.ServiceBus { using King.Service.ServiceBus.Queue; using King.Service.WorkerRole; using King.Service.WorkerRole.Queue; using System.Collections.Generic; /// <summary> /// Facotry /// </summary> public class Factory : ITaskFactory<Configuration> { /// <...
mit
C#
f9d87f03431c9067f903ede535b5b6067f50e2c4
Bump to version 0.3.1
neitsa/PrepareLanding,neitsa/PrepareLanding
Properties/AssemblyInfo.cs
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("PrepareLanding")] [assembly: AssemblyDesc...
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("PrepareLanding")] [assembly: AssemblyDesc...
mit
C#
e7931ef4c79302434d5468cdbf3acadb0b771ff8
Add a default icon when a ruleset isn't present
NeoAdonis/osu,2yangk23/osu,smoogipoo/osu,EVAST9919/osu,peppy/osu,Drezi126/osu,NeoAdonis/osu,peppy/osu,peppy/osu,UselessToucan/osu,DrabWeb/osu,smoogipoo/osu,2yangk23/osu,naoey/osu,Frontear/osuKyzer,ZLima12/osu,ppy/osu,DrabWeb/osu,UselessToucan/osu,ZLima12/osu,naoey/osu,ppy/osu,EVAST9919/osu,peppy/osu-new,NeoAdonis/osu,s...
osu.Game/Beatmaps/Drawables/DifficultyIcon.cs
osu.Game/Beatmaps/Drawables/DifficultyIcon.cs
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Game.Graphics; using osu.Game.Graphics.Containers; using OpenTK; namespace osu.Game.Bea...
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Game.Graphics; using osu.Game.Graphics.Containers; using OpenTK; namespace osu.Game.Bea...
mit
C#
fb3ffe229fb968d394068179d15fe4fd2447e338
Make some properties get-only
dirkrombauts/pickles,magicmonty/pickles,picklesdoc/pickles,blorgbeard/pickles,magicmonty/pickles,blorgbeard/pickles,picklesdoc/pickles,blorgbeard/pickles,picklesdoc/pickles,dirkrombauts/pickles,ludwigjossieaux/pickles,picklesdoc/pickles,dirkrombauts/pickles,ludwigjossieaux/pickles,magicmonty/pickles,ludwigjossieaux/pic...
src/Pickles/Pickles/DirectoryCrawler/FeatureNode.cs
src/Pickles/Pickles/DirectoryCrawler/FeatureNode.cs
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="FeatureNode.cs" company="PicklesDoc"> // Copyright 2011 Jeffrey Cameron // Copyright 2012-present PicklesDoc team and community contributors // // // Licensed under the Apach...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="FeatureNode.cs" company="PicklesDoc"> // Copyright 2011 Jeffrey Cameron // Copyright 2012-present PicklesDoc team and community contributors // // // Licensed under the Apach...
apache-2.0
C#
5c13cbcf88e9e2c9ab85fef356fe55af8d66cc05
add version to seal status
rajanadar/VaultSharp
src/VaultSharp/Backends/System/Models/SealStatus.cs
src/VaultSharp/Backends/System/Models/SealStatus.cs
using Newtonsoft.Json; namespace VaultSharp.Backends.System.Models { /// <summary> /// Represents the Seal status of the Vault. /// </summary> public class SealStatus { /// <summary> /// Gets or sets a value indicating about the <see cref="SealStatus"/>. /// </summary> ...
using Newtonsoft.Json; namespace VaultSharp.Backends.System.Models { /// <summary> /// Represents the Seal status of the Vault. /// </summary> public class SealStatus { /// <summary> /// Gets or sets a value indicating about the <see cref="SealStatus"/>. /// </summary> ...
apache-2.0
C#
52c5a096b9b7225e3c9a7902f7d539ed7187e51b
Add comment.
EVAST9919/osu-framework,ppy/osu-framework,ppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,Nabile-Rahmani/osu-framework,peppy/osu-framework,ZLima12/osu-framework,DrabWeb/osu-framework,Tom94/osu-framework,naoey/osu-framework,RedNesto/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,Nabile-Rahmani/osu-f...
osu.Framework/Graphics/Containers/AsyncLoadContainer.cs
osu.Framework/Graphics/Containers/AsyncLoadContainer.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 System; using System.Threading.Tasks; using osu.Framework.Allocation; namespace osu.Framework.Graphics.Containers { /// <summary> /// ...
// 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 System; using System.Threading.Tasks; using osu.Framework.Allocation; namespace osu.Framework.Graphics.Containers { /// <summary> /// ...
mit
C#
8a988b95daa51254abb93aa59b535b6650e564e7
Add ExpectedPaymentDate and PlannedPaymentDate to Invoice model
jcvandan/XeroAPI.Net,XeroAPI/XeroAPI.Net,TDaphneB/XeroAPI.Net,MatthewSteeples/XeroAPI.Net
source/XeroApi/Model/Invoice.cs
source/XeroApi/Model/Invoice.cs
using System; namespace XeroApi.Model { public class Invoice : EndpointModelBase, IAttachmentParent { [ItemId] public virtual Guid InvoiceID { get; set; } [ItemNumber] public string InvoiceNumber { get; set; } [ItemUpdatedDate] public DateTime? Up...
using System; namespace XeroApi.Model { public class Invoice : EndpointModelBase, IAttachmentParent { [ItemId] public virtual Guid InvoiceID { get; set; } [ItemNumber] public string InvoiceNumber { get; set; } [ItemUpdatedDate] public DateTime? Up...
mit
C#
904a4daa985b8f5e37573520a9147ad9adb80167
Add todo comment reminding of updating friends list along
ppy/osu,peppy/osu,smoogipoo/osu,ppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,NeoAdonis/osu,UselessToucan/osu,smoogipooo/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu-new,NeoAdonis/osu,ppy/osu,peppy/osu
osu.Game/Overlays/Profile/Header/Components/AddFriendButton.cs
osu.Game/Overlays/Profile/Header/Components/AddFriendButton.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Sprites...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Sprites...
mit
C#
b31a671a983372810c5f9ff7c947d544bf33272d
reset template to use protected OnConstruct-Method
dotmos/uGameFramework,dotmos/uGameFramework
Unity/Assets/GameFramework/Modules/ECS/_GenTemplates/_GenComponent.cs
Unity/Assets/GameFramework/Modules/ECS/_GenTemplates/_GenComponent.cs
using System; using System.Collections; using System.Collections.Generic; using ECS; /*name:using*/ /*endname*/ /// <summary> /*name:componentComment*/ /*endname*/ /// </summary> [System.Serializable] public partial class /*name:ComponentName*/GenTemplateComponent/*endname*/ : ECS.Component ...
using System; using System.Collections; using System.Collections.Generic; using ECS; /*name:using*/ /*endname*/ /// <summary> /*name:componentComment*/ /*endname*/ /// </summary> [System.Serializable] public partial class /*name:ComponentName*/GenTemplateComponent/*endname*/ : ECS.Component ...
mit
C#
20ec50d5d26f2052afcfcf640c69c6049208e799
use WebHost.CreateDefaultBuilder in IdentitySample.Mvc
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
samples/IdentitySample.Mvc/Program.cs
samples/IdentitySample.Mvc/Program.cs
using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; namespace IdentitySample { public static class Program { public static void Main(string[] args) => BuildWebHost(args).Run(); public static IWebHost BuildWebHost(string[] args) => WebHost.CreateDefaultBuilder(args) ...
using System.IO; using Microsoft.AspNetCore.Hosting; namespace IdentitySample { public static class Program { public static void Main(string[] args) { var host = new WebHostBuilder() .UseKestrel() .UseContentRoot(Directory.GetCurrentDirectory()) ...
apache-2.0
C#
5bb758469123e2c76d25b948ceda52dfa109370a
support for the new _count format
NickCraver/NEST,azubanov/elasticsearch-net,gayancc/elasticsearch-net,starckgates/elasticsearch-net,wawrzyn/elasticsearch-net,amyzheng424/elasticsearch-net,junlapong/elasticsearch-net,tkirill/elasticsearch-net,alanprot/elasticsearch-net,LeoYao/elasticsearch-net,LeoYao/elasticsearch-net,tkirill/elasticsearch-net,UdiBen/e...
src/Nest/DSL/CountDescriptor.cs
src/Nest/DSL/CountDescriptor.cs
using System; using Newtonsoft.Json; using Nest.Resolvers.Converters; namespace Nest { [DescriptorFor("Count")] public partial class CountDescriptor<T> : QueryPathDescriptorBase<CountDescriptor<T>, T, CountQueryString> , IPathInfo<CountQueryString> where T : class { [JsonProperty("query")] internal Bas...
using System; using Newtonsoft.Json; using Nest.Resolvers.Converters; namespace Nest { [DescriptorFor("Count")] [JsonConverter(typeof(CustomJsonConverter))] public partial class CountDescriptor<T> : QueryPathDescriptorBase<CountDescriptor<T>, T, CountQueryString> , IActAsQuery , IPathInfo<CountQueryString> ...
apache-2.0
C#
c9e8c340251ec3afcd4032d10cb6d363a1bd4245
Use Json.Net type stamping instead of assembly qualified name.
Hihaj/SlashTodo,Hihaj/SlashTodo
src/SlashTodo.Infrastructure/AzureTables/ComplexTableEntity.cs
src/SlashTodo.Infrastructure/AzureTables/ComplexTableEntity.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.WindowsAzure.Storage.Table; using Newtonsoft.Json; namespace SlashTodo.Infrastructure.AzureTables { public abstract class ComplexTableEntity<T> : TableEntity { private st...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.WindowsAzure.Storage.Table; using Newtonsoft.Json; namespace SlashTodo.Infrastructure.AzureTables { public abstract class ComplexTableEntity<T> : TableEntity { public str...
mit
C#
13fc2f65b29ca11fa15ad35bd6bd27a2c8f240c9
Store an item when it is added to the basket
lukedrury/super-market-kata
engine/engine/tests/SupermarketAcceptanceTests.cs
engine/engine/tests/SupermarketAcceptanceTests.cs
using NUnit.Framework; namespace engine.tests { [TestFixture] public class SupermarketAcceptanceTests { [Test] public void EmptyBasket() { var till = new Till(); var basket = new Basket(); var total = till.CalculatePrice(basket); va...
using NUnit.Framework; namespace engine.tests { [TestFixture] public class SupermarketAcceptanceTests { [Test] public void EmptyBasket() { var till = new Till(); var basket = new Basket(); var total = till.CalculatePrice(basket); va...
mit
C#
a91b8d555c84d1d8b4fc14b39504f743d1e42544
Modify tag count to actual value
genlu/roslyn,CyrusNajmabadi/roslyn,AlekseyTs/roslyn,heejaechang/roslyn,shyamnamboodiripad/roslyn,brettfo/roslyn,CyrusNajmabadi/roslyn,eriawan/roslyn,jasonmalinowski/roslyn,tmat/roslyn,jasonmalinowski/roslyn,AlekseyTs/roslyn,KirillOsenkov/roslyn,weltkante/roslyn,diryboy/roslyn,KevinRansom/roslyn,eriawan/roslyn,KirillOse...
src/VisualStudio/IntegrationTest/IntegrationTests/VisualBasic/BasicKeywordHighlighting.cs
src/VisualStudio/IntegrationTest/IntegrationTests/VisualBasic/BasicKeywordHighlighting.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.Linq; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Shared.TestHooks; using Microsoft.Cod...
// 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.Linq; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Shared.TestHooks; using Microsoft.Cod...
mit
C#
fac55bc78b70a1f8a3a53b222d9df515e32e82ae
Change ISnmpModule to use scene references
RavenB/opensim,TomDataworks/opensim,EriHoss/OpenSim_0.8.2.0_Dev_LibLSLCC,TomDataworks/opensim,TomDataworks/opensim,EriHoss/OpenSim_0.8.2.0_Dev_LibLSLCC,EriHoss/OpenSim_0.8.2.0_Dev_LibLSLCC,RavenB/opensim,TomDataworks/opensim,EriHoss/OpenSim_0.8.2.0_Dev_LibLSLCC,RavenB/opensim,RavenB/opensim,RavenB/opensim,EriHoss/OpenS...
OpenSim/Region/Framework/Interfaces/ISnmpModule.cs
OpenSim/Region/Framework/Interfaces/ISnmpModule.cs
/////////////////////////////////////////////////////////////////// // // (c) Careminster LImited, Melanie Thielker and the Meta7 Team // // This file is not open source. All rights reserved // Mod 2 using OpenSim.Region.Framework.Scenes; public interface ISnmpModule { void Trap(int code, string Message, Scene sc...
/////////////////////////////////////////////////////////////////// // // (c) Careminster LImited, Melanie Thielker and the Meta7 Team // // This file is not open source. All rights reserved // Mod 2 public interface ISnmpModule { void Trap(int code,string simname,string Message); void ColdStart(int step , stri...
bsd-3-clause
C#
edf4869a7ee54be9d2331931c28c60b9149a5b0a
Increment minor version
TeamnetGroup/cap-net,darbio/cap-net
src/CAPNet/Properties/AssemblyInfo.cs
src/CAPNet/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("cap-net")] [assembly: AssemblyDescription("A Common Alerting Protocol serialization library for the .NET framework.")] [assembly: AssemblyProduct("cap-net")] [assembly: AssemblyCopyright("Copyright © 2013 Matt Chandler and contri...
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("cap-net")] [assembly: AssemblyDescription("A Common Alerting Protocol serialization library for the .NET framework.")] [assembly: AssemblyProduct("cap-net")] [assembly: AssemblyCopyright("Copyright © 2013 Matt Chandler and contri...
mit
C#
9ca68d35e3f0d56262d3401b754dafe5256f2a1c
Add loop
cdonges/cricket
CricketScores/Program.cs
CricketScores/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Text.RegularExpressions; using System.Net; using System.IO.Ports; namespace CricketScores { class Program { static void Main(string[] args) { Regex count...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Text.RegularExpressions; using System.Net; using System.IO.Ports; namespace CricketScores { class Program { static void Main(string[] args) { Regex count...
mit
C#
2037acda211b8a55889b5f0adaab5c4c4d462a72
Add WikiPageExtensions.CreateCategoriesGenerator.
CXuesong/WikiClientLibrary
WikiClientLibrary/Generators/WikiPageExtensions.cs
WikiClientLibrary/Generators/WikiPageExtensions.cs
using System; using System.Collections.Generic; using System.Text; using WikiClientLibrary.Pages; namespace WikiClientLibrary.Generators { /// <summary> /// Extension method for constructing generators from <see cref="WikiPage"/>. /// </summary> public static class WikiPageExtensions { //...
using System; using System.Collections.Generic; using System.Text; using WikiClientLibrary.Pages; namespace WikiClientLibrary.Generators { /// <summary> /// Extension method for constructing generators from <see cref="WikiPage"/>. /// </summary> public static class WikiPageExtensions { //...
apache-2.0
C#
d73457628ae1cd950617d30acc5ff088f01f8f00
fix assembly version
xamarin/XamarinComponents,bholmes/XamarinComponents,xamarin/XamarinComponents,xamarin/XamarinComponents,bholmes/XamarinComponents,xamarin/XamarinComponents,xamarin/XamarinComponents,xamarin/XamarinComponents,bholmes/XamarinComponents,bholmes/XamarinComponents,bholmes/XamarinComponents,bholmes/XamarinComponents
iOS/FacebookPop/source/Properties/AssemblyInfo.cs
iOS/FacebookPop/source/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using Foundation; // This attribute allows you to mark your assemblies as “safe to link”. // When the attribute is present, the linker—if enabled—will process the assembly // even if you’re using the “Link SDK assemblies only” option, which is the defau...
using System.Reflection; using System.Runtime.CompilerServices; using Foundation; // This attribute allows you to mark your assemblies as “safe to link”. // When the attribute is present, the linker—if enabled—will process the assembly // even if you’re using the “Link SDK assemblies only” option, which is the defau...
mit
C#
496311462fee6e7719e96949bccf4f688ea6306e
Fix implements for LLVMConstHelper#True and False
nokok/lury,lury-lang/lury,HaiTo/lury
src/Lury/Compiling/LLVMConstHelper.cs
src/Lury/Compiling/LLVMConstHelper.cs
// // LLVMConstHelper.cs // // Author: // Tomona Nanase <nanase@users.noreply.github.com> // // The MIT License (MIT) // // Copyright (c) 2015 Tomona Nanase // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), ...
// // LLVMConstHelper.cs // // Author: // Tomona Nanase <nanase@users.noreply.github.com> // // The MIT License (MIT) // // Copyright (c) 2015 Tomona Nanase // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), ...
mit
C#
af8a40f7495ed50384e5581b03e4ef25af49bf52
Correct indentation
openmedicus/dbus-sharp,arfbtwn/dbus-sharp,openmedicus/dbus-sharp,Tragetaschen/dbus-sharp,Tragetaschen/dbus-sharp,mono/dbus-sharp,mono/dbus-sharp,arfbtwn/dbus-sharp
examples/TestExceptions.cs
examples/TestExceptions.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Collections.Generic; using NDesk.DBus; using org.freedesktop.DBus; public class ManagedDBusTestExceptions { public static void Main () { Bus bus = Bus.Session...
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details using System; using System.Collections.Generic; using NDesk.DBus; using org.freedesktop.DBus; public class ManagedDBusTestExceptions { public static void Main () { Bus bus = Bus.Session...
mit
C#
4c13190f5ea3a59ec19390abdcdc5e99b6c12471
Update Viktor.cs
FireBuddy/adevade
AdEvade/AdEvade/Data/Spells/SpecialSpells/Viktor.cs
AdEvade/AdEvade/Data/Spells/SpecialSpells/Viktor.cs
using System; using EloBuddy; using EloBuddy.SDK; namespace AdEvade.Data.Spells.SpecialSpells { class Viktor : IChampionPlugin { static Viktor() { } public const string ChampionName = "Viktor"; public string GetChampionName() { return ChampionName; ...
using System; using EloBuddy; using EloBuddy.SDK; namespace AdEvade.Data.Spells.SpecialSpells { class Viktor : IChampionPlugin { static Viktor() { } public const string ChampionName = "Viktor"; public string GetChampionName() { return ChampionName; ...
mit
C#
28ad5398cc928deb58ec68fbb3d0d24313bec175
Remove the changes in convert spinner
UselessToucan/osu,smoogipoo/osu,johnneijzen/osu,smoogipoo/osu,ppy/osu,NeoAdonis/osu,DrabWeb/osu,ppy/osu,UselessToucan/osu,EVAST9919/osu,naoey/osu,2yangk23/osu,smoogipoo/osu,smoogipooo/osu,peppy/osu,UselessToucan/osu,DrabWeb/osu,ZLima12/osu,DrabWeb/osu,ppy/osu,ZLima12/osu,peppy/osu-new,naoey/osu,EVAST9919/osu,johnneijze...
osu.Game/Rulesets/Objects/Legacy/Catch/ConvertSpinner.cs
osu.Game/Rulesets/Objects/Legacy/Catch/ConvertSpinner.cs
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Rulesets.Objects.Types; namespace osu.Game.Rulesets.Objects.Legacy.Catch { /// <summary> /// Legacy osu!catch Spinner-type, used for parsing Bea...
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Rulesets.Objects.Types; namespace osu.Game.Rulesets.Objects.Legacy.Catch { /// <summary> /// Legacy osu!catch Spinner-type, used for parsing Bea...
mit
C#
4039734e8a97a4703cd72103cccd8b3ff926e45e
Add data annotation
CS297Sp16/LCC_Co-op_Site,CS297Sp16/LCC_Co-op_Site,CS297Sp16/LCC_Co-op_Site
Coop_Listing_Site/Coop_Listing_Site/Models/Major.cs
Coop_Listing_Site/Coop_Listing_Site/Models/Major.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; namespace Coop_Listing_Site.Models { public class Major { public int MajorID { get; set; } [Required] public string Name { get; set; } } }
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Coop_Listing_Site.Models { public class Major { public int MajorID { get; set; } public string Name { get; set; } } }
mit
C#
7bd4e4d9571df6f4d46267d8a1ed3059a7a6813a
Remove spurious new line
jagrem/slang,jagrem/slang,jagrem/slang
slang/Lexing/Rules/Rule.cs
slang/Lexing/Rules/Rule.cs
namespace slang.Lexing.Rules { public abstract class Rule { public static Rule operator | (Rule left, Rule right) { return new OrRule (left, right); } public static Rule operator + (Rule left, Rule right) { return new AndRule (left, right); ...
namespace slang.Lexing.Rules { public abstract class Rule { public static Rule operator | (Rule left, Rule right) { return new OrRule (left, right); } public static Rule operator + (Rule left, Rule right) { return new AndRule (left, right); ...
mit
C#
00a041d46ee1cd9c4afd32bf25727f39495cb027
Update AsyncServiceTest.cs
NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework,NakedObjectsGroup/NakedObjectsFramework
Core/NakedObjects.Core.Test/Async/AsyncServiceTest.cs
Core/NakedObjects.Core.Test/Async/AsyncServiceTest.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. //// Unl...
apache-2.0
C#
8b38dd8664c1acdf338db128a0a044f35a369b25
Clean up
fvilers/Darjeel,fvilers/Darjeel,fvilers/Darjeel
Darjeel/Darjeel/Messaging/Handling/CommandExecuter.cs
Darjeel/Darjeel/Messaging/Handling/CommandExecuter.cs
using System; using System.Threading.Tasks; namespace Darjeel.Messaging.Handling { public class CommandExecuter : ICommandExecuter { private readonly ICommandHandlerRegistry _registry; public CommandExecuter(ICommandHandlerRegistry registry) { if (registry == null) throw n...
using System; using System.Threading.Tasks; namespace Darjeel.Messaging.Handling { public class CommandExecuter : ICommandExecuter { private readonly ICommandHandlerRegistry _registry; public CommandExecuter(ICommandHandlerRegistry registry) { if (registry == null) ...
mit
C#
dba4145d846733ad1cbcbc834f05ca3397069090
Use member value in MemberEqualByComparer
JohanLarsson/Gu.State,JohanLarsson/Gu.State,JohanLarsson/Gu.ChangeTracking
Gu.State/EqualBy/Comparers/MemberEqualByComparer.cs
Gu.State/EqualBy/Comparers/MemberEqualByComparer.cs
namespace Gu.State { using System; using System.Reflection; internal class MemberEqualByComparer : EqualByComparer { private readonly IGetterAndSetter getterAndSetter; private readonly Lazy<EqualByComparer> comparer; private MemberEqualByComparer(IGetterAndSetter getterAndSett...
namespace Gu.State { using System; using System.Reflection; internal class MemberEqualByComparer : EqualByComparer { private readonly IGetterAndSetter getterAndSetter; private readonly Lazy<EqualByComparer> comparer; private MemberEqualByComparer(IGetterAndSetter getterAndSett...
mit
C#
c44f1e0662bba3e186a61376fd912c2569204abf
Update test.
rgani/roslyn,antonssonj/roslyn,brettfo/roslyn,davkean/roslyn,davkean/roslyn,swaroop-sridhar/roslyn,mattscheffer/roslyn,diryboy/roslyn,jhendrixMSFT/roslyn,Maxwe11/roslyn,agocke/roslyn,bartdesmet/roslyn,aanshibudhiraja/Roslyn,akrisiun/roslyn,MichalStrehovsky/roslyn,amcasey/roslyn,leppie/roslyn,KirillOsenkov/roslyn,heejae...
src/EditorFeatures/Test/Outlining/OutliningSpanTests.cs
src/EditorFeatures/Test/Outlining/OutliningSpanTests.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 Microsoft.CodeAnalysis.Editor.Implementation.Outlining; using Microsoft.CodeAnalysis.Text; using Xunit; namespace Microsoft.CodeAnalysis.Editor.UnitTes...
// 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 Microsoft.CodeAnalysis.Editor.Implementation.Outlining; using Microsoft.CodeAnalysis.Text; using Xunit; namespace Microsoft.CodeAnalysis.Editor.UnitTes...
mit
C#
6ea7347d30b9f79e126d170fe1b99b1845b3c667
correct version of ClrExtensionsIntegrationTestFixture
KingJiangNet/boo,bamboo/boo,Unity-Technologies/boo,rmboggs/boo,drslump/boo,wbardzinski/boo,KidFashion/boo,drslump/boo,wbardzinski/boo,BillHally/boo,bamboo/boo,drslump/boo,BitPuffin/boo,hmah/boo,BitPuffin/boo,hmah/boo,scottstephens/boo,hmah/boo,hmah/boo,KidFashion/boo,BillHally/boo,Unity-Technologies/boo,hmah/boo,Unity-...
tests/BooCompiler.Tests/ClrExtensionsIntegrationTestFixture.cs
tests/BooCompiler.Tests/ClrExtensionsIntegrationTestFixture.cs
namespace BooCompiler.Tests { using NUnit.Framework; [TestFixture] public class ClrExtensionsIntegrationTestFixture : AbstractCompilerTestCase { [Test] public void clrextensions_1() { RunCompilerTestCase(@"clrextensions-1.boo"); } [Test] public void clrextensions_2() { RunCompilerTestCase(...
namespace BooCompiler.Tests { using NUnit.Framework; [TestFixture] public class ClrextensionsIntegrationTestFixture : AbstractCompilerTestCase { [Test] public void clrextensions_1() { RunCompilerTestCase(@"clrextensions-1.boo"); } [Test] public void clrextensions_2() { RunCompilerTestCase(...
bsd-3-clause
C#
a24fdf67944b4954ba7f25e2d5cd7df521293741
Disable failing unit test
JohnStov/ReSharperFixieRunner
ResharperFixieTestRunner.Tests/FixieTaskRunnerTest.cs
ResharperFixieTestRunner.Tests/FixieTaskRunnerTest.cs
using JetBrains.ReSharper.TaskRunnerFramework; using NSubstitute; using ReSharperFixieTestRunner; namespace ResharperFixieTestRunner.Tests { public class FixieTaskRunnerTests { private void CanExecuteRecursive() { var remoteTaskServer = Substitute.For<IRemoteTaskServer>(); ...
using JetBrains.ReSharper.TaskRunnerFramework; using NSubstitute; using ReSharperFixieTestRunner; namespace ResharperFixieTestRunner.Tests { public class FixieTaskRunnerTests { public void CanExecuteRecursive() { var remoteTaskServer = Substitute.For<IRemoteTaskServer>(); ...
mit
C#
b9d01a86cde039443515f74d8ad8f9c4e6332ec8
Update CompositeCrossCurrencyConverter.cs
tiksn/TIKSN-Framework
TIKSN.Core/Finance/CompositeCrossCurrencyConverter.cs
TIKSN.Core/Finance/CompositeCrossCurrencyConverter.cs
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace TIKSN.Finance { public class CompositeCrossCurrencyConverter : CompositeCurrencyConverter { public CompositeCrossCurrencyConverter(ICurrencyConversionCompositionStrategy compositionStrategy)...
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace TIKSN.Finance { public class CompositeCrossCurrencyConverter : CompositeCurrencyConverter { public CompositeCrossCurrencyConverter(ICurrencyConversionCompositionStrategy compositionStrategy)...
mit
C#
d8fd692ab9233652207cc299f2f2a6055dcc4791
Hide methods from editor.
telerik/JustMockLite
Telerik.JustMock/Core/Context/AsyncContextResolver.cs
Telerik.JustMock/Core/Context/AsyncContextResolver.cs
/* JustMock Lite Copyright © 2019 Progress Software Corporation 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 ap...
/* JustMock Lite Copyright © 2019 Progress Software Corporation 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 ap...
apache-2.0
C#
79cbae0080d5f45a95581e68746ae01526ce5027
Allow continuous camera zoom control
mysticfall/Alensia
Assets/Alensia/Core/Camera/OrbitingCameraControl.cs
Assets/Alensia/Core/Camera/OrbitingCameraControl.cs
using System.Collections.Generic; using Alensia.Core.Input; using Alensia.Core.Input.Generic; using UniRx; namespace Alensia.Core.Camera { public class OrbitingCameraControl : RotatableCameraControl { public IBindingKey<IAxisInput> Zoom => Keys.Zoom; protected IAxisInput Scroll { get; private...
using System; using System.Collections.Generic; using Alensia.Core.Input; using Alensia.Core.Input.Generic; using UniRx; namespace Alensia.Core.Camera { public class OrbitingCameraControl : RotatableCameraControl { public IBindingKey<IAxisInput> Zoom => Keys.Zoom; protected IAxisInput Scroll ...
apache-2.0
C#
5b44a5c0c38aa8fe3af8e8ea100df6beacee8ac7
Update AssemblyVersion
dmitry-shechtman/AsyncInit
AsyncInit.Unity/Portable/Properties/AssemblyInfo.cs
AsyncInit.Unity/Portable/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Ditto.AsyncInit.Unity")] [assembly: AssemblyDescription("Unity Container Async Extensions")] [assembly: AssemblyVersion("1.6.0.*")] [assembly: ComVisible(false)]
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Ditto.AsyncInit.Unity")] [assembly: AssemblyDescription("Unity Container Async Extensions")] [assembly: AssemblyVersion("1.5.0.*")] [assembly: ComVisible(false)]
apache-2.0
C#
465da45b02dfdb105be9a824b88b16a34813d6dc
Make namespace upperclase like it should be.
WisconsinRobotics/BadgerJAUS.NET
BadgerJaus/messages/discovery/QueryConfiguration.cs
BadgerJaus/messages/discovery/QueryConfiguration.cs
/* * Copyright (c) 2015, Wisconsin Robotics * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list...
/* * Copyright (c) 2015, Wisconsin Robotics * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list...
bsd-3-clause
C#
8e2eac31780540b263e22aa4df2f44d51e95ac44
fix parsing
Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns
TCC.Core/Parsing/Messages/S_REQUEST_CITY_WAR_MAP_INFO_DETAIL.cs
TCC.Core/Parsing/Messages/S_REQUEST_CITY_WAR_MAP_INFO_DETAIL.cs
using System; using System.Collections.Generic; using TCC.TeraCommon.Game.Messages; using TCC.TeraCommon.Game.Services; namespace TCC.Parsing.Messages { public class S_REQUEST_CITY_WAR_MAP_INFO_DETAIL : ParsedMessage { public List<Tuple<uint, string>> GuildDetails; public S_REQUEST_CITY_WAR_M...
using System; using System.Collections.Generic; using TCC.TeraCommon.Game.Messages; using TCC.TeraCommon.Game.Services; namespace TCC.Parsing.Messages { public class S_REQUEST_CITY_WAR_MAP_INFO_DETAIL : ParsedMessage { public List<Tuple<uint, string>> GuildDetails; public S_REQUEST_CITY_WAR_M...
mit
C#
75ad5b3c696a9fa474cabc129bfadb3b982246d9
increment patch version
jwChung/Experimentalism,jwChung/Experimentalism
build/CommonAssemblyInfo.cs
build/CommonAssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Jin-Wook Chung")] [assembly: AssemblyCopyright("Copyright (c) 2014, Jin-Wook Chung")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Co...
using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Jin-Wook Chung")] [assembly: AssemblyCopyright("Copyright (c) 2014, Jin-Wook Chung")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Co...
mit
C#
4f580f3e96ce9a8a65df8a68d024b230f070a142
Change the page header
benlam62/app-service-mobile-dotnet-fieldengineer
server/FieldEngineer/Views/Admin/Index.cshtml
server/FieldEngineer/Views/Admin/Index.cshtml
@model IEnumerable<FieldEngineerLiteService.DataObjects.Job> @{ ViewBag.Title = "Index"; } <h2>Tasks for my Hong Kong agents</h2> <p> @Html.ActionLink("Create New", "Create") </p> <table class="table"> <tr> <th> Agent </th> <th> @Html.DisplayNameFor(model ...
@model IEnumerable<FieldEngineerLiteService.DataObjects.Job> @{ ViewBag.Title = "Index"; } <h2>Tasks for my agents</h2> <p> @Html.ActionLink("Create New", "Create") </p> <table class="table"> <tr> <th> Agent </th> <th> @Html.DisplayNameFor(model => model.T...
mit
C#
a0394a69b1e7d7593af7b94ade50070ad44fc219
Improve TracRevisionLog textual !ChangeLog format (1/3): Refactoring log_changelog.cs to use the ClearSilver ''with'' command.
rbaumg/trac,rbaumg/trac,rbaumg/trac,rbaumg/trac
templates/log_changelog.cs
templates/log_changelog.cs
# # ChangeLog for <?cs var:log.path ?> # # Generated by Trac <?cs var:trac.version ?> # <?cs var:trac.time ?> # <?cs each:item = $log.items ?> <?cs with:changeset = log.changes[item.rev] ?> <?cs var:changeset.date ?> <?cs var:changeset.author ?> [<?cs var:item.rev ?>] <?cs each:file = $changeset.files ?> * <?cs...
# # ChangeLog for <?cs var:log.path ?> # # Generated by Trac <?cs var:trac.version ?> # <?cs var:trac.time ?> # <?cs each:item = $log.items ?> <?cs var:log.changes[item.rev].date ?> <?cs var:log.changes[item.rev].author ?> [<?cs var:item.rev ?>] <?cs each:file = $log.changes[item.rev].files ?> * <?cs ...
bsd-3-clause
C#
d8f387f7cbdc3a1554a1508af3fa03162481088f
Make CryptoConfiguration depend on inteface, not implmentation
RockFramework/Rock.Encryption
Rock.Encryption/Symmetric/CryptoConfiguration.cs
Rock.Encryption/Symmetric/CryptoConfiguration.cs
using System.Collections.Generic; namespace RockLib.Encryption.Symmetric { /// <summary> /// Defines an xml-serializable object that contains the information needed to configure an /// instance of <see cref="SymmetricCrypto"/>. /// </summary> public class CryptoConfiguration { /// <sum...
using System.Collections.Generic; namespace RockLib.Encryption.Symmetric { /// <summary> /// Defines an xml-serializable object that contains the information needed to configure an /// instance of <see cref="SymmetricCrypto"/>. /// </summary> public class CryptoConfiguration { /// <sum...
mit
C#
bf08411873416dabba1f082b8a3f64e18e889196
Add fullname class in test AllClassesShouldBeSealedTests
SiliconStudio/SharpDiff,xoofx/SharpDiff
SharpDiff.Tests/AllClassesShouldBeSealedTests.cs
SharpDiff.Tests/AllClassesShouldBeSealedTests.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using NUnit.Framework; namespace SharpDiff.Tests { [TestFixture] public class AllClassesShouldBeSealedTests { public IEnumerable<Type> AllTypesInDiffLib() { return from ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using NUnit.Framework; namespace SharpDiff.Tests { [TestFixture] public class AllClassesShouldBeSealedTests { public IEnumerable<Type> AllTypesInDiffLib() { return from ...
bsd-3-clause
C#
efd3e47c0d3d936edb7377e24a3dc6151d8d3c67
fix closing tag
pedroreys/docs.particular.net,pashute/docs.particular.net,eclaus/docs.particular.net,SzymonPobiega/docs.particular.net,yuxuac/docs.particular.net,WojcikMike/docs.particular.net
Snippets/Snippets_5/DefineCriticalErrorAction.cs
Snippets/Snippets_5/DefineCriticalErrorAction.cs
using NServiceBus; // ReSharper disable once ConvertToLambdaExpression public class DefineCriticalErrorAction { public void Simple() { // start code DefineCriticalErrorActionV5 var configure = Configure.With(builder => { builder.DefineCriticalErrorAction((s, exception) => ...
using NServiceBus; // ReSharper disable once ConvertToLambdaExpression public class DefineCriticalErrorAction { public void Simple() { // start code DefineCriticalErrorActionV5 var configure = Configure.With(builder => { builder.DefineCriticalErrorAction((s, exception) => ...
apache-2.0
C#
0287a7aeafc61bcc9a39350fe35ed564c79d9525
Fix FirstOrNothing returning wrong maybe value.
muhbaasu/fx-sharp
src/FxSharp/Extensions/EnumerableExtensions.cs
src/FxSharp/Extensions/EnumerableExtensions.cs
using System; using System.Collections.Generic; using System.Linq; namespace FxSharp.Extensions { public static class EnumerableExtensions { /// <summary> /// Convert a single value into an one item-sized enumerable. /// </summary> /// <typeparam name="T"></typeparam> ...
using System; using System.Collections.Generic; using System.Linq; namespace FxSharp.Extensions { public static class EnumerableExtensions { /// <summary> /// Convert a single value into an one item-sized enumerable. /// </summary> /// <typeparam name="T"></typeparam> ...
apache-2.0
C#
ffdbc86904ecbf2dd05e32c914ed436b0d5fce7c
correct link generation
agrc/api.mapserv.utah.gov,agrc/api.mapserv.utah.gov,agrc/api.mapserv.utah.gov,agrc/api.mapserv.utah.gov
WebAPI.Dashboard/Views/Shared/LoginStatus.cshtml
WebAPI.Dashboard/Views/Shared/LoginStatus.cshtml
@using WebAPI.Common.Extensions @model WebAPI.Common.Models.Raven.Users.Account | <i class="glyphicon glyphicon-user"></i>&nbsp;@Html.ActionLink(Model.Name.DefaultIfNullOrEmpty("Update profile"), "Index", "Profile", new { Area = "secure" }, null) | <i class="glyphicon glyphicon-road"></i> @Html.ActionLink("Log Out", ...
@using WebAPI.Common.Extensions @model WebAPI.Common.Models.Raven.Users.Account | <i class="glyphicon glyphicon-user"></i>&nbsp;@Html.ActionLink(Model.Name.DefaultIfNullOrEmpty("Update profile"), "Index", "Profile") | <i class="glyphicon glyphicon-road"></i> @Html.ActionLink("Log Out", "Logout")
mit
C#
3905f6c7e9ca8284a9d753dad8ee9abc42cb0a8c
Make CommandStrings file path independent of working directory.
Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW
src/MitternachtBot/Resources/CommandStrings.cs
src/MitternachtBot/Resources/CommandStrings.cs
using System; using System.IO; using System.Linq; using Mitternacht.Common.Collections; using NLog; using YamlDotNet.Serialization; namespace Mitternacht.Resources { public class CommandStrings { private static readonly Logger _logger; private static readonly string CmdStringPath = Path.Combine(Path.GetDirectoryN...
using System; using System.IO; using System.Linq; using Mitternacht.Common.Collections; using NLog; using YamlDotNet.Serialization; namespace Mitternacht.Resources { public class CommandStrings { private static readonly Logger _logger; private const string CmdStringPath = @"./_strings/commandstrings.yml"; priva...
mit
C#
6d64f232dab6b9a8064008741f9e5db78826a384
Add test to commands remove repl
MichaelSimons/cli,MichaelSimons/cli,harshjain2/cli,nguerrera/cli,nguerrera/cli,weshaggard/cli,dasMulli/cli,ravimeda/cli,weshaggard/cli,naamunds/cli,nguerrera/cli,Faizan2304/cli,JohnChen0/cli,livarcocc/cli-1,borgdylan/dotnet-cli,schellap/cli,weshaggard/cli,johnbeisner/cli,EdwardBlair/cli,livarcocc/cli-1,FubarDevelopment...
src/dotnet/commands/dotnet-help/HelpCommand.cs
src/dotnet/commands/dotnet-help/HelpCommand.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. using System.Reflection; using Microsoft.DotNet.Cli.Utils; namespace Microsoft.DotNet.Tools.Help { public class HelpCommand { p...
// 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. using System.Reflection; using Microsoft.DotNet.Cli.Utils; namespace Microsoft.DotNet.Tools.Help { public class HelpCommand { p...
mit
C#
9ad5d34e47e2ecfafd58f6d5100e58fd5848e247
Test fix
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi.Tests/UnitTests/ValidateMethodTests.cs
WalletWasabi.Tests/UnitTests/ValidateMethodTests.cs
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using WalletWasabi.Gui.Converters; using WalletWasabi.Gui.ViewModels.Validation; using WalletWasabi.Models; using Xunit; namespace WalletWasabi.Tests.UnitTests { public class Valida...
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using WalletWasabi.Gui.Converters; using WalletWasabi.Gui.ViewModels.Validation; using WalletWasabi.Models; using Xunit; namespace WalletWasabi.Tests.UnitTests { public class Valida...
mit
C#
4e24590220accc7114662b6cf263d55f272fbb99
add Xml comments for RandomPageGenerator
CXuesong/WikiClientLibrary
WikiClientLibrary/Generators/RandomPageGenerator.cs
WikiClientLibrary/Generators/RandomPageGenerator.cs
using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Text; using WikiClientLibrary.Client; using WikiClientLibrary.Generators; using WikiClientLibrary.Generators.Primitive; using WikiClientLibrary.Pages; using WikiClientLibrary.Sites; namespace WikiClientLibrary.Generators { //...
using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Text; using WikiClientLibrary.Client; using WikiClientLibrary.Generators; using WikiClientLibrary.Generators.Primitive; using WikiClientLibrary.Pages; using WikiClientLibrary.Sites; namespace WikiClientLibrary.Generators { //...
apache-2.0
C#
ea89ef669692a1fce1d63540ce85a58702c00c46
Replace GetUnixTime() with more elegant .NET 4.6 alternative
JustArchi/ArchiSteamFarm,blackpanther989/ArchiSteamFarm,KlappPc/ArchiSteamFarm,KlappPc/ArchiSteamFarm,i3at/ArchiSteamFarm,JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm,i3at/ArchiSteamFarm,JustArchi/ArchiSteamFarm,blackpanther989/ArchiSteamFarm,KlappPc/ArchiSteamFarm
ArchiSteamFarm/Utilities.cs
ArchiSteamFarm/Utilities.cs
/* _ _ _ ____ _ _____ / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___ / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \ / ___ \ | | | (__ | | | || | ___) || |_| __/| (_| || |...
/* _ _ _ ____ _ _____ / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___ / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \ / ___ \ | | | (__ | | | || | ___) || |_| __/| (_| || |...
apache-2.0
C#
55694a96e82a9722e7029798361fe16eb0a18bc9
Remove website url from product description
protyposis/Aurio,protyposis/Aurio
Aurio/GlobalAssemblyInfo.cs
Aurio/GlobalAssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // http://stackoverflow.com/questions/62353/what-are-the-best-practices-for-using-assembly-attributes [assembly: AssemblyCompany("Mario Guggenberger / protyposis.net")] [assembly: Ass...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // http://stackoverflow.com/questions/62353/what-are-the-best-practices-for-using-assembly-attributes [assembly: AssemblyCompany("Mario Guggenberger / protyposis.net")] [assembly: Ass...
agpl-3.0
C#
d464ddffbcd190c297c8c8be9fc8f2d5de51be6d
add client signature
LykkeCity/bitcoinservice,LykkeCity/bitcoinservice
src/BitcoinJob/Functions/ClientSignaturesFunction.cs
src/BitcoinJob/Functions/ClientSignaturesFunction.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Common; using Common.Log; using Core; using Core.Helpers; using Core.Providers; using Core.Repositories.Transactions; using LkeServices.Providers; using Lykke.JobTriggers.Triggers.Attributes; using Lykke.JobTriggers....
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Common; using Core; using Core.Helpers; using Core.Repositories.Transactions; using Lykke.JobTriggers.Triggers.Attributes; using Lykke.JobTriggers.Triggers.Bindings; namespace BackgroundWorker.Functions { public...
mit
C#
34f875187c8eb00b0829fb75d22b8a9483fc3dc3
Copy time between `ControlPoint`s
ppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,peppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,smoogipooo/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu,peppy/osu-new,ppy/osu
osu.Game/Beatmaps/ControlPoints/ControlPoint.cs
osu.Game/Beatmaps/ControlPoints/ControlPoint.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 Newtonsoft.Json; using osu.Game.Graphics; using osu.Game.Utils; using osuTK.Graphics; namespace osu.Game.Beatmaps.ControlPoints { public abstract...
// 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 Newtonsoft.Json; using osu.Game.Graphics; using osu.Game.Utils; using osuTK.Graphics; namespace osu.Game.Beatmaps.ControlPoints { public abstract...
mit
C#
e2bf2252964a37e2f5fb85404b4f46229684c176
Enable test for NH-2404 for dialects which does not support futures.
nkreipke/nhibernate-core,nhibernate/nhibernate-core,livioc/nhibernate-core,nkreipke/nhibernate-core,gliljas/nhibernate-core,alobakov/nhibernate-core,hazzik/nhibernate-core,gliljas/nhibernate-core,nhibernate/nhibernate-core,gliljas/nhibernate-core,RogerKratz/nhibernate-core,ngbrown/nhibernate-core,nhibernate/nhibernate-...
src/NHibernate.Test/NHSpecificTest/NH2404/Fixture.cs
src/NHibernate.Test/NHSpecificTest/NH2404/Fixture.cs
using System.Linq; using NHibernate.Linq; using NHibernate.Transform; using NUnit.Framework; namespace NHibernate.Test.NHSpecificTest.NH2404 { [TestFixture] public class Fixture : BugTestCase { protected override void OnSetUp() { using (var session = OpenSession()) using (var transaction = se...
using System.Linq; using NHibernate.Impl; using NHibernate.Linq; using NHibernate.Transform; using NUnit.Framework; namespace NHibernate.Test.NHSpecificTest.NH2404 { [TestFixture] public class Fixture : BugTestCase { protected override void OnSetUp() { base.OnSetUp(); using (var session = th...
lgpl-2.1
C#
134b2a12fb3552495e38ccbab5ab7709517eeb6d
Add Last4 in AU BECS Source and Deprecating Last3
stripe/stripe-dotnet
src/Stripe.net/Entities/Sources/SourceAuBecsDebit.cs
src/Stripe.net/Entities/Sources/SourceAuBecsDebit.cs
namespace Stripe { using System; using Newtonsoft.Json; public class SourceAuBecsDebit : StripeEntity { [JsonProperty("account_number")] public string AccountNumber { get; set; } [JsonProperty("bsb_number")] public string BsbNumber { get; set; } [JsonProperty("...
namespace Stripe { using Newtonsoft.Json; public class SourceAuBecsDebit : StripeEntity { [JsonProperty("account_number")] public string AccountNumber { get; set; } [JsonProperty("bsb_number")] public string BsbNumber { get; set; } [JsonProperty("fingerprint")] ...
apache-2.0
C#
cd52d8380355c4459315055ba7dca9da4ed98e33
Add Tags
dsteinweg/TeacherPouch,dsteinweg/TeacherPouch,dsteinweg/TeacherPouch,dsteinweg/TeacherPouch
src/TeacherPouch/ViewModels/PhotoDetailsViewModel.cs
src/TeacherPouch/ViewModels/PhotoDetailsViewModel.cs
using System.Collections.Generic; using System.Linq; using TeacherPouch.Models; namespace TeacherPouch.ViewModels { public class PhotoDetailsViewModel { public PhotoDetailsViewModel( Photo photo, string photoUrl, string smallFileSize, string largeFileSiz...
using System.Collections.Generic; using TeacherPouch.Models; namespace TeacherPouch.ViewModels { public class PhotoDetailsViewModel { public PhotoDetailsViewModel( Photo photo, string photoUrl, string smallFileSize, string largeFileSize, Tag ...
mit
C#
a84414d8627946028f9e25236379a4f590eda621
Add unit test for the stripping out of import statements
kendallb/PreMailer.Net,CodeAnimal/PreMailer.Net,tobio/PreMailer.Net,rohk/PreMailer.Net,CarterTsai/PreMailer.Net,milkshakesoftware/PreMailer.Net
PreMailer.Net/PreMailer.Net.Tests/CssParserTests.cs
PreMailer.Net/PreMailer.Net.Tests/CssParserTests.cs
using Microsoft.VisualStudio.TestTools.UnitTesting; namespace PreMailer.Net.Tests { [TestClass] public class CssParserTests { [TestMethod] public void AddStylesheet_ContainsAtCharsetRule_ShouldStripRuleAndParseStylesheet() { var stylesheet = "@charset utf-8; div { width: 100% }"; var parse...
using Microsoft.VisualStudio.TestTools.UnitTesting; namespace PreMailer.Net.Tests { [TestClass] public class CssParserTests { [TestMethod] public void AddStylesheet_ContainsAtCharsetRule_ShouldStripRuleAndParseStylesheet() { var stylesheet = "@charset utf-8; div { width: 100% }"; var parse...
mit
C#
74b0c054e1d8e5eded00208b4176f60f0f561923
remove Start Coding reference
IBM-Bluemix/asp.net5-cloudant,IBM-Bluemix/asp.net5-cloudant
src/dotnetCloudantWebstarter/Views/Home/Index.cshtml
src/dotnetCloudantWebstarter/Views/Home/Index.cshtml
<!DOCTYPE html> <html> <head> <title>ASP.NET Core Cloudant Starter Application</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no" /> <meta name="apple-m...
<!DOCTYPE html> <html> <head> <title>ASP.NET Core Cloudant Starter Application</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no" /> <meta name="apple-m...
apache-2.0
C#
c6f32ff017e8a319f27841247d8493e0f684870b
test that fatal validation problem will break
strotz/pustota,strotz/pustota,strotz/pustota
src/Pustota.Maven.Base.Tests/RepositortValidatorTests.cs
src/Pustota.Maven.Base.Tests/RepositortValidatorTests.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Moq; using NUnit.Framework; using Pustota.Maven.Externals; using Pustota.Maven.Models; using Pustota.Maven.Validation; namespace Pustota.Maven.Base.Tests { [TestFixture] public cla...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Moq; using NUnit.Framework; using Pustota.Maven.Externals; using Pustota.Maven.Models; using Pustota.Maven.Validation; namespace Pustota.Maven.Base.Tests { [TestFixture] public cla...
mit
C#
116518b1426b06b3c8905c54ff4ad51f6e9d8479
Fix typo in summary comment
wvdd007/roslyn,tvand7093/roslyn,balajikris/roslyn,tvand7093/roslyn,HellBrick/roslyn,shyamnamboodiripad/roslyn,jeffanders/roslyn,stephentoub/roslyn,dotnet/roslyn,sharadagrawal/Roslyn,natgla/roslyn,jasonmalinowski/roslyn,heejaechang/roslyn,Maxwe11/roslyn,bbarry/roslyn,danielcweber/roslyn,srivatsn/roslyn,AdamSpeight2008/r...
src/Compilers/Core/Portable/SourceCodeKind.cs
src/Compilers/Core/Portable/SourceCodeKind.cs
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.ComponentModel; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis { /// <summary> /// Specifies the C# ...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.ComponentModel; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis { /// <summary> /// Specifies the C# ...
mit
C#
dd2a631692fcaab96bba6361255a2d23aceba19b
Fix nullref when no consumer is waiting
titanium007/EventHook,titanium007/Windows-User-Action-Hook,justcoding121/Windows-User-Action-Hook
src/EventHook/Helpers/AsyncConcurrentQueue.cs
src/EventHook/Helpers/AsyncConcurrentQueue.cs
using System.Collections.Concurrent; using System.Threading; using System.Threading.Tasks; namespace EventHook.Helpers { /// <summary> /// A concurrent queue facilitating async dequeue with minimal locking /// Assumes single/multi-threaded producer and a single-threaded consumer /// </summary>...
using System.Collections.Concurrent; using System.Threading; using System.Threading.Tasks; namespace EventHook.Helpers { /// <summary> /// A concurrent queue facilitating async dequeue with minimal locking /// Assumes single/multi-threaded producer and a single-threaded consumer /// </summary>...
mit
C#
b91c1bf09ef719361ce497f760950af11b4e33f4
Increment the stats counters in bulk
adamzolotarev/Exceptionless,adamzolotarev/Exceptionless,exceptionless/Exceptionless,exceptionless/Exceptionless,adamzolotarev/Exceptionless,exceptionless/Exceptionless,exceptionless/Exceptionless
Source/Core/Pipeline/090_IncrementCountersAction.cs
Source/Core/Pipeline/090_IncrementCountersAction.cs
#region Copyright 2014 Exceptionless // This program is free software: you can redistribute it and/or modify it // under the terms of the GNU Affero General Public License as published // by the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // http://w...
#region Copyright 2014 Exceptionless // This program is free software: you can redistribute it and/or modify it // under the terms of the GNU Affero General Public License as published // by the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // http://w...
apache-2.0
C#
b93c79d9edbd5a3e8259b5f235c7877eac569ac6
Simplify LowCeremony convention.
fixie/fixie
src/Fixie.Samples/LowCeremony/CustomConvention.cs
src/Fixie.Samples/LowCeremony/CustomConvention.cs
namespace Fixie.Samples.LowCeremony { using System; using System.Linq; public class CustomConvention : Convention { static readonly string[] LifecycleMethods = { "FixtureSetUp", "FixtureTearDown", "SetUp", "TearDown" }; public CustomConvention() { Classes ...
namespace Fixie.Samples.LowCeremony { using System; using System.Linq; public class CustomConvention : Convention { static readonly string[] LifecycleMethods = { "FixtureSetUp", "FixtureTearDown", "SetUp", "TearDown" }; public CustomConvention() { Classes ...
mit
C#
ed2313dac17a6e0605b5e72dc7c0535427982f9f
Fix up versions in AssemblyInfoStatic
mono/dbus-sharp,Tragetaschen/dbus-sharp,mono/dbus-sharp,openmedicus/dbus-sharp,openmedicus/dbus-sharp,arfbtwn/dbus-sharp,Tragetaschen/dbus-sharp,arfbtwn/dbus-sharp
src/AssemblyInfoStatic.cs
src/AssemblyInfoStatic.cs
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details // This AssemblyInfo file is used in builds that aren't driven by autoconf, eg. Visual Studio using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyFileVersion...
// Copyright 2006 Alp Toker <alp@atoker.com> // This software is made available under the MIT License // See COPYING for details // This AssemblyInfo file is used in builds that aren't driven by autoconf, eg. Visual Studio using System.Reflection; using System.Runtime.CompilerServices; [assembly: AssemblyFileVersion...
mit
C#
5919e34461c96b5d023d6a2cc9d7f853b774da1b
Bump version
rileywhite/Cilador
src/CommonAssemblyInfo.cs
src/CommonAssemblyInfo.cs
/***************************************************************************/ // Copyright 2013-2014 Riley White // // 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.ap...
/***************************************************************************/ // Copyright 2013-2014 Riley White // // 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.ap...
apache-2.0
C#
f7c7a4c12afb473e079ca6afec44e8103ac94637
Change version to alpha2
fhchina/elmah-mvc,jmptrader/elmah-mvc,alexbeletsky/elmah-mvc,mmsaffari/elmah-mvc
src/CommonAssemblyInfo.cs
src/CommonAssemblyInfo.cs
using System.Reflection; [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Elmah.Mvc")] [assembly: AssemblyCopyright("Copyright © Atif Aziz, James Driscoll, Alexander Beletsky 2012")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] #if DEBUG [assembly: AssemblyConfiguration("Debug")] #els...
using System.Reflection; [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Elmah.Mvc")] [assembly: AssemblyCopyright("Copyright © Atif Aziz, James Driscoll, Alexander Beletsky 2012")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] #if DEBUG [assembly: AssemblyConfiguration("Debug")] #els...
apache-2.0
C#
89c38dc19c3eaabf7a4738e8c4a2f00b3a05fa18
Improve deprecation error message on SortQuery
Research-Institute/json-api-dotnet-core,json-api-dotnet/JsonApiDotNetCore,Research-Institute/json-api-dotnet-core
src/JsonApiDotNetCore/Internal/Query/SortQuery.cs
src/JsonApiDotNetCore/Internal/Query/SortQuery.cs
using JsonApiDotNetCore.Models; using System; namespace JsonApiDotNetCore.Internal.Query { /// <summary> /// An internal representation of the raw sort query. /// </summary> public class SortQuery : BaseQuery { [Obsolete("Use constructor overload (SortDirection, string) instead. The string ...
using JsonApiDotNetCore.Models; using System; namespace JsonApiDotNetCore.Internal.Query { /// <summary> /// An internal representation of the raw sort query. /// </summary> public class SortQuery : BaseQuery { [Obsolete("Use constructor overload (SortDirection, string) instead.", error: tr...
mit
C#
256951182a4d78f5575bd31c66754e40566750d7
Write exceptions to console error stream
astorch/motoi
src/libs/Tessa/EntryPoint.cs
src/libs/Tessa/EntryPoint.cs
using System; using System.Diagnostics; using System.IO; using System.Linq; namespace Tessa { /// <summary> Provides the entry point for the application. </summary> class EntryPoint { /// <summary> Implements the entry point of the application. </summary> /// <param name="args">Execut...
using System; using System.Diagnostics; using System.IO; using System.Linq; namespace Tessa { /// <summary> Provides the entry point for the application. </summary> class EntryPoint { /// <summary> Implements the entry point of the application. </summary> /// <param name="args">Execut...
mit
C#
2e0f99f70be9404d9c5685e0e1e793536d3dec68
Test where on enumerables mapping
chartjunk/SubMapper
test/EnumerableWhereTests.cs
test/EnumerableWhereTests.cs
using Microsoft.VisualStudio.TestTools.UnitTesting; using SubMapper.EnumerableMapping.Adders; using System.Collections.Generic; using System.Linq; namespace SubMapper.UnitTest { [TestClass] public class EnumerableWhereTests { [TestMethod] public void MapPartialUsingMultipleWhere() ...
using Microsoft.VisualStudio.TestTools.UnitTesting; using SubMapper.EnumerableMapping.Adders; using System.Linq; namespace SubMapper.UnitTest { [TestClass] public class EnumerableWhereTests { [TestMethod] public void MapUsingMultipleWhere() { var mapping = Mapping.FromT...
apache-2.0
C#
ed3045854d2deaa2e71daf841e8c3bd9803bbb41
Remove unnecessary "using" statements.
adebisi-fa/telegram.bot
src/Telegram.Bot/Types/Interfaces/IReplyMarkup.cs
src/Telegram.Bot/Types/Interfaces/IReplyMarkup.cs
namespace Telegram.Bot.Types.Interfaces { public interface IReplyMarkup { } }
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Telegram.Bot.Types.Interfaces { public interface IReplyMarkup { } }
mit
C#
9f8f420368e53f21fe950507777f8ca87fd6d5f6
improve test program
nerai/CMenu
src/ConsoleMenu/Program.cs
src/ConsoleMenu/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleMenu { /// <summary> /// Test program for CMenu. /// </summary> class Program { static CMenu menu; static void Main (string[] args) { Basics (); InputModification (); CaseSensitivity (); } ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleMenu { /// <summary> /// Test program for CMenu. /// </summary> class Program { static CMenu menu; static void Main (string[] args) { Basics (); InputModification (); CaseSensitivity (); } ...
mit
C#
1549f011a9cfabbe00ea82343fae057943b6a3b4
Add IsVersionOrLater method
ektrah/nsec
src/Cryptography/Sodium.cs
src/Cryptography/Sodium.cs
using System; using static Interop.Libsodium; namespace NSec.Cryptography { internal static class Sodium { private static readonly Lazy<int> s_initialized = new Lazy<int>(new Func<int>(sodium_init)); private static readonly Lazy<int> s_versionMajor = new Lazy<int>(new Func<int>(sodium_library_v...
using System; using static Interop.Libsodium; namespace NSec.Cryptography { internal static class Sodium { private static readonly Lazy<int> s_initialized = new Lazy<int>(new Func<int>(sodium_init)); private static readonly Lazy<int> s_versionMajor = new Lazy<int>(new Func<int>(sodium_library_v...
mit
C#
c8b2052fb45521e230e8586607423baa5a7b6f01
add one more summary
HattMarris1/HoloToolkit-Unity,ForrestTrepte/HoloToolkit-Unity,willcong/HoloToolkit-Unity,paseb/HoloToolkit-Unity,paseb/MixedRealityToolkit-Unity,dbastienMS/HoloToolkit-Unity,chadbramwell/HoloToolkit-Unity,NeerajW/HoloToolkit-Unity,out-of-pixel/HoloToolkit-Unity,HoloFan/HoloToolkit-Unity
Assets/HoloToolkit/Utilities/Scripts/FileSystemHelper.cs
Assets/HoloToolkit/Utilities/Scripts/FileSystemHelper.cs
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. #if UNITY_EDITOR using UnityEngine; namespace HoloToolkit.Unity { /// <summary> /// Helper functions for file I/O /// </summary> public static class...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. #if UNITY_EDITOR using UnityEngine; namespace HoloToolkit.Unity { public static class FileSystemHelper { public static void WriteBytesToLocalFile(st...
mit
C#
2bf3053f1d96c5b4df2b54964a6e668be86e4ac1
expand customer fields
tbstudee/IntacctClient
Entities/IntacctCustomer.cs
Entities/IntacctCustomer.cs
using System.Collections.Generic; using System.Linq; using System.Xml.Linq; using Intacct.Infrastructure; namespace Intacct.Entities { [IntacctName("customer")] public class IntacctCustomer : IntacctObject { [IntacctName("customerid")] public string Id { get; set; } public string Name { get; set; } ...
using System.Collections.Generic; using System.Linq; using System.Xml.Linq; using Intacct.Infrastructure; namespace Intacct.Entities { [IntacctName("customer")] public class IntacctCustomer : IntacctObject { [IntacctName("customerid")] public string Id { get; set; } public string Name { get; set; } public ...
mit
C#
e0b459062c8b24e23c5703589f7cc6aef52708c8
Revert "Fixes #400 Added command line help information."
anobleperson/GitVersion,anobleperson/GitVersion,anobleperson/GitVersion
GitVersionExe/HelpWriter.cs
GitVersionExe/HelpWriter.cs
namespace GitVersion { using System; class HelpWriter { public static void Write() { WriteTo(Console.WriteLine); } public static void WriteTo(Action<string> writeAction) { const string message = @"Use convention to derive a SemVer product ver...
namespace GitVersion { using System; class HelpWriter { public static void Write() { WriteTo(Console.WriteLine); } public static void WriteTo(Action<string> writeAction) { const string message = @"Use convention to derive a SemVer product ver...
mit
C#
3df04b284ee5a88cc4ee8f6c57e8433c1a751fe6
test upgrade
fandrei/AppMetrics,fandrei/AppMetrics
HeavyLoadTest/TestRunner.cs
HeavyLoadTest/TestRunner.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using AppMetrics.Client; namespace HeavyLoadTest { class TestRunner : MarshalByRefObject { public long Execute(string url) { try { var tracker = new Tracker(url, "HeavyLoadTes...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using AppMetrics.Client; namespace HeavyLoadTest { class TestRunner : MarshalByRefObject { public long Execute(string url) { try { var tracker = new Tracker(url, "HeavyLoadTes...
apache-2.0
C#
63491d3e7b3b1ef7caf7c0364c40b24938e979d2
Update AssemblyInfo
sakapon/Tools-2017
EventLogPicker/EventLogPicker/Properties/AssemblyInfo.cs
EventLogPicker/EventLogPicker/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // アセンブリに関する一般情報は以下の属性セットをとおして制御されます。 // アセンブリに関連付けられている情報を変更するには、 // これらの属性値を変更してください。 [assembly: AssemblyTitle("Event Log Picker")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")]...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // アセンブリに関する一般情報は以下の属性セットをとおして制御されます。 // アセンブリに関連付けられている情報を変更するには、 // これらの属性値を変更してください。 [assembly: AssemblyTitle("EventLogPicker")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] ...
mit
C#
2b7bf558caa5b7e72ec94f8ec10fec3c369b2e11
add displayFormat for Date and Amount
hatelove/MyMvcHomework,hatelove/MyMvcHomework,hatelove/MyMvcHomework
MyMoney/MyMoney/Models/ViewModels/AccountingViewModel.cs
MyMoney/MyMoney/Models/ViewModels/AccountingViewModel.cs
using MyMoney.Models.Enums; using System; using System.ComponentModel.DataAnnotations; namespace MyMoney.Models.ViewModels { public class AccountingViewModel { //[DataType(DataType.Currency)] [DisplayFormat(DataFormatString ="{0:N0}")] public int Amount { get; internal set; } ...
using System; using MyMoney.Models.Enums; namespace MyMoney.Models.ViewModels { public class AccountingViewModel { public int Amount { get; internal set; } public DateTime Date { get; internal set; } public string Remark { get; internal set; } public AccountingType Type { get; ...
mit
C#
e4cb01518ee4b5795fdbeb577824a8a6f039b478
add ViewModel's property Remark with DateType Attribute for MultilineText
hatelove/MyMvcHomework,hatelove/MyMvcHomework,hatelove/MyMvcHomework
MyMoney/MyMoney/Models/ViewModels/AccountingViewModel.cs
MyMoney/MyMoney/Models/ViewModels/AccountingViewModel.cs
using MyMoney.Models.CustomValidationAttributes; using MyMoney.Models.Enums; using System; using System.ComponentModel.DataAnnotations; namespace MyMoney.Models.ViewModels { public class AccountingViewModel { [Display(Name = "金額")] [DisplayFormat(DataFormatString = "{0:N0}")] [Range(0,...
using MyMoney.Models.CustomValidationAttributes; using MyMoney.Models.Enums; using System; using System.ComponentModel.DataAnnotations; namespace MyMoney.Models.ViewModels { public class AccountingViewModel { [Display(Name = "金額")] [DisplayFormat(DataFormatString = "{0:N0}")] [Range(0,...
mit
C#
07da8db262a091c2769a8557705286f1e8f33deb
split case now works for pulling subaccount title and info
ucdavis/Purchasing,ucdavis/Purchasing,ucdavis/Purchasing
Purchasing.Web/Views/Order/_AccountSelectTemplate.cshtml
Purchasing.Web/Views/Order/_AccountSelectTemplate.cshtml
<div class="account-container"> <select data-bind="foreach: $root.accounts, value: account, splitName: 'Account'" class="account-number" title="No Account Selected"> <option data-bind="value: id, text: text, attr: { title: title }"></option> </select> <span class="ui-state-default ui-corner-all ui-...
<div class="account-container"> <select data-bind="foreach: $root.accounts, value: account, splitName: 'Account'" class="account-number" title="No Account Selected"> <option data-bind="value: id, text: text, attr: { title: title }"></option> </select> <span class="ui-state-default ui-corner-all ui-...
mit
C#
de52197da9fd7e26f2397103afe001fa37db7a66
Update Assembly version
twenzel/Cake.MarkdownToPdf,twenzel/Cake.MarkdownToPdf,twenzel/Cake.MarkdownToPdf
src/Cake.MarkdownToPdf/Properties/AssemblyInfo.cs
src/Cake.MarkdownToPdf/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("Cak...
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("Cak...
mit
C#
58ea716ba826335df44c81c076a5c80c771b56dd
Fix for compatibility with AppVeyor
Kralizek/Nybus,Nybus-project/Nybus
src/MassTransit/MassTransit/MassTransitOptions.cs
src/MassTransit/MassTransit/MassTransitOptions.cs
using System; using Nybus.Configuration; using Nybus.Logging; namespace Nybus.MassTransit { public class MassTransitOptions { public IQueueStrategy CommandQueueStrategy { get; set; } = new AutoGeneratedNameQueueStrategy(); public IErrorStrategy CommandErrorStrategy { get; set; } = new RetryEr...
using System; using Nybus.Configuration; using Nybus.Logging; namespace Nybus.MassTransit { public class MassTransitOptions { public IQueueStrategy CommandQueueStrategy { get; set; } = new AutoGeneratedNameQueueStrategy(); public IErrorStrategy CommandErrorStrategy { get; set; } = new RetryEr...
mit
C#
47dedee7a57372b90c11ddbeab41ff7e074e560f
Add Xamarin.iOS platform targets to MSBuildSettings PlatformTarget enumeration
cake-build/cake,gep13/cake,cake-build/cake,devlead/cake,gep13/cake,patriksvensson/cake,devlead/cake,patriksvensson/cake
src/Cake.Common/Tools/MSBuild/PlatformTarget.cs
src/Cake.Common/Tools/MSBuild/PlatformTarget.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. namespace Cake.Common.Tools.MSBuild { /// <summary> /// Represents a MSBuild platform target. /// </summ...
// 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. namespace Cake.Common.Tools.MSBuild { /// <summary> /// Represents a MSBuild platform target. /// </summ...
mit
C#
f15594eb21ed2d06b95b91195e94a332d9209a3a
Update ITextFieldWriter.cs
Core2D/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D,wieslawsoltes/Core2D
src/Core2D/Model/Interfaces/ITextFieldWriter.cs
src/Core2D/Model/Interfaces/ITextFieldWriter.cs
using System.IO; namespace Core2D.Interfaces { /// <summary> /// Defines text field writer contract. /// </summary> /// <typeparam name="T">The database type.</typeparam> public interface ITextFieldWriter<T> { /// <summary> /// Gets text field writer name. /// </summary...
 namespace Core2D.Interfaces { /// <summary> /// Defines text field writer contract. /// </summary> /// <typeparam name="T">The database type.</typeparam> public interface ITextFieldWriter<T> { /// <summary> /// Write database records to text based file format. /// </sum...
mit
C#
413a7709900f405ade52b49bd0a41b50df6039cd
Remove packages after restoring in deploy_local.csx
mrahhal/Migrator.EF6
deploy_local.csx
deploy_local.csx
using System; using System.IO; using System.Text.RegularExpressions; using System.Diagnostics; using System.Linq; var cd = Environment.CurrentDirectory; var projectName = "Migrator.EF6.Tools"; var userName = Environment.UserName; var userProfileDirectory = Environment.GetFolderPath(Environment.SpecialFolder.UserProfil...
using System; using System.IO; using System.Text.RegularExpressions; using System.Diagnostics; using System.Linq; var cd = Environment.CurrentDirectory; var projectName = "Migrator.EF6.Tools"; var userName = Environment.UserName; var userProfileDirectory = Environment.GetFolderPath(Environment.SpecialFolder.UserProfil...
mit
C#
39889c40aeac39e5780f16cbcc2ad53c9465428f
Add extra test case
scott-fleischman/algorithms-csharp
tests/Algorithms.Sort.Tests/InsertionSortTests.cs
tests/Algorithms.Sort.Tests/InsertionSortTests.cs
using System.Collections.Generic; using NUnit.Framework; namespace Algorithms.Sort.Tests { public class InsertionSortTests { [TestCase(new[] { 5, 2, 4, 6, 1, 3 }, new[] { 1, 2, 3, 4, 5, 6 })] [TestCase(new[] { 31, 41, 59, 26, 41, 58 }, new[] { 26, 31, 41, 41, 58, 59 })] public void TestSortInPlace(in...
using System.Collections.Generic; using NUnit.Framework; namespace Algorithms.Sort.Tests { public class InsertionSortTests { [Test] public void TestSortInPlace() { var expected = new[] { 1, 2, 3, 4, 5, 6 }; var list = new List<int> { 5, 2, 4, 6, 1, 3 }; InsertionSort.SortInPlace(list); ...
mit
C#
870d7ab98b7089a3ce4abb76401d99b36ae75fe7
Revert making `TextureLoaderStore` ctor internal for now
smoogipooo/osu-framework,ppy/osu-framework,peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework
osu.Framework/Graphics/Textures/TextureLoaderStore.cs
osu.Framework/Graphics/Textures/TextureLoaderStore.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using System; using System.Collections.Generic; using System.IO; using System.Threading; using System.Threading.Tasks; using osu.Framework.IO.Stores; ...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using System; using System.Collections.Generic; using System.IO; using System.Threading; using System.Threading.Tasks; using osu.Framework.IO.Stores; ...
mit
C#
ffa0cf2d44174c870c5c0dc2173b73e9ba496a89
Add comment detailing why this is requried
2yangk23/osu,EVAST9919/osu,UselessToucan/osu,peppy/osu,2yangk23/osu,ppy/osu,smoogipoo/osu,peppy/osu,ppy/osu,johnneijzen/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,NeoAdonis/osu,smoogipoo/osu,UselessToucan/osu,peppy/osu-new,smoogipooo/osu,EVAST9919/osu,johnneijzen/osu,NeoAdonis/osu
osu.Game/Graphics/UserInterface/DimmedLoadingLayer.cs
osu.Game/Graphics/UserInterface/DimmedLoadingLayer.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 osuTK.Graphics; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Framework.Extensions.Color4Ex...
// 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 osuTK.Graphics; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Framework.Extensions.Color4Ex...
mit
C#
bb0a7efda38f5bd4b0d82c565dd0fa37681abf19
Fix the broken doc build.
killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity
Assets/MixedRealityToolkit/Utilities/CameraEventRouter.cs
Assets/MixedRealityToolkit/Utilities/CameraEventRouter.cs
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using UnityEngine; namespace Microsoft.MixedReality.Toolkit.Utilities { /// <summary> /// A helper class to provide hooks into the Unity camera exclusive Lifecycle events /// </summary> publi...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using UnityEngine; namespace Microsoft.MixedReality.Toolkit.Utilities { /// <summary> /// A helper class to provide hooks into the Unity camera exclusive Lifecycle events /// </summary> publi...
mit
C#
44aa2a4e76dc6cb857b740f8fabb34e537020c18
Add problem 4. Photo Gallery
Peter-Georgiev/Programming.Fundamentals,Peter-Georgiev/Programming.Fundamentals
BasicSyntax-MoreExercises/04.PhotoGallery/PhotoGallery.cs
BasicSyntax-MoreExercises/04.PhotoGallery/PhotoGallery.cs
using System; class PhotoGallery { static void Main() { int photosNumber = int.Parse(Console.ReadLine()); int day = int.Parse(Console.ReadLine()); int month = int.Parse(Console.ReadLine()); int year = int.Parse(Console.ReadLine()); int hours = int.Parse(Console.ReadLine...
using System; class PhotoGallery { static void Main() { } }
mit
C#
649c3a8c11fc8c94489ab0cfe067e6e06e371fc8
Increment version to 1.1.0.11
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#
575de0ea038f865f40b0ef27ba523de7b994e016
Fix tagstring
davidebbo-test/BlogConverter
BlogConverter/Program.cs
BlogConverter/Program.cs
using HtmlAgilityPack; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Linq; namespace BlogConverter { class Program { static void Main(string[] args) { var root = XElement.Load(ar...
using HtmlAgilityPack; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Linq; namespace BlogConverter { class Program { static void Main(string[] args) { var root = XElement.Load(ar...
apache-2.0
C#
5a67218965bbbcbe96b1b4d1cc7f0fdaf36b236f
Make WaitHandle finalization-safe
jonathanvdc/flame-llvm,jonathanvdc/flame-llvm,jonathanvdc/flame-llvm
stdlib/system-threading/WaitHandle.cs
stdlib/system-threading/WaitHandle.cs
namespace System.Threading { /// <summary> /// A handle on which one can wait. /// </summary> public abstract class WaitHandle : IDisposable { // NOTE: this WaitHandle implementation is non-conforming. // 'WaitOne()' and 'Dispose(bool)' are abstract instead of // virtual. ...
namespace System.Threading { /// <summary> /// A handle on which one can wait. /// </summary> public abstract class WaitHandle : IDisposable { // NOTE: this WaitHandle implementation is non-conforming. // 'WaitOne()' and 'Dispose(bool)' are abstract instead of // virtual. ...
mit
C#
9dd2527ff723b727b6a946cc43c7aea95609383c
remove deprecated method
reinterpretcat/utymap,reinterpretcat/utymap,reinterpretcat/utymap
unity/demo/Assets/Scripts/Scene/UnityModelBuilder.cs
unity/demo/Assets/Scripts/Scene/UnityModelBuilder.cs
using UnityEngine; using UtyDepend; using UtyMap.Unity; using Mesh = UtyMap.Unity.Mesh; namespace Assets.Scripts.Scene { /// <summary> /// Responsible for building Unity game objects from meshes and elements. /// </summary> internal class UnityModelBuilder { private readonly MaterialPr...
using UnityEngine; using UtyDepend; using UtyMap.Unity; using Mesh = UtyMap.Unity.Mesh; namespace Assets.Scripts.Scene { /// <summary> /// Responsible for building Unity game objects from meshes and elements. /// </summary> internal class UnityModelBuilder { private readonly MaterialPr...
apache-2.0
C#
c00e944eb53afad7ffe64c65bf76a7224c3497c5
increase Title size
AlejandroCano/extensions,signumsoftware/extensions,signumsoftware/framework,MehdyKarimpour/extensions,signumsoftware/extensions,MehdyKarimpour/extensions,signumsoftware/framework,AlejandroCano/extensions
Signum.Entities.Extensions/Excel/ExcelAttachmentEntity.cs
Signum.Entities.Extensions/Excel/ExcelAttachmentEntity.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Signum.Entities; using Signum.Entities.Basics; using Signum.Utilities; using Signum.Entities.Files; using System.Linq.Expressions; using System.ComponentModel; using Signum.Utilities.ExpressionTrees; using Signum.Ent...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Signum.Entities; using Signum.Entities.Basics; using Signum.Utilities; using Signum.Entities.Files; using System.Linq.Expressions; using System.ComponentModel; using Signum.Utilities.ExpressionTrees; using Signum.Ent...
mit
C#
a62a175e8d05103b74c8a41890e8666e6add108a
fix clipboard error
Foglio1024/Tera-custom-cooldowns,Foglio1024/Tera-custom-cooldowns
TCC.Core/Controls/ChatControls/DefaultMessageBody.xaml.cs
TCC.Core/Controls/ChatControls/DefaultMessageBody.xaml.cs
using System.Windows; using System.Windows.Controls; using System.Windows.Input; using TCC.Data; namespace TCC.Controls.ChatControls { /// <summary> /// Interaction logic for DefaultMessageBody.xaml /// </summary> public partial class DefaultMessageBody : UserControl { public DefaultMessag...
using System.Windows; using System.Windows.Controls; using System.Windows.Input; using TCC.Data; namespace TCC.Controls.ChatControls { /// <summary> /// Interaction logic for DefaultMessageBody.xaml /// </summary> public partial class DefaultMessageBody : UserControl { public DefaultMessag...
mit
C#