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 |
|---|---|---|---|---|---|---|---|---|
1e8c2224c744fe90fd4e844e31e27fba17ee37ce | bump version | Fody/PropertyChanged | CommonAssemblyInfo.cs | CommonAssemblyInfo.cs | using System.Reflection;
[assembly: AssemblyTitle("PropertyChanged")]
[assembly: AssemblyProduct("PropertyChanged")]
[assembly: AssemblyCompany("Simon Cropp and Contributors")]
[assembly: AssemblyDescription("Fody add-in for injecting INotifyPropertyChanged code into properties.")]
[assembly: AssemblyVersion("2.1.2")... | using System.Reflection;
[assembly: AssemblyTitle("PropertyChanged")]
[assembly: AssemblyProduct("PropertyChanged")]
[assembly: AssemblyCompany("Simon Cropp and Contributors")]
[assembly: AssemblyDescription("Fody add-in for injecting INotifyPropertyChanged code into properties.")]
[assembly: AssemblyVersion("2.1.1")... | mit | C# |
6d5669450b6e1cf322b0c9eb175f17ae59e1d167 | fix color grader description | ruarai/Trigrad,ruarai/Trigrad | Trigrad/ColorGraders/TriGrader.cs | Trigrad/ColorGraders/TriGrader.cs | using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PixelMapSharp;
using Trigrad.DataTypes;
namespace Trigrad.ColorGraders
{
/// <summary> Color grader that fills the triangle with the first sample color. </summary>
pu... | using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PixelMapSharp;
using Trigrad.DataTypes;
namespace Trigrad.ColorGraders
{
/// <summary> Color grader that fills the triangle with an average of the three vertice samples. ... | mit | C# |
f6fd4919cdeca451c82e7ca99799e969a5293272 | update version | cornem/vimeo-dot-net,needham-develop/vimeo-dot-net,justinspradlin/vimeo-dot-net,agricfowl/vimeo-dot-net,mfilippov/vimeo-dot-net,mohibsheth/vimeo-dot-net | VimeoDotNet/SharedAssemblyInfo.cs | VimeoDotNet/SharedAssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Stephen Commisso")]
[assembly: AssemblyProduct("VimeoDotNet")]
[assembly: AssemblyCopyright("Copyright © 2014, Stephen Commisso")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM componen... | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Stephen Commisso")]
[assembly: AssemblyProduct("VimeoDotNet")]
[assembly: AssemblyCopyright("Copyright © 2014, Stephen Commisso")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM componen... | mit | C# |
a2151279b26d9ecb39f16b41bbf22ddb60c624b6 | Bump version | jasonwoods-7/Vandelay | GlobalAssemblyInfo.cs | GlobalAssemblyInfo.cs | using System.Reflection;
[assembly: AssemblyVersion("0.2.3.0")]
[assembly: AssemblyFileVersion("0.2.3.0")]
[assembly: AssemblyCopyright("Copyright 2015-2017")]
| using System.Reflection;
[assembly: AssemblyVersion("0.2.2.1")]
[assembly: AssemblyFileVersion("0.2.2.1")]
[assembly: AssemblyCopyright("Copyright 2015-2016")]
| mit | C# |
2d7f9bf29045e9096ad8cb9dc672a05ad6ab7c97 | Revert RoomCategory naming change to avoid json deserialization failures | ppy/osu,peppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,peppy/osu-new,ppy/osu,UselessToucan/osu,UselessToucan/osu,smoogipooo/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu | osu.Game/Online/Rooms/RoomCategory.cs | osu.Game/Online/Rooms/RoomCategory.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
namespace osu.Game.Online.Rooms
{
public enum RoomCategory
{
// used for osu-web deserialization so names shouldn't be changed.
Normal,
Sp... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
namespace osu.Game.Online.Rooms
{
public enum RoomCategory
{
Normal,
Spotlight,
Multiplayer,
}
}
| mit | C# |
a8845b914c6e67878e1f07841230b3d079d4f4b2 | add attribution | mcdrummerman/Translatorizer,mcdrummerman/Translatorizer | AssemblyInfo.cs | AssemblyInfo.cs | using System.Reflection;
//
// 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: AssemblyProductAttribute("Translatorizer")]
[assembly: AssemblyCompanyAttribute("RedFern... | using System.Reflection;
//
// 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: AssemblyProductAttribute("Translatorizer")]
[assembly: AssemblyCompanyAttribute("RedFern... | apache-2.0 | C# |
76a98fe28bcf3db056401040b962b666f64de96f | Make SourceRectangle nullable so it doesn't crash. | ethanmoffat/EndlessClient | EndlessClient/UIControls/PictureBox.cs | EndlessClient/UIControls/PictureBox.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
using EOLib;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using XNAControls;
namespace EndlessClient.UIControls
{
public class PictureBox :... | // Original Work Copyright (c) Ethan Moffat 2014-2016
// This file is subject to the GPL v2 License
// For additional details, see the LICENSE file
using EOLib;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using XNAControls;
namespace EndlessClient.UIControls
{
public class PictureBox :... | mit | C# |
07ec163daa856235a5046d2428b2a924c41478bd | Fix version fallback logic | 2yangk23/osu,UselessToucan/osu,johnneijzen/osu,NeoAdonis/osu,2yangk23/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu,johnneijzen/osu,peppy/osu,ppy/osu,peppy/osu-new,EVAST9919/osu,smoogipoo/osu,NeoAdonis/osu,ZLima12/osu,EVAST9919/osu,peppy/osu,ppy/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,smoogipoo/osu,ZLima12/osu,smoo... | osu.Android/OsuGameAndroid.cs | osu.Android/OsuGameAndroid.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 Android.App;
using osu.Game;
using osu.Game.Updater;
namespace osu.Android
{
public class OsuGameAndroid : OsuGame
{
public override... | // 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 Android.App;
using osu.Game;
namespace osu.Android
{
public class OsuGameAndroid : OsuGame
{
public override Version AssemblyVersion... | mit | C# |
461ccf361322156e9587d88422bf2a64120a46a6 | Make foreign key converter thread-safe. | ZhangLeiCharles/mobile,eatskolnikov/mobile,eatskolnikov/mobile,masterrr/mobile,peeedge/mobile,ZhangLeiCharles/mobile,masterrr/mobile,peeedge/mobile,eatskolnikov/mobile | Phoebe/Data/ForeignKeyJsonConverter.cs | Phoebe/Data/ForeignKeyJsonConverter.cs | using System;
using Newtonsoft.Json;
namespace Toggl.Phoebe.Data
{
public class ForeignKeyJsonConverter : JsonConverter
{
public override void WriteJson (JsonWriter writer, object value, JsonSerializer serializer)
{
var model = (Model)value;
if (model == null) {
... | using System;
using Newtonsoft.Json;
namespace Toggl.Phoebe.Data
{
public class ForeignKeyJsonConverter : JsonConverter
{
public override void WriteJson (JsonWriter writer, object value, JsonSerializer serializer)
{
var model = (Model)value;
if (model == null) {
... | bsd-3-clause | C# |
c5b73e4c7971eac30de0bcadb1ff6580e2d4c7e8 | Update SkillsController.cs | NinjaVault/NinjaHive,NinjaVault/NinjaHive | NinjaHive.WebApp/Controllers/SkillsController.cs | NinjaHive.WebApp/Controllers/SkillsController.cs | using System;
using System.Web.Mvc;
using NinjaHive.Contract.Commands;
using NinjaHive.Contract.DTOs;
using NinjaHive.Contract.Queries;
using NinjaHive.Core;
using NinjaHive.WebApp.Services;
namespace NinjaHive.WebApp.Controllers
{
public class SkillsController : Controller
{
private readonly IQueryPr... | using System;
using System.Web.Mvc;
using NinjaHive.Contract.Commands;
using NinjaHive.Contract.DTOs;
using NinjaHive.Contract.Queries;
using NinjaHive.Core;
using NinjaHive.WebApp.Services;
namespace NinjaHive.WebApp.Controllers
{
public class SkillsController : Controller
{
private readonly IQueryPr... | apache-2.0 | C# |
8c571a8100327491aa05b681445837466ce291d8 | Remove imports | mikemajesty/coolvalidator | CoolValidator/Errors.cs | CoolValidator/Errors.cs | namespace CoolValidator
{
public class Errors
{
public string Erro { get; set; }
public string Field { get; set; }
}
}
| using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CoolValidator
{
public class Errors
{
public string Erro { get; set; }
public string Field { get; set; }
}
}
| mit | C# |
716deb43b305554e696ace5c44d5ee260f0c68f5 | update nuget | weitaolee/Orleans.EventSourcing | Orleans.EventSourcing/Properties/AssemblyInfo.cs | Orleans.EventSourcing/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过以下
// 特性集控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Orleans.EventSourcing")]
[assembly: AssemblyDescription("Orleans Event-Sourcing Libary")]
[assembly: AssemblyConfiguration("")]
... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过以下
// 特性集控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Orleans.EventSourcing")]
[assembly: AssemblyDescription("Orleans Event-Sourcing Libary")]
[assembly: AssemblyConfiguration("")]
... | mit | C# |
7059310993543eadf31a94b6178d9790fa466de0 | Implement rest call to get teams. | makmu/outlook-matters,makmu/outlook-matters | OutlookMatters.Core/Mattermost/v4/RestService.cs | OutlookMatters.Core/Mattermost/v4/RestService.cs | using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using OutlookMatters.Core.Http;
using OutlookMatters.Core.Mattermost.v4.Interface;
namespace OutlookMatters.Core.Mattermost.v4
{
public class RestService : IRestService
{
private readonly IHttpClient _httpClient;
public Re... | using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using OutlookMatters.Core.Http;
using OutlookMatters.Core.Mattermost.v4.Interface;
namespace OutlookMatters.Core.Mattermost.v4
{
public class RestService : IRestService
{
private readonly IHttpClient _httpClient;
public Re... | mit | C# |
2959a622fbca88acb7c2df638c43bea4ecf372ad | Fix import error in demo. | justinjstark/Verdeler,justinjstark/Delivered | Demo/Program.cs | Demo/Program.cs | using System;
using System.Collections.Generic;
using Demo.Endpoints.FileSystem;
using Demo.Endpoints.Sharepoint;
using Distributor;
namespace Demo
{
internal class Program
{
private static void Main(string[] args)
{
var distributables = new List<DistributableFile>
{
... | using System;
using System.Collections.Generic;
using Demo.Endpoints;
using Distributor;
namespace Demo
{
internal class Program
{
private static void Main(string[] args)
{
var distributables = new List<DistributableFile>
{
new DistributableFile
... | mit | C# |
0f326023716fc4558f154e04647de4c70c6bdd46 | Fix bug with TextItem alpha | golf1052/GLX | GLX/TextItem.cs | GLX/TextItem.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
namespace GLX
{
public class TextItem : SpriteBase
{
public SpriteFont font;
string _text;
public string text
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
namespace GLX
{
public class TextItem : SpriteBase
{
public SpriteFont font;
string _text;
public string text
{
... | mit | C# |
262b584b6a7809d0544c4cd441be1692c2aa3095 | update version to 1.0.6 | DevExpress/BigQueryProvider | BigQueryProvider/Properties/AssemblyInfo.cs | BigQueryProvider/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("DevExpress.DataAccess.BigQuery")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("DevExpress.DataAccess.BigQuery")]
[assembly: AssemblyCopyrigh... | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("DevExpress.DataAccess.BigQuery")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("DevExpress.DataAccess.BigQuery")]
[assembly: AssemblyCopyrigh... | apache-2.0 | C# |
693dcdb9f32f4cae86590e68b825f353675a7bd4 | Update WilliamRodriguez.cs | MabroukENG/planetxamarin,stvansolano/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,stvansolano/planetxamarin,stvansolano/planetxamarin,beraybentesen/planetxamarin,MabroukENG/planetxamarin,beraybentesen/planetxamarin,planetxamarin/planetxamarin,beraybentesen/planetxamarin,planetxamarin/planetxama... | src/Firehose.Web/Authors/WilliamRodriguez.cs | src/Firehose.Web/Authors/WilliamRodriguez.cs | using Firehose.Web.Infrastructure;
using System;
using System.Linq;
using System.Collections.Generic;
using System.ServiceModel.Syndication;
namespace Firehose.Web.Authors
{
public class WilliamRodriguez : IAmAMicrosoftMVP, IAmAXamarinMVP
{
public string FirstName => "William";
public string L... | using Firehose.Web.Infrastructure;
using System;
using System.Linq;
using System.Collections.Generic;
using System.ServiceModel.Syndication;
namespace Firehose.Web.Authors
{
public class WilliamRodriguez : IAmAMicrosoftMVP, IAmAXamarinMVP
{
public string FirstName => "William";
public string L... | mit | C# |
b78b2900dfe3dc835e0e79f6e542672826bdbc9a | Adjust GitStatusOptions to match structure of native libgit2 | PKRoma/libgit2sharp,libgit2/libgit2sharp | LibGit2Sharp/Core/GitStatusOptions.cs | LibGit2Sharp/Core/GitStatusOptions.cs | using System;
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core
{
[StructLayout(LayoutKind.Sequential)]
internal class GitStatusOptions : IDisposable
{
public uint Version = 1;
public GitStatusShow Show;
public GitStatusOptionFlags Flags;
public GitStrArra... | using System;
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core
{
[StructLayout(LayoutKind.Sequential)]
internal class GitStatusOptions : IDisposable
{
public uint Version = 1;
public GitStatusShow Show;
public GitStatusOptionFlags Flags;
public GitStrArra... | mit | C# |
3284266192461ae5a55c1079ae131f302fb26535 | Swap human/zombie spawn input so you can spawn zombies on touch screens | futurechris/zombai | Assets/Scripts/UserInput.cs | Assets/Scripts/UserInput.cs | using UnityEngine;
using UnityEngine.EventSystems;
using System.Collections;
public class UserInput : MonoBehaviour, IPointerClickHandler {
// void Start(){}
// void Update(){}
// Mutually exclusive for now, priority is in the following order:
// Left click for human,
// Right for zombie,
// Middle for corpse
... | using UnityEngine;
using UnityEngine.EventSystems;
using System.Collections;
public class UserInput : MonoBehaviour, IPointerClickHandler {
// void Start(){}
// void Update(){}
// Mutually exclusive for now, priority is in the following order:
// Left click for human,
// Right for zombie,
// Middle for corpse
... | mit | C# |
ed6c3e80233af477dedfd65f7a167f4252133a7d | Replace default parameter with overload | MHeasell/Mappy,MHeasell/Mappy | Mappy/UI/Drawables/DrawableBandbox.cs | Mappy/UI/Drawables/DrawableBandbox.cs | namespace Mappy.UI.Drawables
{
using System;
using System.Drawing;
public class DrawableBandbox : IDrawable, IDisposable
{
private readonly Brush fillBrush;
private readonly Pen borderPen;
public DrawableBandbox(Brush fillBrush, Pen borderPen, Size size)
{... | namespace Mappy.UI.Drawables
{
using System;
using System.Drawing;
public class DrawableBandbox : IDrawable, IDisposable
{
private readonly Brush fillBrush;
private readonly Pen borderPen;
public DrawableBandbox(Brush fillBrush, Pen borderPen, Size size)
{... | mit | C# |
5c3b92bcae05111479950478d1173ae92c37d749 | Increase version to 1.9 to reflect the new AdhocQuery capability change. | G3N7/MonJobs | MonJobs/Properties/AssemblyInfo.cs | MonJobs/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("Mo... | 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# |
348e7a5a6a2a6a66f46cb1f9ac7ef23851d79ca8 | Use *our* serialiser! | modulexcite/DartVS,modulexcite/DartVS,modulexcite/DartVS,DartVS/DartVS,DartVS/DartVS,DartVS/DartVS | DanTup.DartAnalysis/Infrastructure/Event.cs | DanTup.DartAnalysis/Infrastructure/Event.cs |
namespace DanTup.DartAnalysis
{
/// <summary>
/// Represents an event raised by the Analysis Service that has
/// type parameters.
/// </summary>
/// <typeparam name="TParams">The type of the paramters for this event.</typeparam>
class Event<TParams> : Event
{
public TParams @params = default(TParams);
}
... | using System.Web.Script.Serialization;
namespace DanTup.DartAnalysis
{
/// <summary>
/// Represents an event raised by the Analysis Service that has
/// type parameters.
/// </summary>
/// <typeparam name="TParams">The type of the paramters for this event.</typeparam>
class Event<TParams> : Event
{
public TP... | mit | C# |
479a1b7d5339fa1144a488cdf359b0d18a8a9800 | Move local function. | FacilityApi/Facility | tools/Build/Build.cs | tools/Build/Build.cs | using System;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using Faithlife.Build;
using static Faithlife.Build.AppRunner;
using static Faithlife.Build.BuildUtility;
using static Faithlife.Build.DotNetRunner;
internal static class Build
{
public static int Main(string[] args) => BuildRunne... | using System;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using Faithlife.Build;
using static Faithlife.Build.AppRunner;
using static Faithlife.Build.BuildUtility;
using static Faithlife.Build.DotNetRunner;
internal static class Build
{
public static int Main(string[] args) => BuildRunne... | mit | C# |
d4027ad4c3fdaa0f942da0bbc64965b60209c2dc | Set thread culture | ankurMalhotra/shouldly,chaitanyagurrapu/shouldly,JoeMighty/shouldly,AmadeusW/shouldly | src/Shouldly.Tests/TestHelpers/ShouldlyShouldFailureTestScenario.cs | src/Shouldly.Tests/TestHelpers/ShouldlyShouldFailureTestScenario.cs | using System.Globalization;
using System.Threading;
using NUnit.Framework;
namespace Shouldly.Tests.TestHelpers
{
[TestFixture]
public abstract class ShouldlyShouldFailureTestScenario
{
protected abstract void ShouldThrowAWobbly();
protected abstract string ChuckedAWobblyErrorMessage { get;... | using NUnit.Framework;
namespace Shouldly.Tests.TestHelpers
{
[TestFixture]
public abstract class ShouldlyShouldFailureTestScenario
{
protected abstract void ShouldThrowAWobbly();
protected abstract string ChuckedAWobblyErrorMessage { get; }
[Test]
public void ShouldMethodS... | bsd-3-clause | C# |
08e5a6c5f8db6ff7c66ccdd9eea0b37c32419620 | Handle IPv4 Address and IPv6 Address | PatrickMcDonald/McIP | McIP/Program.cs | McIP/Program.cs | namespace McIP
{
using System;
using System.Diagnostics;
using System.IO;
public static class Program
{
public static void Main()
{
var si = new ProcessStartInfo("ipconfig", "/all")
{
RedirectStandardOutput = true,
UseShellExe... | namespace McIP
{
using System;
using System.Diagnostics;
using System.IO;
public static class Program
{
public static void Main()
{
var si = new ProcessStartInfo("ipconfig", "/all")
{
RedirectStandardOutput = true,
UseShellExe... | mit | C# |
407e7144b4885693a46f73b58673fd1973ed87c3 | add CsvRowReaderTest | nabehiro/TableIO | TableIO.Tests/CsvRowReaderTests.cs | TableIO.Tests/CsvRowReaderTests.cs | using Microsoft.VisualStudio.TestTools.UnitTesting;
using TableIO;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace TableIO.Tests
{
[TestClass()]
public class CsvRowReaderTests
{
[TestMethod()]
pu... | using Microsoft.VisualStudio.TestTools.UnitTesting;
using TableIO;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TableIO.Tests
{
[TestClass()]
public class CsvRowReaderTests
{
[TestMethod()]
public void ReadTes... | apache-2.0 | C# |
a4256fad86b07ef7a58748a28105ba42384deead | Fix style in test | xamarin/SalesforceSDK,xamarin/SalesforceSDK | Tests.iOS/SalesforceClientTests.cs | Tests.iOS/SalesforceClientTests.cs | using System;
using System.Diagnostics;
using NUnit.Framework;
using Salesforce;
using System.Threading;
using System.Threading.Tasks;
using NUnit.Framework.Constraints;
namespace Tests.iOS
{
[TestFixture]
public class SalesforceClientTests
{
[Test]
public void Pass ()
{
var passed = false;
var key = "... | using System;
using System.Diagnostics;
using NUnit.Framework;
using Salesforce;
using System.Threading;
using System.Threading.Tasks;
using NUnit.Framework.Constraints;
namespace Tests.iOS
{
[TestFixture]
public class SalesforceClientTests
{
[Test]
public void Pass ()
{
var passed = false;
var key = "... | mit | C# |
df3b569eb1f8da0524d1322139aab520918f2a1b | Fix enum codec | pythonnet/pythonnet,pythonnet/pythonnet,pythonnet/pythonnet | src/runtime/Codecs/EnumPyIntCodec.cs | src/runtime/Codecs/EnumPyIntCodec.cs | using System;
namespace Python.Runtime.Codecs
{
[Obsolete]
public sealed class EnumPyIntCodec : IPyObjectEncoder, IPyObjectDecoder
{
public static EnumPyIntCodec Instance { get; } = new EnumPyIntCodec();
public bool CanDecode(PyType objectType, Type targetType)
{
return... | using System;
namespace Python.Runtime.Codecs
{
[Obsolete]
public sealed class EnumPyIntCodec : IPyObjectEncoder, IPyObjectDecoder
{
public static EnumPyIntCodec Instance { get; } = new EnumPyIntCodec();
public bool CanDecode(PyType objectType, Type targetType)
{
return... | mit | C# |
016c91b0354474a43f7392fd63afc5bf20eb7d87 | Load multiple activity streams with InMemoryActivityStreamRepository | SayliS/ActivityStreams,Elders/ActivityStreams,spardadanthe/ActivityStreams,djimmytrovy/ActivityStreams | src/ActivityStreams/Persistence/InMemory/InMemoryActivityStreamRepository.cs | src/ActivityStreams/Persistence/InMemory/InMemoryActivityStreamRepository.cs | using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
namespace ActivityStreams.Persistence.InMemory
{
public class InMemoryActivityStreamRepository : IActivityStreamRepository
{
ConcurrentDictionary<byte[], SortedSet<Activity>> activityStreamStore = new ConcurrentD... | using System.Collections.Concurrent;
using System.Collections.Generic;
namespace ActivityStreams.Persistence.InMemory
{
public class InMemoryActivityStreamRepository : IActivityStreamRepository
{
ConcurrentDictionary<byte[], SortedSet<Activity>> activityStreamStore = new ConcurrentDictionary<byte[], S... | apache-2.0 | C# |
10385d41cdaa3be4bff38d9fa27b060a0786c1cf | Fix comment spelling | mmitche/corefx,ericstj/corefx,mmitche/corefx,shimingsg/corefx,ViktorHofer/corefx,Jiayili1/corefx,BrennanConroy/corefx,Jiayili1/corefx,ericstj/corefx,Jiayili1/corefx,Jiayili1/corefx,ptoonen/corefx,ptoonen/corefx,ericstj/corefx,ptoonen/corefx,shimingsg/corefx,mmitche/corefx,shimingsg/corefx,shimingsg/corefx,Jiayili1/core... | src/Common/src/Interop/Unix/System.Net.Http.Native/Interop.Initialization.cs | src/Common/src/Interop/Unix/System.Net.Http.Native/Interop.Initialization.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 System.Runtime.InteropServices;
internal static partial class Interop
{
// Initialization o... | // 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 System.Runtime.InteropServices;
internal static partial class Interop
{
// Initialization o... | mit | C# |
660868414cce8b8cc93fb9729ab605d581cc06fb | Upgrade Faithlife.Build. | ejball/ArgsReading | tools/Build/Build.cs | tools/Build/Build.cs | using System;
using Faithlife.Build;
internal static class Build
{
public static int Main(string[] args) => BuildRunner.Execute(args, build =>
{
build.AddDotNetTargets(
new DotNetBuildSettings
{
DocsSettings = new DocsSettings
{
Projects = new[] { "ArgsReading" },
RepoUrl = "https://github.... | using System;
using Faithlife.Build;
internal static class Build
{
public static int Main(string[] args) => BuildRunner.Execute(args, build =>
{
build.AddDotNetTargets(
new DotNetBuildSettings
{
XmlDocMarkdownSettings = new XmlDocMarkdownSettings
{
Projects = new[] { "ArgsReading" },
RepoUr... | mit | C# |
cfef4d7d8fce0d3e3734ebdafd580d37fc68536b | Update CombineMultipleWorksheetsSingleWorksheet.cs | maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_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,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cell... | Examples/CSharp/Articles/CombineMultipleWorksheetsSingleWorksheet.cs | Examples/CSharp/Articles/CombineMultipleWorksheetsSingleWorksheet.cs | using System.IO;
using Aspose.Cells;
namespace Aspose.Cells.Examples.Articles
{
public class CombineMultipleWorksheetsSingleWorksheet
{
public static void Main(string[] args)
{
//ExStart:1
// The path to the documents directory.
string dataDir = Aspose.Cells... | using System.IO;
using Aspose.Cells;
namespace Aspose.Cells.Examples.Articles
{
public class CombineMultipleWorksheetsSingleWorksheet
{
public static void Main(string[] args)
{
// The path to the documents directory.
string dataDir = Aspose.Cells.Examples.Utils.GetDataD... | mit | C# |
448ced12950dc1de4eec14ca2335af5b6f60adec | Update AssemblyVersion | Erikvl87/KNKVPlugin | KNKVPlugin/Properties/AssemblyInfo.cs | KNKVPlugin/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("KN... | 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("KN... | mit | C# |
609debc2ee80dfdd178dca9249a53253a9b3b4c0 | fix bug in "s" | joycode/LibNVim | LibNVim/Editions/EditionChangeChar.cs | LibNVim/Editions/EditionChangeChar.cs | using System;
using System.Collections.Generic;
using System.Text;
namespace LibNVim.Editions
{
class EditionChangeChar : AbstractVimEditionInsertText
{
public EditionChangeChar(Interfaces.IVimHost host, int repeat)
: base(host, repeat)
{
}
protected... | using System;
using System.Collections.Generic;
using System.Text;
namespace LibNVim.Editions
{
class EditionChangeChar : AbstractVimEditionInsertText
{
public EditionChangeChar(Interfaces.IVimHost host, int repeat)
: base(host, repeat)
{
}
protected... | bsd-3-clause | C# |
5cd970eb52c21c5f77273f3c109543c108effe4c | Address db model fully implemented. | transactionCompleteDB/MAutoSS,transactionCompleteDB/MAutoSS | MAutoSS/MAutoSS.DataModels/Address.cs | MAutoSS/MAutoSS.DataModels/Address.cs | namespace MAutoSS.DataModels
{
public class Address
{
public int Id { get; set; }
public string AddressText { get; set; }
public int DealershipId { get; set; }
public virtual Dealership Dealership { get; set; }
}
}
| namespace MAutoSS.DataModels
{
public class Address
{
public int Id { get; set; }
}
}
| mit | C# |
e351af781dec7e9d1ed768ea35bef744f5f1d273 | Create server side API for single multiple answer question | Promact/trappist,Promact/trappist,Promact/trappist,Promact/trappist,Promact/trappist | Trappist/src/Promact.Trappist.Core/Controllers/QuestionController.cs | Trappist/src/Promact.Trappist.Core/Controllers/QuestionController.cs | using Microsoft.AspNetCore.Mvc;
using Promact.Trappist.DomainModel.ApplicationClasses;
using Promact.Trappist.Repository.Questions;
using System;
namespace Promact.Trappist.Core.Controllers
{
[Route("api")]
public class QuestionController : Controller
{
private readonly IQuestionRepository _quest... | using Microsoft.AspNetCore.Mvc;
using Promact.Trappist.DomainModel.ApplicationClasses;
using Promact.Trappist.Repository.Questions;
using System;
namespace Promact.Trappist.Core.Controllers
{
[Route("api")]
public class QuestionController : Controller
{
private readonly IQuestionRepository _quest... | mit | C# |
659e0bb2007c14d9493468c8bb2631895b7d86c7 | Remove timezone specification for scheduled triggers to use server timezone | nuke-build/nuke,nuke-build/nuke,nuke-build/nuke,nuke-build/nuke | source/Nuke.Common/CI/TeamCity/Configuration/TeamCityScheduledTrigger.cs | source/Nuke.Common/CI/TeamCity/Configuration/TeamCityScheduledTrigger.cs | // Copyright 2019 Maintainers of NUKE.
// Distributed under the MIT License.
// https://github.com/nuke-build/nuke/blob/master/LICENSE
using System;
using System.Linq;
using Nuke.Common.Utilities;
namespace Nuke.Common.CI.TeamCity.Configuration
{
public class TeamCityScheduledTrigger : TeamCityTrigger
{
... | // Copyright 2019 Maintainers of NUKE.
// Distributed under the MIT License.
// https://github.com/nuke-build/nuke/blob/master/LICENSE
using System;
using System.Linq;
using Nuke.Common.Utilities;
namespace Nuke.Common.CI.TeamCity.Configuration
{
public class TeamCityScheduledTrigger : TeamCityTrigger
{
... | mit | C# |
01e47404c1687bf2d4123d4fb3d144b654a6cf4f | Change test-case for mono compatibility. | hach-que/JSIL,sq/JSIL,sq/JSIL,hach-que/JSIL,sq/JSIL,hach-que/JSIL,iskiselev/JSIL,FUSEEProjectTeam/JSIL,iskiselev/JSIL,iskiselev/JSIL,FUSEEProjectTeam/JSIL,FUSEEProjectTeam/JSIL,FUSEEProjectTeam/JSIL,sq/JSIL,iskiselev/JSIL,sq/JSIL,FUSEEProjectTeam/JSIL,hach-que/JSIL,hach-que/JSIL,iskiselev/JSIL | Tests/SimpleTestCasesForTranslatedBcl/Issue1008_MethodReturnType.cs | Tests/SimpleTestCasesForTranslatedBcl/Issue1008_MethodReturnType.cs | using System;
using System.Linq.Expressions;
public static class Program
{
public static void Main()
{
Expression<Action> exp = () => Method1<Test>();
var returnType = ((MethodCallExpression)exp.Body).Method.ReturnType;
Console.WriteLine(returnType.GetType().IsSubclassOf(typeof(Type)) ?... | using System;
using System.Linq.Expressions;
public static class Program
{
public static void Main()
{
Expression<Action> exp = () => Method1<Test>();
var returnType = ((MethodCallExpression)exp.Body).Method.ReturnType;
Console.WriteLine(returnType.GetType().FullName);
Console.W... | mit | C# |
496826f3f7c5fe9dcb640a249eb7ad4a1df2ada5 | Simplify part settings retrieval for DateEditorDriver (#5368) | OrchardCMS/Brochard,OrchardCMS/Brochard,stevetayloruk/Orchard2,stevetayloruk/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,petedavis/Orchard2,xkproject/Orchard2,petedavis/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,xkproject/Orchard2,xkproject/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orc... | src/OrchardCore.Modules/OrchardCore.Contents/Drivers/DateEditorDriver.cs | src/OrchardCore.Modules/OrchardCore.Contents/Drivers/DateEditorDriver.cs | using System;
using System.Threading.Tasks;
using OrchardCore.ContentManagement.Display.ContentDisplay;
using OrchardCore.ContentManagement.Display.Models;
using OrchardCore.Contents.Models;
using OrchardCore.Contents.ViewModels;
using OrchardCore.DisplayManagement.ModelBinding;
using OrchardCore.DisplayManagement.View... | using System;
using System.Linq;
using System.Threading.Tasks;
using OrchardCore.ContentManagement.Display.ContentDisplay;
using OrchardCore.ContentManagement.Metadata;
using OrchardCore.Contents.Models;
using OrchardCore.Contents.ViewModels;
using OrchardCore.DisplayManagement.ModelBinding;
using OrchardCore.DisplayMa... | bsd-3-clause | C# |
d97588e5f88f152250558ab78f4f2076c6dafb5d | Remove one virtual call from StreamHelpers.ValidateCopyToArgs (#2283) | gregkalapos/corert,krytarowski/corert,sandreenko/corert,gregkalapos/corert,shrah/corert,krytarowski/corert,tijoytom/corert,botaberg/corert,shrah/corert,sandreenko/corert,yizhang82/corert,yizhang82/corert,shrah/corert,gregkalapos/corert,krytarowski/corert,yizhang82/corert,tijoytom/corert,tijoytom/corert,krytarowski/core... | src/System.Private.CoreLib/src/System/IO/StreamHelpers.CopyValidation.cs | src/System.Private.CoreLib/src/System/IO/StreamHelpers.CopyValidation.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 System.IO
{
/// <summary>Provides methods to help in the implementation of Stream-derived types.</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 System.IO
{
/// <summary>Provides methods to help in the implementation of Stream-derived types.</summ... | mit | C# |
4adb8f16c698fad6100197bd6e4cd8d7f2639301 | Fix detecting mono runtime when using Xamarin.Mac linker by testing for additional type | l8s/Eto,PowerOfCode/Eto,bbqchickenrobot/Eto-1,l8s/Eto,l8s/Eto,PowerOfCode/Eto,PowerOfCode/Eto,bbqchickenrobot/Eto-1,bbqchickenrobot/Eto-1 | Source/Eto/OperatingSystemPlatform.cs | Source/Eto/OperatingSystemPlatform.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace Eto
{
/// <summary>
/// Operating system platform information
/// </summary>
/// <remarks>
/// Access this information from <see cref="EtoEnvironment.Platform"/>
/// </remarks>
p... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace Eto
{
/// <summary>
/// Operating system platform information
/// </summary>
/// <remarks>
/// Access this information from <see cref="EtoEnvironment.Platform"/>
/// </remarks>
p... | bsd-3-clause | C# |
48fdac6d80d1a946da7ffc40a2ad5b2e3b9c288a | Remove unnecessary code at designation draw | alandariva/RimworldMorePlanning,alandariva/RimworldMorePlanning | Source/MorePlanning/HarmonyPatches.cs | Source/MorePlanning/HarmonyPatches.cs | using Harmony;
using System.Reflection;
using UnityEngine;
using Verse;
namespace MorePlanning
{
[StaticConstructorOnStartup]
public static class HarmonyPatches
{
static HarmonyPatches()
{
var harmony = HarmonyInstance.Create(MorePlanningMod.Identifier);
harmony.Pat... | using Harmony;
using System.Reflection;
using UnityEngine;
using Verse;
namespace MorePlanning
{
[StaticConstructorOnStartup]
public static class HarmonyPatches
{
static HarmonyPatches()
{
var harmony = HarmonyInstance.Create(MorePlanningMod.Identifier);
harmony.Pat... | mit | C# |
4176b7a5864a81255d90fbf747ac801e6a04b28e | update version info: v1.0.1 -> v1.0.2 | Treer/ip4 | src/Properties/AssemblyInfo.cs | src/Properties/AssemblyInfo.cs | using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: AssemblyCompany("")]
[as... | using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: AssemblyCompany("")]
[as... | mit | C# |
e4f78544f7414b6656229ac4de236e3035cb72ae | Change char to byte in gaf frame header | MHeasell/TAUtil,MHeasell/TAUtil | TAUtil/Gaf/Structures/GafFrameData.cs | TAUtil/Gaf/Structures/GafFrameData.cs | namespace TAUtil.Gaf.Structures
{
using System.IO;
public struct GafFrameData
{
public ushort Width;
public ushort Height;
public ushort XPos;
public ushort YPos;
public byte Unknown1;
public bool Compressed;
public ushort FramePointers;
... | namespace TAUtil.Gaf.Structures
{
using System.IO;
public struct GafFrameData
{
public ushort Width;
public ushort Height;
public ushort XPos;
public ushort YPos;
public char Unknown1;
public bool Compressed;
public ushort FramePointers;
... | mit | C# |
6cc98764d3dbbd69dc10dc9485890ade24463de8 | Make SplitTrimmed give empty list when given white-space-only string | mccarthyrb/libpalaso,hatton/libpalaso,JohnThomson/libpalaso,andrew-polk/libpalaso,ermshiperete/libpalaso,andrew-polk/libpalaso,ddaspit/libpalaso,glasseyes/libpalaso,glasseyes/libpalaso,tombogle/libpalaso,tombogle/libpalaso,chrisvire/libpalaso,ermshiperete/libpalaso,chrisvire/libpalaso,ermshiperete/libpalaso,darcywong00... | Palaso/Extensions/StringExtensions.cs | Palaso/Extensions/StringExtensions.cs | using System.Collections.Generic;
namespace Palaso.Extensions
{
public static class StringExtensions
{
public static List<string> SplitTrimmed(this string s, char seperator)
{
if(s.Trim() == string.Empty)
return new List<string>();
var x = s.Split(seperator);
var r = new List<string>();
foreac... | using System.Collections.Generic;
namespace Palaso.Extensions
{
public static class StringExtensions
{
public static List<string> SplitTrimmed(this string s, char seperator)
{
var x = s.Split(seperator);
var r = new List<string>();
foreach (var part in x)
{
r.Add(part.Trim());
}
return r;... | mit | C# |
64eab373e2e50257175a002d24d23088ec3d7e24 | add properties to ShippingLine | addsb/ShopifySharp,clement911/ShopifySharp,nozzlegear/ShopifySharp | ShopifySharp/Entities/ShippingLine.cs | ShopifySharp/Entities/ShippingLine.cs | using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShopifySharp
{
public class ShippingLine
{
/// <summary>
/// The carrier provided identifier.
/// </summary>
[JsonProperty("carrie... | using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShopifySharp
{
public class ShippingLine
{
/// <summary>
/// A reference to the shipping method.
/// </summary>
[JsonProperty("cod... | mit | C# |
1885cefbd0ebb06d65ed0eb2b0bea014dae8295c | Make sure password validation works after saving | dlidstrom/Snittlistan,dlidstrom/Snittlistan,dlidstrom/Snittlistan | Snittlistan.Test/SerializationTest.cs | Snittlistan.Test/SerializationTest.cs | namespace Snittlistan.Test
{
using System.IO;
using System.Text;
using Models;
using Raven.Imports.Newtonsoft.Json;
using Xunit;
public class SerializationTest : DbTest
{
[Fact]
public void CanSerialize8x4Match()
{
// Arrange
va... | namespace Snittlistan.Test
{
using System.IO;
using System.Text;
using Models;
using Raven.Imports.Newtonsoft.Json;
using Xunit;
public class SerializationTest : DbTest
{
[Fact]
public void CanSerialize8x4Match()
{
// Arrange
va... | mit | C# |
6875f734cf25452816e6ea2124d8db34ada5a055 | Update Program.cs | miladinoviczeljko/GitTest1 | ConsoleApp1/ConsoleApp1/Program.cs | ConsoleApp1/ConsoleApp1/Program.cs |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
// Code was added in GitHub
}
}
}
| using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
}
}
}
| mit | C# |
1a884b9653ce346cd31a1a823430d7aa08a2661f | Introduce FindExisting on to ConstructorArgList | DivineInject/DivineInject,DivineInject/DivineInject | DivineInject/ConstructorArgList.cs | DivineInject/ConstructorArgList.cs | using System.Collections.Generic;
using System.Reflection.Emit;
namespace DivineInject
{
public interface IConstructorArgList
{
void Add(IConstructorArgDefinition defn);
IList<IConstructorArg> Arguments { get; }
IConstructorArg FindExisting(IConstructorArgDefinition defn);
}
i... | using System.Collections.Generic;
using System.Reflection.Emit;
namespace DivineInject
{
public interface IConstructorArgList
{
void Add(IConstructorArgDefinition defn);
IList<IConstructorArg> Arguments { get; }
}
internal class ConstructorArgList : IConstructorArgList
{
p... | mit | C# |
ed9d9b321955700cb9c551ac72057a40aa02ff7a | make it possible to set flags (e.g. PadFlags.ProxyCaps) | freedesktop-unofficial-mirror/gstreamer__gstreamer-sharp,GStreamer/gstreamer-sharp,gstreamer-sharp/gstreamer-sharp,gstreamer-sharp/gstreamer-sharp,gstreamer-sharp/gstreamer-sharp,freedesktop-unofficial-mirror/gstreamer__gstreamer-sharp,freedesktop-unofficial-mirror/gstreamer__gstreamer-sharp,GStreamer/gstreamer-sharp,G... | sources/custom/Pad.cs | sources/custom/Pad.cs | // Copyright (C) 2013 Stephan Sundermann <stephansundermann@gmail.com>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) an... | // Copyright (C) 2013 Stephan Sundermann <stephansundermann@gmail.com>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) an... | lgpl-2.1 | C# |
930c46ba27ba9b2c0cb3c08b8ef48edad3d42994 | add _OpenBrower for two kind of behavior | NDark/ndinfrastructure,NDark/ndinfrastructure | Unity/UnityTools/OnClickOpenBrower.cs | Unity/UnityTools/OnClickOpenBrower.cs | /**
MIT License
Copyright (c) 2017 NDark
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distr... | /**
MIT License
Copyright (c) 2017 NDark
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distr... | mit | C# |
ab7de76847aa6613c65066d0f3b0d89fe9bd5b9c | Update Producer.cs | Nikey646/VndbSharp | VndbSharp/Models/Producer/Producer.cs | VndbSharp/Models/Producer/Producer.cs | using System;
using System.Collections.ObjectModel;
using VndbSharp.Models.Common;
using VndbSharp.Attributes;
namespace VndbSharp.Models.Producer
{
public class Producer : ProducerCommon
{
public String Language { get; private set; }
public ProducerLinks Links { get; private set; }
[IsCsv]
public ReadOnlyC... | using System;
using System.Collections.ObjectModel;
using VndbSharp.Models.Common;
namespace VndbSharp.Models.Producer
{
public class Producer : ProducerCommon
{
public String Language { get; private set; }
public ProducerLinks Links { get; private set; }
[IsCsv]
public ReadOnlyCollection<String> Aliases { ... | mit | C# |
f7a7dd8bc47ba974808ae9385ef1cc7c49f19854 | Add overload for subscriptions on IBus | rbouallou/Zebus,Abc-Arbitrage/Zebus,biarne-a/Zebus,AtwooTM/Zebus | src/Abc.Zebus/IBus.cs | src/Abc.Zebus/IBus.cs | using System;
using System.Threading.Tasks;
namespace Abc.Zebus
{
public interface IBus : IDisposable
{
PeerId PeerId { get; }
string Environment { get; }
bool IsRunning { get; }
void Configure(PeerId peerId, string environment);
void Publish(IEvent message);
... | using System;
using System.Threading.Tasks;
namespace Abc.Zebus
{
public interface IBus : IDisposable
{
PeerId PeerId { get; }
string Environment { get; }
bool IsRunning { get; }
void Configure(PeerId peerId, string environment);
void Publish(IEvent message);
... | mit | C# |
068524f077b3c6089b798678f0dadce8d031404c | Bump to version 0.1.4. | FacilityApi/FacilityCSharp | SolutionInfo.cs | SolutionInfo.cs | using System.Reflection;
[assembly: AssemblyVersion("0.1.4.0")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCopyright("Copyright 2016 Ed Ball")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
| using System.Reflection;
[assembly: AssemblyVersion("0.1.3.0")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCopyright("Copyright 2016 Ed Ball")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
| mit | C# |
3efb396e5f5bf0e8ad4842ff2a64ec829ac94560 | Bump version with from bootstrapper | jam40jeff/Paket,Stift/Paket,NatElkins/Paket,isaacabraham/Paket,snowcrazed/Paket,NatElkins/Paket,artur-s/Paket,simonhdickson/Paket,mrinaldi/Paket,0x53A/Paket,isaacabraham/Paket,sergey-tihon/Paket,Thorium/Paket,0x53A/Paket,isaacabraham/Paket,Thorium/Paket,vbfox/Paket,baronfel/Paket,mrinaldi/Paket,thinkbeforecoding/Paket,... | src/Paket.Bootstrapper/PaketRunner.cs | src/Paket.Bootstrapper/PaketRunner.cs | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
namespace Paket.Bootstrapper
{
class PaketRunner
{
static readonly Version VersionWithFromBootstrapper = new Version("3.23.3");
static IEnumerable<string> SetBootstrapperArgument(string program, IEnum... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
namespace Paket.Bootstrapper
{
class PaketRunner
{
static readonly Version VersionWithFromBootstrapper = new Version("3.23.2");
static IEnumerable<string> SetBootstrapperArgument(string program, IEnum... | mit | C# |
cf1a1818f9663af183d26e0b9916960f8d7835b2 | Update undocumented org.freedesktop.DBus members | Tragetaschen/dbus-sharp,arfbtwn/dbus-sharp,openmedicus/dbus-sharp,mono/dbus-sharp,arfbtwn/dbus-sharp,mono/dbus-sharp,Tragetaschen/dbus-sharp,openmedicus/dbus-sharp | src/DBus.cs | src/DBus.cs | // Copyright 2006 Alp Toker <alp@atoker.com>
// This software is made available under the MIT License
// See COPYING for details
using System;
using NDesk.DBus;
//namespace org.freedesktop.DBus
namespace org.freedesktop.DBus
{
/*
//what's this for?
public class DBusException : ApplicationException
{
}
*/
#if U... | // Copyright 2006 Alp Toker <alp@atoker.com>
// This software is made available under the MIT License
// See COPYING for details
using System;
using NDesk.DBus;
//namespace org.freedesktop.DBus
namespace org.freedesktop.DBus
{
/*
//what's this for?
public class DBusException : ApplicationException
{
}
*/
#if U... | mit | C# |
fdf5a53d0e5248c05248be1cf71c78a7ce7e75ad | Update Scene Loader script-side | Prouser123/Unity-Collectables | Assets/Scripts/EventHandler.cs | Assets/Scripts/EventHandler.cs | using UnityEngine;
using UnityEngine.SceneManagement;
using UnityEngine.UI;
public class EventHandler : MonoBehaviour
{
// Quit the Game
public void Exit()
{
Application.Quit();
}
// Loading Stats
public Text Stats_HLCText;
public bool statsOpen = false;
private void Updat... | using UnityEngine;
using UnityEngine.SceneManagement;
using UnityEngine.UI;
public class EventHandler : MonoBehaviour {
// Quit the Game
public void Exit()
{
Application.Quit();
}
// Loading Stats
public Text Stats_HLCText;
public bool statsOpen = false;
private void Updat... | apache-2.0 | C# |
83f850a299f31e2f0e65dbd467dd33e2b4a84476 | Fix UTF-16. | pleroy/Principia,pleroy/Principia,pleroy/Principia,mockingbirdnest/Principia,mockingbirdnest/Principia,mockingbirdnest/Principia,pleroy/Principia,mockingbirdnest/Principia | ksp_plugin_adapter/utf16_marshaler.cs | ksp_plugin_adapter/utf16_marshaler.cs | using System;
using System.Runtime.InteropServices;
namespace principia {
namespace ksp_plugin_adapter {
// A marshaler that knows how to encode/decode UTF-16 strings whose ownership is
// not taken from C++.
internal class UnownedUTF16Marshaler : MonoMarshaler {
public static ICustomMarshaler GetInstance(string s... | using System;
using System.Runtime.InteropServices;
namespace principia {
namespace ksp_plugin_adapter {
// A marshaler that knows how to encode/decode UTF-16 strings whose ownership is
// not taken from C++.
internal class UnownedUTF16Marshaler : MonoMarshaler {
public static ICustomMarshaler GetInstance(string s... | mit | C# |
2927097e8e95d8d506fa52ae49a0930c61b5f548 | Add TLS 1.3 to default security protocols | chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck | lib/TweetLib.Utils/Static/WebUtils.cs | lib/TweetLib.Utils/Static/WebUtils.cs | using System;
using System.ComponentModel;
using System.IO;
using System.Net;
namespace TweetLib.Utils.Static {
public static class WebUtils {
public static string DefaultUserAgent { get; set; } = "";
private static bool hasMicrosoftBeenBroughtTo2008Yet;
private static bool hasSystemProxyBeenEnabled;
priva... | using System;
using System.ComponentModel;
using System.IO;
using System.Net;
namespace TweetLib.Utils.Static {
public static class WebUtils {
public static string DefaultUserAgent { get; set; } = "";
private static bool hasMicrosoftBeenBroughtTo2008Yet;
private static bool hasSystemProxyBeenEnabled;
priva... | mit | C# |
72b6c4406857e01bfaae505d224471d6094ed466 | Fix docs | treehopper-electronics/treehopper-sdk,treehopper-electronics/treehopper-sdk,treehopper-electronics/treehopper-sdk,treehopper-electronics/treehopper-sdk,treehopper-electronics/treehopper-sdk,treehopper-electronics/treehopper-sdk | NET/Demos/Console/Blink/Program.cs | NET/Demos/Console/Blink/Program.cs | using System;
using Treehopper;
using System.Threading.Tasks;
using System.Diagnostics;
using System.Collections.Generic;
using System.Threading;
namespace Blink
{
/// <summary>
/// This demo blinks the built-in LED using async programming.
/// </summary>
class Program
{
static Treehopper... | using System;
using Treehopper;
using System.Threading.Tasks;
using System.Diagnostics;
using System.Collections.Generic;
namespace Blink
{
/// <summary>
/// This demo blinks the built-in LED using basic procedural programming.
/// </summary>
/// <remarks>
/// <para>
/// This example illustra... | mit | C# |
34679399f3757ede649ec0219f03522651f11eca | Fix incorrect version number in the About dialog | PintaProject/Pinta,Fenex/Pinta,jakeclawson/Pinta,Mailaender/Pinta,Mailaender/Pinta,Fenex/Pinta,jakeclawson/Pinta,PintaProject/Pinta,PintaProject/Pinta | Pinta/Dialogs/AboutPintaTabPage.cs | Pinta/Dialogs/AboutPintaTabPage.cs | // AboutPintaTabPage.cs
//
// Author:
// Viktoria Dudka (viktoriad@remobjects.com)
//
// Copyright (c) 2009 RemObjects Software
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without... | // AboutPintaTabPage.cs
//
// Author:
// Viktoria Dudka (viktoriad@remobjects.com)
//
// Copyright (c) 2009 RemObjects Software
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without... | mit | C# |
4100c4fe9f70147f964e9e9cc275359b84cedc36 | Fix order of methods | naoey/osu,DrabWeb/osu,NeoAdonis/osu,2yangk23/osu,johnneijzen/osu,EVAST9919/osu,2yangk23/osu,Nabile-Rahmani/osu,peppy/osu,osu-RP/osu-RP,peppy/osu-new,ZLima12/osu,UselessToucan/osu,Damnae/osu,naoey/osu,UselessToucan/osu,DrabWeb/osu,EVAST9919/osu,smoogipoo/osu,naoey/osu,smoogipooo/osu,peppy/osu,ppy/osu,smoogipoo/osu,NeoAd... | osu.Game.Rulesets.Osu/Objects/Drawables/Pieces/SpinnerBackground.cs | osu.Game.Rulesets.Osu/Objects/Drawables/Pieces/SpinnerBackground.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 OpenTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphic... | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphic... | mit | C# |
6abeff9f0987170c24c34f9ad1933f37acdd2faf | Add missing [NotNull] attributes on StringLocalizerExtensions | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/Microsoft.Framework.Localization.Abstractions/StringLocalizerExtensions.cs | src/Microsoft.Framework.Localization.Abstractions/StringLocalizerExtensions.cs | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.Framework.Internal;
namespace Microsoft.Framework.Localization
{
public static class StringLocalizerExtensions
{
///... | // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.Framework.Localization
{
public static class StringLocalizerExtensions
{
/// <summary>
/// Gets the strin... | apache-2.0 | C# |
cf35f52f2b8050b6deb3536856a9686936bcc0c7 | Switch to 1.1.7 | Abc-Arbitrage/Zebus,Abc-Arbitrage/Zebus.Directory | src/SharedVersionInfo.cs | src/SharedVersionInfo.cs | using System.Reflection;
[assembly: AssemblyVersion("1.1.7")]
[assembly: AssemblyFileVersion("1.1.7")]
[assembly: AssemblyInformationalVersion("1.1.7")] | using System.Reflection;
[assembly: AssemblyVersion("1.1.6")]
[assembly: AssemblyFileVersion("1.1.6")]
[assembly: AssemblyInformationalVersion("1.1.6")] | mit | C# |
ff73abd77b74a4841513545da648c7fda9372522 | Fix broken config settings | mike-ward/tweetz-desktop | tweetz/tweetz5/App.xaml.cs | tweetz/tweetz5/App.xaml.cs | using System;
using System.Configuration;
using System.IO;
using System.Threading.Tasks;
using System.Windows;
using tweetz5.Properties;
using tweetz5.Utilities.ExceptionHandling;
using tweetz5.Utilities.Translate;
namespace tweetz5
{
public partial class App
{
private void ApplicationSta... | using System;
using System.Threading.Tasks;
using System.Windows;
using tweetz5.Properties;
using tweetz5.Utilities.ExceptionHandling;
using tweetz5.Utilities.Translate;
namespace tweetz5
{
public partial class App
{
private void ApplicationStart(object sender, StartupEventArgs e)
... | mit | C# |
4d97b96705214a6d8da94363c8cb96236651108d | Remove the framework settings. It is not used. | johnneijzen/osu,peppy/osu,UselessToucan/osu,ZLima12/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,EVAST9919/osu,smoogipoo/osu,peppy/osu-new,NeoAdonis/osu,DrabWeb/osu,NeoAdonis/osu,smoogipoo/osu,naoey/osu,peppy/osu,2yangk23/osu,naoey/osu,johnneijzen/osu,ppy/osu,EVAST9919/osu,naoey/osu,DrabWeb/osu,peppy/osu,NeoAdonis/osu,s... | build.cake | build.cake | #addin "nuget:?package=CodeFileSanity&version=0.0.21"
#addin "nuget:?package=JetBrains.ReSharper.CommandLineTools&version=2018.2.2"
#tool "nuget:?package=NVika.MSBuild&version=1.0.1"
///////////////////////////////////////////////////////////////////////////////
// ARGUMENTS
///////////////////////////////////////////... | #addin "nuget:?package=CodeFileSanity&version=0.0.21"
#addin "nuget:?package=JetBrains.ReSharper.CommandLineTools&version=2018.2.2"
#tool "nuget:?package=NVika.MSBuild&version=1.0.1"
///////////////////////////////////////////////////////////////////////////////
// ARGUMENTS
///////////////////////////////////////////... | mit | C# |
99712151ee268f00278654a30991bc236d615b95 | Rename variable | setchi/n_back_tracer,setchi/n_back_tracer | Assets/Scripts/Main/TimeKeeper.cs | Assets/Scripts/Main/TimeKeeper.cs | using UnityEngine;
using UnityEngine.UI;
using System;
using System.Collections;
using UniRx;
public class TimeKeeper : MonoBehaviour {
public event Action TimeUp;
public float timeLimit;
public Slider slider;
public void StartCountdown() {
Observable.EveryUpdate()
.TakeUntil(Observable.Timer(TimeSpan.FromSe... | using UnityEngine;
using UnityEngine.UI;
using System;
using System.Collections;
using UniRx;
public class TimeKeeper : MonoBehaviour {
public event Action TimeUp;
public float timeLimit;
public Slider slider;
public void StartCountdown() {
Observable.EveryUpdate()
.TakeUntil(Observable.Timer(TimeSpan.FromSe... | mit | C# |
5f18d7709560a53540ca81456da01766e00d8327 | Migrate to L10NSharp 4.0 | ermshiperete/libpalaso,ermshiperete/libpalaso,sillsdev/libpalaso,gmartin7/libpalaso,gmartin7/libpalaso,sillsdev/libpalaso,sillsdev/libpalaso,gmartin7/libpalaso,gmartin7/libpalaso,ermshiperete/libpalaso,sillsdev/libpalaso,ermshiperete/libpalaso | TestApps/SIL.Windows.Forms.TestApp/Program.cs | TestApps/SIL.Windows.Forms.TestApp/Program.cs | using System;
using System.IO;
using System.Threading;
using System.Windows.Forms;
using L10NSharp;
using SIL.IO;
using SIL.WritingSystems;
namespace SIL.Windows.Forms.TestApp
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(st... | using System;
using System.IO;
using System.Threading;
using System.Windows.Forms;
using L10NSharp;
using SIL.IO;
using SIL.WritingSystems;
namespace SIL.Windows.Forms.TestApp
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(st... | mit | C# |
1f37516455774ebbccae9db8f65a1091b04b690a | Fix bug in the StringCollection converter when DataServicePackage.Authors is a simple string. | pratikkagda/nuget,oliver-feng/nuget,antiufo/NuGet2,ctaggart/nuget,rikoe/nuget,mrward/NuGet.V2,GearedToWar/NuGet2,mono/nuget,alluran/node.net,pratikkagda/nuget,indsoft/NuGet2,jholovacs/NuGet,dolkensp/node.net,alluran/node.net,xoofx/NuGet,OneGet/nuget,zskullz/nuget,atheken/nuget,indsoft/NuGet2,ctaggart/nuget,dolkensp/nod... | NuPack.Dialog/PackageManagerUI/Converters/StringCollectionsToStringConverter.cs | NuPack.Dialog/PackageManagerUI/Converters/StringCollectionsToStringConverter.cs | using System;
using System.Collections.Generic;
using System.Windows.Data;
namespace NuPack.Dialog.PackageManagerUI {
public class StringCollectionsToStringConverter : IValueConverter {
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo cultur... | using System;
using System.Collections.Generic;
using System.Windows.Data;
namespace NuPack.Dialog.PackageManagerUI {
public class StringCollectionsToStringConverter : IValueConverter {
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo cultur... | apache-2.0 | C# |
9e4094bc8188ec50825cc817ba7b317580593fc3 | add 'get set' | vostok/core | Vostok.Airlock.Client/Logging/LogEventData.cs | Vostok.Airlock.Client/Logging/LogEventData.cs | using System;
using System.Collections.Generic;
using System.Reflection;
using Vostok.Logging;
namespace Vostok.Airlock.Logging
{
public sealed class LogEventData
{
public LogEventData(Exception ex = null)
{
if (ex == null)
return;
Message = ex.Message;
... | using System;
using System.Collections.Generic;
using System.Reflection;
using Vostok.Logging;
namespace Vostok.Airlock.Logging
{
public sealed class LogEventData
{
public LogEventData(Exception ex = null)
{
if (ex == null)
return;
Message = ex.Message;
... | mit | C# |
14de19c01aeb4c6d74f9c171b5cf8bb83696da04 | Remove Flags | mstrother/BmpListener | BMPClient/BMP/BmpPeerHeader.cs | BMPClient/BMP/BmpPeerHeader.cs | using System;
using System.Linq;
using System.Net;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace BmpListener.Bmp
{
public class PeerHeader
{
public PeerHeader(byte[] data)
{
Decode(data);
}
[JsonConverter(typeof(StringEnumConverter))]
pu... | using System;
using System.Linq;
using System.Net;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace BmpListener.Bmp
{
public class PeerHeader
{
public PeerHeader(byte[] data)
{
Decode(data);
}
[JsonConverter(typeof(StringEnumConverter))]
pu... | mit | C# |
5bec955372c5617c3ad4b6361e2ef093e47fc3a3 | fix typo | IFS-HSR/ADMentor | ADMentor/ADTechnology/DiagramTypes.cs | ADMentor/ADTechnology/DiagramTypes.cs | using EAAddInBase.MDGBuilder;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ADMentor.ADTechnology
{
public static class DiagramTypes
{
public static readonly Diagram ProblemSpace = new Diagram(
name: "ProblemSp... | using EAAddInBase.MDGBuilder;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ADMentor.ADTechnology
{
public static class DiagramTypes
{
public static readonly Diagram ProblemSpace = new Diagram(
name: "ProblemSp... | epl-1.0 | C# |
d53234ca89a280d6869c074b39f8b3667459a49c | Update search plugins to adhere to interface changes. | GetTabster/Tabster.Core | Searching/ITablatureSearchEngine.cs | Searching/ITablatureSearchEngine.cs | #region
using System.Net;
using Tabster.Core.Types;
#endregion
namespace Tabster.Core.Searching
{
/// <summary>
/// Tablature search engine service.
/// </summary>
public interface ITablatureSearchEngine
{
/// <summary>
/// Search engine name.
/// ... | #region
using System.Net;
using Tabster.Core.Types;
#endregion
namespace Tabster.Core.Searching
{
/// <summary>
/// Tablature search engine service.
/// </summary>
public interface ITablatureSearchEngine
{
/// <summary>
/// Search engine name.
/// ... | apache-2.0 | C# |
ea6b9d1a7228b11fa19cb5a48c166dbbc5a13819 | remove extra whitespace | SamuelKnox/F.R.E.D.,Evorlor/F.R.E.D. | Fred/Systems/MovementSystem.cs | Fred/Systems/MovementSystem.cs | using Artemis;
using Artemis.Attributes;
using Artemis.Manager;
using Artemis.System;
using Fred.Components;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Fred.Systems
{
[ArtemisEntitySystem(GameLoopType = GameLoopType.Update, Layer = 1)]
class MovementSystem ... | using Artemis;
using Artemis.Attributes;
using Artemis.Manager;
using Artemis.System;
using Fred.Components;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Fred.Systems
{
[ArtemisEntitySystem(GameLoopType = GameLoopType.Update, Layer = 1)]
class MovementSystem ... | mit | C# |
ce4e80534776f5b6cbea89d572c05c4e8f574ecc | Fix update of incorrect texture | k-t/SharpHaven | MonoHaven.Client/Graphics/Text.cs | MonoHaven.Client/Graphics/Text.cs | using System;
using System.Drawing;
using System.Windows.Forms;
namespace MonoHaven.Graphics
{
public class Text : IDisposable
{
private readonly Font font;
private Texture texture;
private Color color;
private string value;
public Text(Font font)
: this(font, string.Empty)
{}
public Text(Font fo... | using System;
using System.Drawing;
using System.Windows.Forms;
namespace MonoHaven.Graphics
{
public class Text : IDisposable
{
private readonly Font font;
private Texture texture;
private Color color;
private string value;
public Text(Font font)
: this(font, string.Empty)
{}
public Text(Font fo... | mit | C# |
67f55206dc7ca96471312a90894edb74ccd35cf5 | Add Empty Packet Type | martindevans/MumbleSharp,kluchrj/MumbleSharp | MumbleSharp/Packets/PacketType.cs | MumbleSharp/Packets/PacketType.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MumbleSharp.Packets
{
public enum PacketType
:short
{
Version = 0,
UDPTunnel = 1,
Authenticate = 2,
Ping = 3,
Reject = 4,
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MumbleSharp.Packets
{
public enum PacketType
:short
{
Version = 0,
UDPTunnel = 1,
Authenticate = 2,
Ping = 3,
Reject = 4,
... | mit | C# |
e8b99972eca0561dce2b96eab8dca16edced88a2 | remove test modification | brizuelal/Nager.Date,brizuelal/Nager.Date | Nager.Date.TestConsole/Program.cs | Nager.Date.TestConsole/Program.cs | using System;
namespace Nager.Date.TestConsole
{
class Program
{
static void Main(string[] args)
{
var publicHolidays = DateSystem.GetPublicHoliday("CH", 2017);
foreach (var publicHoliday in publicHolidays)
{
Console.WriteLine("{0:dd.MM.yyyy}... | using System;
namespace Nager.Date.TestConsole
{
class Program
{
static void Main(string[] args)
{
var publicHolidays = DateSystem.GetPublicHoliday("CH", 2017);
foreach (var publicHoliday in publicHolidays)
{
Console.WriteLine("{0:dd.MM.yyyy}... | apache-2.0 | C# |
84a1f76a9890e5ddbb3d6bf5b5b701fd1e17489b | Split WCF functionality out of Autofac.Extras.Multitenant into a separate assembly/package, Autofac.Extras.Multitenant.Wcf. Both packages are versioned 3.1.0. | caioproiete/Autofac.Wcf,autofac/Autofac.Wcf | Properties/VersionAssemblyInfo.cs | Properties/VersionAssemblyInfo.cs | //------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18051
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generate... | //------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34003
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generate... | mit | C# |
bcdeab093240852a138cde996a94149f8e74abb1 | Update parameter summary | SouleDesigns/SouleDesigns.Orchard,SouleDesigns/SouleDesigns.Orchard,SouleDesigns/SouleDesigns.Orchard,SouleDesigns/SouleDesigns.Orchard,SouleDesigns/SouleDesigns.Orchard | src/Orchard.Web/Modules/PlanetTelex.ContactForm/Services/IContactFormService.cs | src/Orchard.Web/Modules/PlanetTelex.ContactForm/Services/IContactFormService.cs | using Orchard;
using PlanetTelex.ContactForm.Models;
namespace PlanetTelex.ContactForm.Services
{
public interface IContactFormService : IDependency
{
/// <summary>
/// Gets the contact form record.
/// </summary>
/// <param name="id">The record id.</param>
ContactFormR... | using Orchard;
using PlanetTelex.ContactForm.Models;
namespace PlanetTelex.ContactForm.Services
{
public interface IContactFormService : IDependency
{
/// <summary>
/// Gets the contact form record.
/// </summary>
/// <param name="id">The record id.</param>
ContactFormR... | bsd-3-clause | C# |
752d16e816feec77d01256fbf6a5f79e5bbeb09f | Fix Destroy compile time error | sschmid/Entitas-CSharp,sschmid/Entitas-CSharp,vkuskov/Entitas-CSharp,vkuskov/Entitas-CSharp | Entitas.Unity/Assets/Entitas/Unity/VisualDebugging/GameObjectDestroyExtension.cs | Entitas.Unity/Assets/Entitas/Unity/VisualDebugging/GameObjectDestroyExtension.cs | using UnityEngine;
namespace Entitas.Unity.VisualDebugging {
public static class GameObjectDestroyExtension {
public static void DestroyGameObject(this GameObject gameObject) {
#if (UNITY_EDITOR)
if (Application.isPlaying) {
Object.Destroy(gameObject);
... | using UnityEngine;
namespace Entitas.Unity.VisualDebugging {
public static class GameObjectDestroyExtension {
public static void DestroyGameObject(this GameObject gameObject) {
#if (UNITY_EDITOR)
if (Application.isPlaying) {
Object.Destroy(gameObject);
... | mit | C# |
2cfd47b6edd8c3fb1c6620ba6aa6a459a7d2c3b0 | Implement DevicesCollection | alesliehughes/monoDX,alesliehughes/monoDX | Microsoft.DirectX.DirectSound/Microsoft.DirectX.DirectSound/DevicesCollection.cs | Microsoft.DirectX.DirectSound/Microsoft.DirectX.DirectSound/DevicesCollection.cs | /*
* The MIT License (MIT)
*
* Copyright (c) 2013 Alistair Leslie-Hughes
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights ... | /*
* The MIT License (MIT)
*
* Copyright (c) 2013 Alistair Leslie-Hughes
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights ... | mit | C# |
3b47075d326984f1355e6ac4734e56f58ade9e2b | Allow custom app settings. | Squidex/squidex,Squidex/squidex,Squidex/squidex,Squidex/squidex,Squidex/squidex | src/Squidex/Program.cs | src/Squidex/Program.cs | // ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschränkt)
// All rights reserved. Licensed under the MIT license.
// ============================... | // ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschränkt)
// All rights reserved. Licensed under the MIT license.
// ============================... | mit | C# |
d6c072a8fda30924f10fae6ff9b32c1e91d4c197 | Update 3DES.cs | kogoia/MRTD.NET | HelloWord/Cryptography/3DES.cs | HelloWord/Cryptography/3DES.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
namespace HelloWord.Cryptography
{
/// <summary>
/// ICAO Doc 9303
/// Part 11: Security Mechanisms for MRTDs / Page: 17
/// http://www.icao.int/publications/pages/publication.aspx... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
namespace HelloWord.Cryptography
{
/// <summary>
/// ICAO Doc 9303
/// Part 11: Security Mechanisms for MRTDs / Page: 17
/// http://www.icao.int/publications/pages/publication.aspx... | mit | C# |
2256b348fb5a58a215a2a661c8a9185a43f5f947 | Handle null id for Cars/Details action | ajaree/tdd-carfuel,ajaree/tdd-carfuel,ajaree/tdd-carfuel | CarFuel/Controllers/CarsController.cs | CarFuel/Controllers/CarsController.cs | using CarFuel.DataAccess;
using CarFuel.Models;
using CarFuel.Services;
using Microsoft.AspNet.Identity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.Mvc;
namespace CarFuel.Controllers
{
public class CarsController : Controller
{
... | using CarFuel.DataAccess;
using CarFuel.Models;
using CarFuel.Services;
using Microsoft.AspNet.Identity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace CarFuel.Controllers
{
public class CarsController : Controller
{
private ICarDb ... | mit | C# |
091d6d318ccb0c80b310ef0aac5d324ae0ec6c4c | fix info logger for apple iap | bitwarden/core,bitwarden/core,bitwarden/core,bitwarden/core | src/Billing/Controllers/AppleController.cs | src/Billing/Controllers/AppleController.cs | using Bit.Core;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using System;
using System.IO;
using System.Text;
using System.Threading.Tasks;
namespace Bit.Billing.Controllers
{
[Route("apple")]
public class AppleController : Con... | using Bit.Core;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using System;
using System.IO;
using System.Text;
using System.Threading.Tasks;
namespace Bit.Billing.Controllers
{
[Route("apple")]
public class AppleController : Con... | agpl-3.0 | C# |
004ac9656960e507d9da846862d2d345f527aa98 | Add JobEngineSupported property to WellKnownServerFeatures list. This property inverts JobEngineNotSupported property which will be removed in future release and therefore has been marked as obsolete. | ZEISS-PiWeb/PiWeb-Api | src/Common/Data/WellKnownServerFeatures.cs | src/Common/Data/WellKnownServerFeatures.cs | #region copyright
/* * * * * * * * * * * * * * * * * * * * * * * * * */
/* Carl Zeiss IMT (IZfM Dresden) */
/* Softwaresystem PiWeb */
/* (c) Carl Zeiss 2015 */
/* * * * * * * * * * * * * * * * * * * * * * * * * */
#endregion
using Syste... | #region copyright
/* * * * * * * * * * * * * * * * * * * * * * * * * */
/* Carl Zeiss IMT (IZfM Dresden) */
/* Softwaresystem PiWeb */
/* (c) Carl Zeiss 2015 */
/* * * * * * * * * * * * * * * * * * * * * * * * * */
#endregion
using Zeiss... | bsd-3-clause | C# |
85f73c9873f56fe2778b5d9ff3a41b3f390f1c7e | Fix that build | planetxamarin/planetxamarin,MabroukENG/planetxamarin,MabroukENG/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,MabroukENG/planetxamarin,planetxamarin/planetxamarin | src/Firehose.Web/Authors/TomaszCielecki.cs | src/Firehose.Web/Authors/TomaszCielecki.cs | using System;
using System.Collections.Generic;
using System.ServiceModel.Syndication;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class TomaszCielecki : IAmAXamarinMVP, IFilterMyBlogPosts
{
public IEnumerable<Uri> FeedUris
{
get { yield return new Ur... | using System;
using System.Collections.Generic;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class TomaszCielecki : IAmAXamarinMVP, IFilterMyBlogPosts
{
public IEnumerable<Uri> FeedUris
{
get { yield return new Uri("http://blog.ostebaronen.dk/feeds/pos... | mit | C# |
c3a75833fe979ea05b56adccf8d192cd404d46c9 | Update AssemblyInfo.cs | EmphaticFist/Fluky,EmphaticFistGames/Fluky,michaeljbaird/Fluky,michaeljbaird/Fluky | src/Fluky.Tests/Properties/AssemblyInfo.cs | src/Fluky.Tests/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: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]... | 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: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]... | mit | C# |
dc26e90a8dad211abce21888944145f9b8add92a | Remove unused usings | johnneijzen/osu,UselessToucan/osu,UselessToucan/osu,ZLima12/osu,ZLima12/osu,NeoAdonis/osu,ppy/osu,peppy/osu,2yangk23/osu,smoogipooo/osu,DrabWeb/osu,2yangk23/osu,DrabWeb/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,DrabWeb/osu,UselessToucan/osu,EVAST9919/osu,peppy/osu-new,johnneijzen/osu,NeoAdonis/osu,ppy/osu,peppy/osu,smoog... | osu.Game/Screens/Play/ScreenWithBeatmapBackground.cs | osu.Game/Screens/Play/ScreenWithBeatmapBackground.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.Screens.Backgrounds;
namespace osu.Game.Screens.Play
{
public abstract class ScreenWithBeatmapBackground : OsuScreen
{
protected override... | // 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.Game.Configuration;
using osu.Game.Screens.Backgrounds;
namespace osu.Game.Screens.Play
{
p... | mit | C# |
bdf4a61b5aa55d38c40f04a0d8b8ee884bbf4e90 | Add null check to Branch | GitTools/GitVersion,GitTools/GitVersion,asbjornu/GitVersion,gep13/GitVersion,gep13/GitVersion,asbjornu/GitVersion | src/GitVersion.LibGit2Sharp/Git/Branch.cs | src/GitVersion.LibGit2Sharp/Git/Branch.cs | using GitVersion.Extensions;
using GitVersion.Helpers;
namespace GitVersion;
internal sealed class Branch : IBranch
{
private static readonly LambdaEqualityHelper<IBranch> equalityHelper = new(x => x.Name.Canonical);
private static readonly LambdaKeyComparer<IBranch, string> comparerHelper = new(x => x.Name.C... | using GitVersion.Helpers;
namespace GitVersion;
internal sealed class Branch : IBranch
{
private static readonly LambdaEqualityHelper<IBranch> equalityHelper = new(x => x.Name.Canonical);
private static readonly LambdaKeyComparer<IBranch, string> comparerHelper = new(x => x.Name.Canonical);
private reado... | mit | C# |
ee76f0427527d144e4ecdc6111f5844ad37c9563 | Clarify build.cake | HangfireIO/Cronos | build.cake | build.cake | #tool "nuget:?package=xunit.runner.console"
#tool "nuget:?package=OpenCover"
var configuration = Argument("configuration", "Release");
var version = Argument<string>("buildVersion", null);
var target = Argument("target", "Default");
Task("Default").IsDependentOn("Pack");
Task("CI").IsDependentOn("Pack");
Task("Clean... | #tool "nuget:?package=xunit.runner.console"
#tool "nuget:?package=OpenCover"
var configuration = Argument("configuration", "Release");
var version = Argument<string>("buildVersion", null);
var target = Argument("target", "Default");
Task("Restore")
.Does(()=>
{
DotNetCoreRestore();
});
Task("Clean")
.Do... | mit | C# |
fd663a2b7d5d1bf76af0c28627b151aeda8674a2 | Clean up cake file | mrjavaguy/ericholton.me,mrjavaguy/ericholton.me,mrjavaguy/ericholton.me | build.cake | build.cake | #tool "nuget:https://api.nuget.org/v3/index.json?package=Wyam&version=1.4.1"
#addin "nuget:https://api.nuget.org/v3/index.json?package=Cake.Wyam&version=1.4.1"
DirectoryPath outputPath = MakeAbsolute(Directory("./output"));
string target = Argument("target", "Generate-Blog");
Task("Clean-Blog")
.Do... | #tool "nuget:https://api.nuget.org/v3/index.json?package=Wyam&version=1.4.1"
#addin "nuget:https://api.nuget.org/v3/index.json?package=Cake.Wyam&version=1.4.1"
#addin "Cake.Npm"
DirectoryPath outputPath = MakeAbsolute(Directory("./output"));
string target = Argument("target", "Generate-Blog"),
... | apache-2.0 | C# |
45d5305e747905ca0f2ea8464bdc41007fc193e5 | Update annotations for types implementing IErrorTypeSymbol | physhi/roslyn,eriawan/roslyn,eriawan/roslyn,AlekseyTs/roslyn,weltkante/roslyn,gafter/roslyn,physhi/roslyn,aelij/roslyn,brettfo/roslyn,dotnet/roslyn,KirillOsenkov/roslyn,shyamnamboodiripad/roslyn,shyamnamboodiripad/roslyn,bartdesmet/roslyn,jasonmalinowski/roslyn,heejaechang/roslyn,mavasani/roslyn,CyrusNajmabadi/roslyn,t... | src/Compilers/CSharp/Portable/Symbols/PublicModel/ErrorTypeSymbol.cs | src/Compilers/CSharp/Portable/Symbols/PublicModel/ErrorTypeSymbol.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.
#nullable enable
using System.Collections.Immutable;
using System.Diagnostics;
namespace Microsoft.CodeAnalysis.CSharp.Symbols.PublicModel
{
internal s... | // 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.Collections.Immutable;
using System.Diagnostics;
namespace Microsoft.CodeAnalysis.CSharp.Symbols.PublicModel
{
internal sealed class ErrorT... | mit | C# |
55b22fb420646d53cb3fb267d1577a1c3c4f1f69 | Add IRepository changes to the RepositoryGetAll | generik0/Smooth.IoC.Dapper.Repository.UnitOfWork,generik0/Smooth.IoC.Dapper.Repository.UnitOfWork | src/Smooth.IoC.Dapper.Repository.UnitOfWork/Repo/RepositoryGetAll.cs | src/Smooth.IoC.Dapper.Repository.UnitOfWork/Repo/RepositoryGetAll.cs | using System.Collections.Generic;
using System.Threading.Tasks;
using Smooth.IoC.Dapper.Repository.UnitOfWork.Data;
namespace Smooth.IoC.Dapper.Repository.UnitOfWork.Repo
{
public abstract partial class Repository<TEntity, TPk>
where TEntity : class
{
public IEnumerable<TEntity> GetAll(ISessio... | using System.Collections.Generic;
using System.Threading.Tasks;
using Smooth.IoC.Dapper.Repository.UnitOfWork.Data;
namespace Smooth.IoC.Dapper.Repository.UnitOfWork.Repo
{
public abstract partial class Repository<TEntity, TPk>
where TEntity : class
{
public IEnumerable<TEntity> GetAll(ISessio... | mit | C# |
8e6c8fb3d3082522409a216d2e69d71b2dd25548 | use Command static properties and check json type with regex ending | takenet/blip-sdk-csharp | src/Take.Blip.Builder/Actions/ProcessCommand/ProcessCommandAction.cs | src/Take.Blip.Builder/Actions/ProcessCommand/ProcessCommandAction.cs | using Lime.Protocol;
using Lime.Protocol.Serialization;
using Newtonsoft.Json.Linq;
using System;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using Take.Blip.Client;
namespace Take.Blip.Builder.Actions.ProcessCommand
{
public class ProcessCommandAction : IAction
... | using Lime.Protocol;
using Lime.Protocol.Serialization;
using Newtonsoft.Json.Linq;
using System;
using System.Threading;
using System.Threading.Tasks;
using Take.Blip.Client;
namespace Take.Blip.Builder.Actions.ProcessCommand
{
public class ProcessCommandAction : IAction
{
private readonly ISender _s... | apache-2.0 | C# |
e36423cf95c9312f9cc5c9bd358c498f816fb754 | Fix parsing number value when no default value specified | Prof9/PixelPet | PixelPet/CLI/ParameterValue.cs | PixelPet/CLI/ParameterValue.cs | using LibPixelPet;
using System;
namespace PixelPet.CLI {
internal class ParameterValue {
public string Name { get; }
public string DefaultValue { get; }
public string CurrentValue { get; private set; }
public bool HasDefaultValue => this.DefaultValue != null;
public bool HasCurrentValue => this.CurrentVa... | using LibPixelPet;
using System;
namespace PixelPet.CLI {
internal class ParameterValue {
public string Name { get; }
public string DefaultValue { get; }
public string CurrentValue { get; private set; }
public bool HasDefaultValue => this.DefaultValue != null;
public bool HasCurrentValue => this.CurrentVa... | mit | C# |
5e66bc13ab103a9d72d9f6778e8366d486eac048 | Update version info | pjb7687/single | Single2013/Properties/AssemblyInfo.cs | Single2013/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... | bsd-2-clause | C# |
37550e40384f9b50b5bb93fbafeee4b679f3c17b | Remove redundant comments | kornelijepetak/incident-cs | IncidentTests/MathExt.cs | IncidentTests/MathExt.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IncidentTests
{
public static class MathExt
{
public static double StdDev(this int[] values)
{
var mean = values.Average();
var variance = values
.Select(x => Math.Pow(mean - ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IncidentTests
{
public static class MathExt
{
public static double StdDev(this int[] values)
{
var mean = values.Average();
var variance = values
.Select(x => Math.Pow(mean - ... | mit | C# |
09b9ad27cc4ea99d793243baddcc2fb59ce75819 | debug output | 2gis/nuclear-river,xakep139/nuclear-river,xakep139/nuclear-river,2gis/nuclear-river-validation-rules,2gis/nuclear-river | StateInitialization/StateInitialization.Core/Actors/UpdateTableStatisticsActor.cs | StateInitialization/StateInitialization.Core/Actors/UpdateTableStatisticsActor.cs | using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Diagnostics;
using System.Linq;
using LinqToDB.Mapping;
using NuClear.Replication.Core;
using NuClear.Replication.Core.Actors;
using NuClear.StateInitialization.Core.Commands;
namespace NuClear.StateInitialization.Core.Actors
... | using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Diagnostics;
using System.Linq;
using LinqToDB.Mapping;
using NuClear.Replication.Core;
using NuClear.Replication.Core.Actors;
using NuClear.StateInitialization.Core.Commands;
namespace NuClear.StateInitialization.Core.Actors
... | mpl-2.0 | C# |
619063b7b15836d573d25b9cd144d57202c95df4 | change color | DOTNET2016/GOL | GOL/MainWindow.xaml.cs | GOL/MainWindow.xaml.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.