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 |
|---|---|---|---|---|---|---|---|---|
04004d67fe341d4f8a6bd7f8f8a2f6e14663c77f | teste f | Thiago-Caramelo/patchsearch | Program.cs | Program.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace PatchSearch
{
// teste teste
class Program
{
static void Main(string[] args)
{
if (args == null || args.Length == 0)
{
return;
}
... | using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace PatchSearch
{
// teste teste
class Program
{
static void Main(string[] args)
{
if (args == null || args.Length == 0)
{
return;
}
... | mit | C# |
aae8d420eb6b62e44a7492e2d9574b0c56bca2ef | Bump version. | kyourek/Pagination,kyourek/Pagination,kyourek/Pagination | sln/AssemblyVersion.cs | sln/AssemblyVersion.cs | using System.Reflection;
[assembly: AssemblyVersion("2.0.2")]
| using System.Reflection;
[assembly: AssemblyVersion("2.0.1.1")]
| mit | C# |
ab601fe8c066861d5f2e931d28091694761a5145 | Test change reverted. | pushrbx/squidex,pushrbx/squidex,pushrbx/squidex,Squidex/squidex,Squidex/squidex,pushrbx/squidex,pushrbx/squidex,Squidex/squidex,Squidex/squidex,Squidex/squidex | src/Squidex.Infrastructure/Validate.cs | src/Squidex.Infrastructure/Validate.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# |
477c5ce7a4c99e0ac25764f1a9b0428fc6d72ae5 | Improve code documentation in the IAnchorBuilder interface | openchain/openchain | src/Openchain.Ledger/IAnchorBuilder.cs | src/Openchain.Ledger/IAnchorBuilder.cs | // Copyright 2015 Coinprism, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agree... | // Copyright 2015 Coinprism, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agree... | apache-2.0 | C# |
1513a68353c2a573201cd5057bd1ba23e5e07a65 | Remove dlls from startup check. | Piotrekol/StreamCompanion,Piotrekol/StreamCompanion | osu!StreamCompanion/Code/Misc/FileChecker.cs | osu!StreamCompanion/Code/Misc/FileChecker.cs | using System;
using System.IO;
using System.Windows.Forms;
namespace osu_StreamCompanion.Code.Misc
{
class FileChecker
{
private string[] _requiredFiles = new string[0];
private string caption = "StreamCompanion Error";
private string errorMessage =
"It seems that you are m... | using System;
using System.IO;
using System.Windows.Forms;
namespace osu_StreamCompanion.Code.Misc
{
class FileChecker
{
private string[] _requiredFiles = new[] { "SQLite.Interop.dll", "System.Data.SQLite.dll" };
private string caption = "StreamCompanion Error";
private string errorMes... | mit | C# |
62d0036c819c0516005f9b5b3938d359e0cac987 | Fix using private constructor on MessagePack object | UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,ppy/osu,peppy/osu,ppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,smoogipoo/osu,peppy/osu-new,peppy/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,smoogipooo/osu,NeoAdonis/osu | osu.Game/Online/Rooms/BeatmapAvailability.cs | osu.Game/Online/Rooms/BeatmapAvailability.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 MessagePack;
using Newtonsoft.Json;
namespace osu.Game.Online.Rooms
{
/// <summary>
/// The local availability information about a certain be... | // 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 MessagePack;
using Newtonsoft.Json;
namespace osu.Game.Online.Rooms
{
/// <summary>
/// The local availability information about a certain be... | mit | C# |
aa875fa4557fa9c0f11f8df447291ef1959837b4 | Apply patch Background isn't drawn when using a single char | ForNeVeR/wpf-math | WpfMath/CharBox.cs | WpfMath/CharBox.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Media;
namespace WpfMath
{
// Box representing single character.
internal class CharBox : Box
{
public CharBox(TexEnvironment environment, CharInfo charInfo)
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Media;
namespace WpfMath
{
// Box representing single character.
internal class CharBox : Box
{
public CharBox(TexEnvironment environment, CharInfo charInfo)
... | mit | C# |
ca3a520a1d28126060b7687c986614b724d5672d | Fix backtick logic for explicitly implemented non-generic members of generic interfaces. | StephenClearyApps/DotNetApis,StephenClearyApps/DotNetApis,StephenClearyApps/DotNetApis,StephenClearyApps/DotNetApis | service/DotNetApis.Common/StringExtensions.cs | service/DotNetApis.Common/StringExtensions.cs | using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DotNetApis.Common
{
public static class StringExtensions
{
/// <summary>
/// @-encodes a string to a specific alphabet.
/// </summar... | using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DotNetApis.Common
{
public static class StringExtensions
{
/// <summary>
/// @-encodes a string to a specific alphabet.
/// </summar... | mit | C# |
f45cfbe50a7e5054be52b42673396b47ebe26cc5 | Document the sad reality that it is not possible to run tests on 3.5 anymore | jberezanski/PSKnownFolders | BlaSoft.PowerShell.KnownFolders.Tests/PowerShellTestBase.cs | BlaSoft.PowerShell.KnownFolders.Tests/PowerShellTestBase.cs | using System;
using System.Collections;
using System.Linq;
using System.Text;
using Microsoft.VisualStudio.TestTools.UnitTesting;
#if FX40
namespace BlaSoft.PowerShell.KnownFolders.Tests.Fx40
#else
namespace BlaSoft.PowerShell.KnownFolders.Tests
#endif
{
using System.Management.Automation;
public abstract cl... | using System;
using System.Collections;
using System.Linq;
using System.Text;
using Microsoft.VisualStudio.TestTools.UnitTesting;
#if FX40
namespace BlaSoft.PowerShell.KnownFolders.Tests.Fx40
#else
namespace BlaSoft.PowerShell.KnownFolders.Tests
#endif
{
using System.Management.Automation;
public abstract cl... | mit | C# |
886297b3e26acb31e3f379dc98400544ebc47e37 | Update SebastianFeldmann.cs | planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell | src/Firehose.Web/Authors/SebastianFeldmann.cs | src/Firehose.Web/Authors/SebastianFeldmann.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class SebastianFeldmann : IAmACommunityMember
{
public string FirstName => "Sebastian";
public s... | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class SebastianFeldmann : IAmACommunityMember
{
public string FirstName => "Sebastian";
public s... | mit | C# |
ab74570bff877cc3e81e95256a9c4b453534e37b | Remove white space | ASP-NET-Core-Boilerplate/Framework,ASP-NET-Core-Boilerplate/Framework,ASP-NET-MVC-Boilerplate/Framework,ASP-NET-Core-Boilerplate/Framework,ASP-NET-MVC-Boilerplate/Framework,ASP-NET-Core-Boilerplate/Framework | Source/Boilerplate.AspNetCore/ContentType.cs | Source/Boilerplate.AspNetCore/ContentType.cs | namespace Boilerplate.AspNetCore
{
/// <summary>
/// A list of internet media types, which are a standard identifier used on the Internet to indicate the type of
/// data that a file contains. Web browsers use them to determine how to display, output or handle files and search
/// engines use them to cl... | namespace Boilerplate.AspNetCore
{
/// <summary>
/// A list of internet media types, which are a standard identifier used on the Internet to indicate the type of
/// data that a file contains. Web browsers use them to determine how to display, output or handle files and search
/// engines use them to cl... | mit | C# |
4610f9c96261b3340f9a78ac0f4709713b74d294 | Update GLTFExportMenu.cs (#338) | robertlong/UnityGLTFLoader,AltspaceVR/UnityGLTF | UnityGLTF/Assets/UnityGLTF/Scripts/Editor/GLTFExportMenu.cs | UnityGLTF/Assets/UnityGLTF/Scripts/Editor/GLTFExportMenu.cs | using System;
using UnityEditor;
using UnityGLTF;
using UnityEngine;
using UnityEngine.SceneManagement;
public class GLTFExportMenu : EditorWindow
{
public static string RetrieveTexturePath(UnityEngine.Texture texture)
{
return AssetDatabase.GetAssetPath(texture);
}
[MenuItem("GLTF/Settings")]... | using System;
using UnityEditor;
using UnityGLTF;
using UnityEngine;
using UnityEngine.SceneManagement;
public class GLTFExportMenu : EditorWindow
{
public static string RetrieveTexturePath(UnityEngine.Texture texture)
{
return AssetDatabase.GetAssetPath(texture);
}
[MenuItem("GLTF/Settings")]... | mit | C# |
0d436421f9cb938163930ebb27fe6b8d2ad96371 | enable only single instance of the app | yaronthurm/Backy | BackyUI/Program.cs | BackyUI/Program.cs | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Backy
{
static class Program
{
static Mutex singleInstanceMutex = new Mutex(tru... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Backy
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(... | mit | C# |
21080fc5be8cf8f416917c108e077f572176b50c | Fix UpdateVersionsRepo to pass file paths instead of a directory | EdwardBlair/cli,johnbeisner/cli,ravimeda/cli,dasMulli/cli,ravimeda/cli,harshjain2/cli,blackdwarf/cli,EdwardBlair/cli,Faizan2304/cli,livarcocc/cli-1,blackdwarf/cli,harshjain2/cli,svick/cli,svick/cli,svick/cli,blackdwarf/cli,ravimeda/cli,dasMulli/cli,Faizan2304/cli,Faizan2304/cli,EdwardBlair/cli,dasMulli/cli,harshjain2/c... | build_projects/dotnet-cli-build/UpdateVersionsRepo.cs | build_projects/dotnet-cli-build/UpdateVersionsRepo.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 Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using Microsoft.DotNet.VersionTools.Automation;
using System.IO;
namespace Mi... | // 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 Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using Microsoft.DotNet.VersionTools.Automation;
namespace Microsoft.DotNet.Cl... | mit | C# |
42a3a30bf80edf60b638f249e20fec3ad0c8cd44 | Add more browser bindings | quisquous/cactbot,sqt/cactbot,sqt/cactbot,quisquous/cactbot,sqt/cactbot,quisquous/cactbot,sqt/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,sqt/cactbot | BrowserBindings.cs | BrowserBindings.cs | using Advanced_Combat_Tracker;
using FFXIV_ACT_Plugin;
using System.Collections.Generic;
namespace ACTBossTime
{
public class BrowserBindings
{
const int MaxLogLinesRetained = 2000;
Queue<string> logLines = new Queue<string>();
public BrowserBindings()
{
Advanced_Co... | using Advanced_Combat_Tracker;
using FFXIV_ACT_Plugin;
using System.Collections.Generic;
namespace ACTBossTime
{
public class BrowserBindings
{
const int MaxLogLinesRetained = 2000;
Queue<string> logLines = new Queue<string>();
public BrowserBindings()
{
Advanced_Co... | apache-2.0 | C# |
5f701dba88947acaf8a1fc020e864679e2d98150 | Use file exists instead of getting file. fixes #262 | modulexcite/dotless,r2i-sitecore/dotless,modulexcite/dotless,modulexcite/dotless,rytmis/dotless,rytmis/dotless,modulexcite/dotless,r2i-sitecore/dotless,r2i-sitecore/dotless,dotless/dotless,dotless/dotless,rytmis/dotless,rytmis/dotless,modulexcite/dotless,r2i-sitecore/dotless,r2i-sitecore/dotless,rytmis/dotless,r2i-site... | src/dotless.AspNet/Input/VirtualFileReader.cs | src/dotless.AspNet/Input/VirtualFileReader.cs | namespace dotless.Core.Input
{
using System.IO;
using System.Web.Hosting;
public class VirtualFileReader : IFileReader
{
public byte[] GetBinaryFileContents(string fileName)
{
var virtualPathProvider = HostingEnvironment.VirtualPathProvider;
var virtualFile = vir... | namespace dotless.Core.Input
{
using System.IO;
using System.Web.Hosting;
public class VirtualFileReader : IFileReader
{
public byte[] GetBinaryFileContents(string fileName)
{
var virtualPathProvider = HostingEnvironment.VirtualPathProvider;
var virtualFile = vir... | apache-2.0 | C# |
8087b3af6088741f972e9f264f0eb2e198c68a28 | reduce cache time down to 30 secs (#814) | collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists | src/FilterLists.Api/V1/Controllers/BaseController.cs | src/FilterLists.Api/V1/Controllers/BaseController.cs | using System;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using FilterLists.Services.Seed;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Caching.Memory;
namespace FilterLists.Api.V1.Controllers
{
[ApiVersion("1.0")]
[Route("v{version:apiVersion}/[controller]")]
[Respo... | using System;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using FilterLists.Services.Seed;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Caching.Memory;
namespace FilterLists.Api.V1.Controllers
{
[ApiVersion("1.0")]
[Route("v{version:apiVersion}/[controller]")]
[Respo... | mit | C# |
d46d05892edf5ee000fd71ed5dbf2ce333478901 | Update Index.cshtml | KrishnaIBM/TestCt-1478684487505,KrishnaIBM/TestCt-1478684487505 | src/dotnetCloudantWebstarter/Views/Home/Index.cshtml | src/dotnetCloudantWebstarter/Views/Home/Index.cshtml | @{
ViewData["Title"] = "Home Page";
}
<form method="post" asp-action="Index" asp-controller="Home" enctype="multipart/form-data">
<input type="file" name="files" multiple />
<input type="submit" value="Upload" />
</form>
| @{
ViewData["Title"] = "Home Page";
}
<h3>@ViewData["Message"]</h3>
<form method="post" asp-action="Index" asp-controller="Home" enctype="multipart/form-data">
<input type="file" name="files" multiple />
<input type="submit" value="Upload" />
</form>
| apache-2.0 | C# |
5daffd14383a264419b5843da5289d0823896925 | change progressbar | B1naryStudio/Azimuth,B1naryStudio/Azimuth | Azimuth/Views/Shared/_AudioPlayer.cshtml | Azimuth/Views/Shared/_AudioPlayer.cshtml | <div id="audio-player">
<div id="audio-player-buttons">
<div id="prev-button"><i class="fa fa-backward"></i></div>
<div id="play-button"><i class="fa fa-play"></i><i class="fa fa-pause hide"></i></div>
<div id="next-button"><i class="fa fa-forward"></i></div>
</div>
<div id="item-co... | <div id="audio-player">
<div id="audio-player-buttons">
<div id="prev-button"><i class="fa fa-backward"></i></div>
<div id="play-button"><i class="fa fa-play"></i><i class="fa fa-pause hide"></i></div>
<div id="next-button"><i class="fa fa-forward"></i></div>
</div>
<div id="item-co... | mit | C# |
38050e8c3d202fc3262c25dd21cb06a578701e66 | Fix Basic tests (angularjs.org site has been updated) | sergueik/protractor-net,JonWang0/protractor-net,bbaia/protractor-net | examples/Protractor.Samples/Basic/BasicTests.cs | examples/Protractor.Samples/Basic/BasicTests.cs | using System;
using NUnit.Framework;
using OpenQA.Selenium;
using OpenQA.Selenium.PhantomJS;
using OpenQA.Selenium.Chrome;
namespace Protractor.Samples.Basic
{
[TestFixture]
public class BasicTests
{
private IWebDriver driver;
[SetUp]
public void SetUp()
{
// U... | using System;
using NUnit.Framework;
using OpenQA.Selenium;
using OpenQA.Selenium.PhantomJS;
using OpenQA.Selenium.Chrome;
namespace Protractor.Samples.Basic
{
[TestFixture]
public class BasicTests
{
private IWebDriver driver;
[SetUp]
public void SetUp()
{
// U... | mit | C# |
de8b62ff7dcb86359a4a2c4fe096600157a72eef | Set -unsafe on by default. | SaladbowlCreative/Unity3D.IncrementalCompiler,SaladLab/Unity3D.IncrementalCompiler | extra/CompilerPlugin/CustomCSharpCompiler.cs | extra/CompilerPlugin/CustomCSharpCompiler.cs | using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using UnityEditor.Scripting;
using UnityEditor.Scripting.Compilers;
using UnityEditor.Utils;
using UnityEngine;
internal class CustomCSharpCompiler : MonoCSharpCompiler
{
#if UNITY4
public CustomCSharpCompiler(MonoIsland i... | using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using UnityEditor.Scripting;
using UnityEditor.Scripting.Compilers;
using UnityEditor.Utils;
using UnityEngine;
internal class CustomCSharpCompiler : MonoCSharpCompiler
{
#if UNITY4
public CustomCSharpCompiler(MonoIsland i... | mit | C# |
4e735598e10ba3e285f6ec6b7348ff2b78ec9eca | Add tests for attempting escaping root | ppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,smoogipooo/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ZLima12/osu-framework,peppy/osu-framework,EVAST9919/osu-framework | osu.Framework.Tests/IO/TestDesktopStorage.cs | osu.Framework.Tests/IO/TestDesktopStorage.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.IO;
using NUnit.Framework;
namespace osu.Framework.Tests.IO
{
[TestFixture]
public class TestDesktopStorage
{
[Test]
... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.IO;
using NUnit.Framework;
namespace osu.Framework.Tests.IO
{
[TestFixture]
public class TestDesktopStorage
{
[Test]
... | mit | C# |
490d48fa5e106b88b5aac1952812689ec444c889 | Fix MultiplayerTestCase not being abstract | smoogipooo/osu,DrabWeb/osu,smoogipoo/osu,peppy/osu,naoey/osu,ZLima12/osu,peppy/osu,DrabWeb/osu,smoogipoo/osu,UselessToucan/osu,UselessToucan/osu,DrabWeb/osu,2yangk23/osu,UselessToucan/osu,ppy/osu,EVAST9919/osu,EVAST9919/osu,smoogipoo/osu,naoey/osu,2yangk23/osu,peppy/osu-new,ppy/osu,ppy/osu,peppy/osu,johnneijzen/osu,Neo... | osu.Game/Tests/Visual/MultiplayerTestCase.cs | osu.Game/Tests/Visual/MultiplayerTestCase.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.Configuration;
using osu.Game.Online.Multiplayer;
namespace osu.Game.Tests.Visual
{
public abstract class Multipl... | // 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.Configuration;
using osu.Game.Online.Multiplayer;
namespace osu.Game.Tests.Visual
{
public class MultiplayerTestC... | mit | C# |
ef9a3dd99272f14933c5e01856f3e3cf678cbc1a | Update GetVaribleStatement.cs | nilproject/NiL.JS,Oceanswave/NiL.JS,Oceanswave/NiL.JS,nilproject/NiL.JS,Oceanswave/NiL.JS,nilproject/NiL.JS | NiL.JS/Statements/GetVaribleStatement.cs | NiL.JS/Statements/GetVaribleStatement.cs | using System;
using NiL.JS.Core.BaseTypes;
using NiL.JS.Core;
namespace NiL.JS.Statements
{
internal sealed class GetVaribleStatement : Statement
{
private Context cacheContext;
private JSObject cacheRes;
private string varibleName;
public GetVaribleStatement(string name)
... | using System;
using NiL.JS.Core.BaseTypes;
using NiL.JS.Core;
namespace NiL.JS.Statements
{
internal sealed class GetVaribleStatement : Statement
{
private Context cacheContext;
private JSObject cacheRes;
private string varibleName;
public GetVaribleStatement(string name)
... | bsd-3-clause | C# |
d52e0e376e8a25eebb7606f022b8b11a1ff6d657 | Update data dir | Mako88/dxx-tracker | RebirthTracker/RebirthTracker/Globals.cs | RebirthTracker/RebirthTracker/Globals.cs | using System.Collections.Generic;
using System.Net.Sockets;
using System.Runtime.InteropServices;
namespace RebirthTracker
{
/// <summary>
/// Class to keep track of global variables
/// </summary>
public static class Globals
{
public readonly static UdpClient MainClient = new UdpClient(99... | using System.Collections.Generic;
using System.Net.Sockets;
using System.Runtime.InteropServices;
namespace RebirthTracker
{
/// <summary>
/// Class to keep track of global variables
/// </summary>
public static class Globals
{
public readonly static UdpClient MainClient = new UdpClient(99... | mit | C# |
a2217e4874ebda61dca1ed1e276107714bad73bf | Fix ios throwing NotImplementedException when deserializing StripeCharge | richardlawley/stripe.net,stripe/stripe-dotnet,duckwaffle/stripe.net,brentdavid2008/stripe.net | src/Stripe/Infrastructure/SourceConverter.cs | src/Stripe/Infrastructure/SourceConverter.cs | using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace Stripe.Infrastructure
{
internal class SourceConverter : JsonConverter
{
public override bool CanConvert(Type objectType)
{
throw new NotImplementedException();
}
... | using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace Stripe.Infrastructure
{
internal class SourceConverter : JsonConverter
{
public override bool CanConvert(Type objectType)
{
throw new NotImplementedException();
}
... | apache-2.0 | C# |
1df45026313d16a85cc09fe553e3988cb9dd67d2 | fix (#414) | StefH/WireMock.Net,WireMock-Net/WireMock.Net,StefH/WireMock.Net | src/WireMock.Net.StandAlone/StandAloneApp.cs | src/WireMock.Net.StandAlone/StandAloneApp.cs | using JetBrains.Annotations;
using System.Linq;
using WireMock.Logging;
using WireMock.Server;
using WireMock.Settings;
using WireMock.Validation;
namespace WireMock.Net.StandAlone
{
/// <summary>
/// The StandAloneApp
/// </summary>
public static class StandAloneApp
{
/// <summary>
... | using JetBrains.Annotations;
using System.Linq;
using WireMock.Logging;
using WireMock.Server;
using WireMock.Settings;
using WireMock.Validation;
namespace WireMock.Net.StandAlone
{
/// <summary>
/// The StandAloneApp
/// </summary>
public static class StandAloneApp
{
/// <summary>
... | apache-2.0 | C# |
ab9cc810380dc44c88d869797e476a2fdc54820f | Update v3 _Layout.cshtml | atata-framework/atata-bootstrap,atata-framework/atata-bootstrap | test/Atata.Bootstrap.TestApp/Pages/v3/_Layout.cshtml | test/Atata.Bootstrap.TestApp/Pages/v3/_Layout.cshtml | <!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewBag.Title - Atata.Bootstrap.TestApp v3</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKr... | <!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewBag.Title</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9... | apache-2.0 | C# |
813a3379ade0b5699bd264d167f78a0af797fe18 | Rename field | ethanmoffat/EndlessClient | EOLib.IO/Services/Serializers/WarpMapEntitySerializer.cs | EOLib.IO/Services/Serializers/WarpMapEntitySerializer.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 System;
using System.Collections.Generic;
using EOLib.IO.Map;
namespace EOLib.IO.Services.Serializers
{
public class WarpMapEntitySerializer : IMapEntitySerial... | // 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 System;
using System.Collections.Generic;
using EOLib.IO.Map;
namespace EOLib.IO.Services.Serializers
{
public class WarpMapEntitySerializer : IMapEntitySerial... | mit | C# |
2bfaf2d86b174c9860d1b973bafa0009422689bd | Build script | SharpeRAD/Cake.Services | build.cake | build.cake | ///////////////////////////////////////////////////////////////////////////////
// IMPORTS
///////////////////////////////////////////////////////////////////////////////
#load "./build/scripts/imports.cake"
//////////////////////////////////////////////////////////////////////
// SOLUTION
///////////////////////... | //////////////////////////////////////////////////////////////////////
// IMPORTS
//////////////////////////////////////////////////////////////////////
#addin "Cake.Slack"
#addin "Cake.ReSharperReports"
#addin "Cake.AWS.S3"
#addin "Cake.FileHelpers"
#tool "ReportUnit"
#tool "JetBrains.ReSharper.CommandLineTools"
... | mit | C# |
c325c7be490315553b204c6b9653b1f33e0689d2 | Move build.cake to dotnet sdk api. | sqeezy/FibonacciHeap,sqeezy/FibonacciHeap | build.cake | build.cake | #tool "nuget:?package=xunit.runner.console"
var target = Argument("target", "Default");
var outputDir = "./bin";
Task("Default")
.IsDependentOn("Xunit")
.Does(() =>
{
});
Task("Xunit")
.IsDependentOn("Build")
.Does(()=>
{
DotNetCoreTest("./src/FibonacciHeap.Tests/FibonacciHeap.Tests.csproj");
});
Ta... | #tool "nuget:?package=xunit.runner.console"
var target = Argument("target", "Default");
var outputDir = "./bin";
Task("Default")
.IsDependentOn("Xunit")
.Does(() =>
{
});
Task("Xunit")
.IsDependentOn("Build")
.Does(()=>
{
XUnit2("./src/FibonacciHeap.Tests/bin/Release/FibonacciHeap.Tests.dll");
});
T... | mit | C# |
1bb00ff99246cf0777e644b035c3e83f0cdd955f | Update AssemblyInfo.cs | YouTuQiong/DataStructure | DataStructure/Properties/AssemblyInfo.cs | DataStructure/Properties/AssemblyInfo.cs | using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("DataStructure")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany... | using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("DataStructure")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany(... | mit | C# |
04e6be58a5584436894ba64446bfb06a356bddd3 | Switch server back to TCP | ermau/Tempest.Social | Desktop/Tempest.Social.Server/Program.cs | Desktop/Tempest.Social.Server/Program.cs | using System;
using System.IO;
using System.Net;
using System.Text;
using System.Threading;
using Tempest.Providers.Network;
namespace Tempest.Social.Server
{
class Program
{
private static readonly PublicKeyIdentityProvider IdentityProvider = new PublicKeyIdentityProvider();
static void Main (string[] args)
... | using System;
using System.IO;
using System.Net;
using System.Text;
using System.Threading;
using Tempest.Providers.Network;
namespace Tempest.Social.Server
{
class Program
{
private static readonly PublicKeyIdentityProvider IdentityProvider = new PublicKeyIdentityProvider();
static void Main (string[] args)
... | mit | C# |
edd04a448a38f3f389ddaa241ebd50e7802e9ab0 | Print the texts of each row | 12joan/hangman | table.cs | table.cs | using System;
using System.Collections.Generic;
using System.Text;
namespace Hangman {
public class Table {
public int Width;
public int Spacing;
public Row[] Rows;
public Table(int width, int spacing, Row[] rows) {
Width = width;
Spacing = spacing;
Rows = rows;
}
public s... | using System;
namespace Hangman {
public class Table {
public int Width;
public int Spacing;
public Row[] Rows;
public Table(int width, int spacing, Row[] rows) {
Width = width;
Spacing = spacing;
Rows = rows;
}
public string Draw() {
return "Hello World";
}
}
... | unlicense | C# |
0509fccf02dfd8f93107c4b421cbf0a3b7199822 | Update assembly info | hey-red/Markdown | MarkdownSharp/Properties/AssemblyInfo.cs | MarkdownSharp/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("Ma... | 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("Ma... | mit | C# |
c8bc54af16a4c62c5ea178bd3d1c8cadab12145b | Update App | jwmarsden/Kinetic3 | Kinetic/Kinetic-Example/K3TestApplication1.cs | Kinetic/Kinetic-Example/K3TestApplication1.cs |
using System;
using System.Drawing;
using Kinetic.Base;
using Kinetic.IO;
using Kinetic.Common;
using Kinetic.Math;
using Kinetic.Scene;
using Kinetic.Resource;
using Kinetic.Render;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace KineticExample
{
public class K3TestApplication1: BaseA... |
using System;
using System.Drawing;
using Kinetic.Base;
using Kinetic.IO;
using Kinetic.Common;
using Kinetic.Math;
using Kinetic.Scene;
using Kinetic.Resource;
using Kinetic.Render;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace KineticExample
{
public class K3TestApplication1: BaseA... | apache-2.0 | C# |
d2dfa363ad05dce8877c397f5f749729aef7c404 | Update heading on guitars page | michaelp0730/MichaelsMusic,michaelp0730/MichaelsMusic,michaelp0730/MichaelsMusic | MichaelsMusic/Views/Guitars/index.cshtml | MichaelsMusic/Views/Guitars/index.cshtml | @model MichaelsMusic.Models.GuitarCollection
@{
Layout = "~/Views/Shared/_Layout.cshtml";
ViewBag.Title = "Guitars";
ViewBag.Description = "This is the guitar collections page. These are all guitars that I either: own, used to own, or wish I owned (which is most of them). If you want to look at guitars, bu... | @model MichaelsMusic.Models.GuitarCollection
@{
Layout = "~/Views/Shared/_Layout.cshtml";
ViewBag.Title = "Guitars";
ViewBag.Description = "This is the guitar collections page. These are all guitars that I either: own, used to own, or wish I owned (which is most of them). If you want to look at guitars, bu... | mit | C# |
dd6b501e140aaa1b8e5ae8f5212d38e2e026faea | Revert "Added StartTile.cs" | iwelina-popova/Blackcurrant-team | MonopolyGame/MonopolyGame/Model/Board.cs | MonopolyGame/MonopolyGame/Model/Board.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MonopolyGame.Model
{
class Board
{
public Board(int size)
{
this.BoardArr = new ITile[size];
this.Players = new List<Player>();
//f... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MonopolyGame.Model
{
class Board
{
public Board()
{
this.BoardArr = new ITile[40];
this.Players = new List<Player>();
//for (int i ... | mit | C# |
c709932bf3a612531619a67e43f27ce479f2edb6 | Make Razor the only ViewEngine | pepinho24/MotivateMe,pepinho24/MotivateMe | MotivateMe/MotivateMe.Web/Global.asax.cs | MotivateMe/MotivateMe.Web/Global.asax.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace MotivateMe.Web
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace MotivateMe.Web
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
... | mit | C# |
da6ea93375599b4521abdc9e6d30d583a4dcf5ac | Fix memory leak | pleonex/Ninokuni,pleonex/Ninokuni,pleonex/Ninokuni | Programs/NinoPatcher/NinoPatcher/Animation.cs | Programs/NinoPatcher/NinoPatcher/Animation.cs | //
// Animation.cs
//
// Author:
// Benito Palacios Sánchez <benito356@gmail.com>
//
// Copyright (c) 2015 Benito Palacios Sánchez
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundati... | //
// Animation.cs
//
// Author:
// Benito Palacios Sánchez <benito356@gmail.com>
//
// Copyright (c) 2015 Benito Palacios Sánchez
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundati... | apache-2.0 | C# |
af1a7347a7c9e37d930611d988a5cedee5f53ad4 | Add appropriate constructor for KeyedCollection. | RockFramework/Rock.Core,peteraritchie/Rock.Core,bfriesen/Rock.Core | Rock.Core/Collections/KeyedCollection.cs | Rock.Core/Collections/KeyedCollection.cs | using System;
using System.Collections.Generic;
namespace Rock.Collections
{
/// <summary>
/// Provides the abstract base class for a collection whose keys are embedded in the values.
/// </summary>
/// <typeparam name="TKey">The type of keys in the collection.</typeparam>
/// <typeparam name="TIt... | namespace Rock.Collections
{
public abstract class KeyedCollection<TKey, TItem>
: System.Collections.ObjectModel.KeyedCollection<TKey, TItem>,
IKeyedEnumerable<TKey, TItem>
{
}
} | mit | C# |
85e876090dde68f79b05da403f047ab3b1f5c663 | Fix for clean directories | MacLeanElectrical/servicestack-authentication-identityserver | build.cake | build.cake | #addin "Cake.Json"
var target = Argument("target", "Default");
var configuration = Argument<string>("configuration", "Release");
///////////////////////////////////////////////////////////////////////////////
// GLOBAL VARIABLES
/////////////////////////////////////////////////////////////////////////////... | #addin "Cake.Json"
var target = Argument("target", "Default");
var configuration = Argument<string>("configuration", "Release");
///////////////////////////////////////////////////////////////////////////////
// GLOBAL VARIABLES
/////////////////////////////////////////////////////////////////////////////... | mpl-2.0 | C# |
8e74fc803ad8d00c7c4d44d8efe3e027cdd82fdd | add code to net3 test site to excercise jsnlog.js | mperdeck/jsnlog | jsnlog.test.net3/Pages/Index.cshtml | jsnlog.test.net3/Pages/Index.cshtml | @page
<div class="text-center">
<h1>jsnlog.test.net3</h1>
</div>
<script>
window.addEventListener("load", function () {
console.log('window load');
// Log a string to the server
JL().fatal("fatal log message");
// Cause a run time error that will be caught and logged to the ... | @page
<div class="text-center">
<h1>jsnlog.test.net3</h1>
</div>
| mit | C# |
f32697070a403e4fffdea35e4adc7ceb2088fb20 | update ci config file | yuleyule66/Npoi.Core,yuleyule66/Npoi.Core | build.cake | build.cake | #addin "nuget:https://www.nuget.org/api/v2?package=Newtonsoft.Json&version=9.0.1"
#load "./build/index.cake"
var target = Argument("target", "Default");
var build = BuildParameters.Create(Context);
var util = new Util(Context, build);
Task("Clean")
.Does(() =>
{
if (DirectoryExists("./artifacts"))
{
DeleteDire... | #addin "nuget:https://www.nuget.org/api/v2?package=Newtonsoft.Json&version=9.0.1"
#load "./build/index.cake"
var target = Argument("target", "Default");
var build = BuildParameters.Create(Context);
var util = new Util(Context, build);
Task("Clean")
.Does(() =>
{
if (DirectoryExists("./artifacts"))
{
DeleteDire... | apache-2.0 | C# |
c96692d7325f163d38d686b874977483fd62d0ba | Add missing EmitCloseList to backend | akrisiun/xwt,mminns/xwt,hamekoz/xwt,mminns/xwt,residuum/xwt,lytico/xwt,mono/xwt,directhex/xwt,TheBrainTech/xwt,antmicro/xwt,cra0zy/xwt,iainx/xwt,hwthomas/xwt,steffenWi/xwt,sevoku/xwt | Xwt/Xwt.Backends/IMarkdownViewBackend.cs | Xwt/Xwt.Backends/IMarkdownViewBackend.cs | //
// IMarkdownViewBackend.cs
//
// Author:
// Jérémie Laval <jeremie.laval@xamarin.com>
//
// Copyright (c) 2012 Xamarin, Inc.
using System;
namespace Xwt.Backends
{
[Flags]
enum MarkdownInlineStyle
{
Italic,
Bold,
Monospace
}
public interface IMarkdownViewBackend : IWidgetBackend
{
object Create... | //
// IMarkdownViewBackend.cs
//
// Author:
// Jérémie Laval <jeremie.laval@xamarin.com>
//
// Copyright (c) 2012 Xamarin, Inc.
using System;
namespace Xwt.Backends
{
[Flags]
enum MarkdownInlineStyle
{
Italic,
Bold,
Monospace
}
public interface IMarkdownViewBackend : IWidgetBackend
{
object Create... | mit | C# |
2c7720befe6ad2bc1798f49bca8aa8f14dab269b | Fix missing await in ConstantsTest.TotalGasesTest | space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14,space-wizards/space-station-14 | Content.IntegrationTests/Tests/Atmos/ConstantsTest.cs | Content.IntegrationTests/Tests/Atmos/ConstantsTest.cs | using System;
using System.Linq;
using System.Threading.Tasks;
using Content.Server.Atmos.EntitySystems;
using Content.Shared.Atmos;
using NUnit.Framework;
using Robust.Shared.GameObjects;
namespace Content.IntegrationTests.Tests.Atmos
{
[TestFixture]
[TestOf(typeof(Atmospherics))]
public class ConstantsT... | using System;
using System.Linq;
using System.Threading.Tasks;
using Content.Server.Atmos.EntitySystems;
using Content.Shared.Atmos;
using NUnit.Framework;
using Robust.Shared.GameObjects;
namespace Content.IntegrationTests.Tests.Atmos
{
[TestFixture]
[TestOf(typeof(Atmospherics))]
public class ConstantsT... | mit | C# |
b89578150ff7173496317510c97e8129e546896f | Update IDbSession.cs | PowerMogli/Rabbit.Db | src/RabbitDB/IDbSession.cs | src/RabbitDB/IDbSession.cs | using System;
using System.Linq.Expressions;
using RabbitDB.Query;
namespace RabbitDB.Base
{
internal interface IDbSession : ITransactionalSession, IDisposable
{
void ExecuteCommand(string sql, params object[] args);
void ExecuteStoredProcedure(StoredProcedure procedureObject);
void Ex... | using System;
using System.Linq.Expressions;
using RabbitDB.Query;
namespace RabbitDB.Base
{
internal interface IDbSession : ITransactionalSession, IDisposable
{
void ExecuteCommand(string sql, params object[] args);
void ExecuteStoredProcedure(StoredProcedure procedureObject);
void Ex... | apache-2.0 | C# |
0a1e6a82739101f3c2db1b6b8a859cfe3dcddec7 | Fix storyboard video playback when not starting at beginning of beatmap | ppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,NeoAdonis/osu,smoogipooo/osu,ppy/osu,peppy/osu-new,peppy/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,ppy/osu,peppy/osu,peppy/osu | osu.Game/Storyboards/Drawables/DrawableStoryboardVideo.cs | osu.Game/Storyboards/Drawables/DrawableStoryboardVideo.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.G... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.G... | mit | C# |
f181e6cbd41364b3658824c9626a30ca60db6ec3 | Add NaN check | EasyPeasyLemonSqueezy/MadCat | MadCat/NutEngine/Physics/Collider/ResolveCollision.cs | MadCat/NutEngine/Physics/Collider/ResolveCollision.cs | using Microsoft.Xna.Framework;
using NutEngine.Physics.Shapes;
using System;
namespace NutEngine.Physics
{
public static partial class Collider
{
public static void ResolveCollision(Collision collision)
{
var relVelocity = collision.B.Velocity - collision.A.Velocity;
va... | using Microsoft.Xna.Framework;
using NutEngine.Physics.Shapes;
using System;
namespace NutEngine.Physics
{
public static partial class Collider
{
public static void ResolveCollision(Collision collision)
{
var relVelocity = collision.B.Velocity - collision.A.Velocity;
va... | mit | C# |
28ab6072a82fa85abe1d556c9d2b3eb21567a603 | Make the WrappedTransaction property of ProfiledDbTransaction become public because in some use cases (eg. Sql Server Bulk insert) this reference is needed. | MiniProfiler/dotnet,MiniProfiler/dotnet | StackExchange.Profiling/Data/ProfiledDbTransaction.cs | StackExchange.Profiling/Data/ProfiledDbTransaction.cs | using System;
using System.Data.Common;
using System.Data;
#pragma warning disable 1591 // xml doc comments warnings
namespace StackExchange.Profiling.Data
{
public class ProfiledDbTransaction : DbTransaction
{
private ProfiledDbConnection _conn;
private DbTransaction _trans;
public ... | using System;
using System.Data.Common;
using System.Data;
#pragma warning disable 1591 // xml doc comments warnings
namespace StackExchange.Profiling.Data
{
public class ProfiledDbTransaction : DbTransaction
{
private ProfiledDbConnection _conn;
private DbTransaction _trans;
public ... | mit | C# |
7b88a5613aef3f942f7c289c3f27f7b529e885cf | Update VerbatimMultiLineEscapeQuotes.cs | maniero/SOpt,maniero/SOpt,maniero/SOpt,bigown/SOpt,bigown/SOpt,bigown/SOpt,maniero/SOpt,bigown/SOpt,maniero/SOpt,maniero/SOpt,maniero/SOpt,maniero/SOpt,bigown/SOpt,maniero/SOpt,maniero/SOpt,maniero/SOpt,bigown/SOpt,maniero/SOpt,bigown/SOpt,maniero/SOpt,bigown/SOpt,bigown/SOpt,maniero/SOpt,bigown/SOpt,maniero/SOpt,manie... | CSharp/String/VerbatimMultiLineEscapeQuotes.cs | CSharp/String/VerbatimMultiLineEscapeQuotes.cs | public class Program {
public static void Main() {
var html = @"< !DOCTYPE html >
<html lang = ""pt_BR"">
<head>
<meta charset = ""utf-8"">
<meta http - equiv = ""X-UA-Compatible"" content = ""IE=edge"">
<meta name = ""viewport"" content = ""width=device-width, in... | public class Program {
public static void Main() {
var html = @"< !DOCTYPE html >
< html lang = ""pt_BR"">
< head >
< meta charset = ""utf-8"" >
< meta http - equiv = ""X-UA-Compatible"" content = ""IE=edge"" >
< meta name = ""viewport"" content = ""width=device-w... | mit | C# |
71f23a659d378446003182557a57cae11c2181c9 | Update ExportRangeofCells.cs | aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cell... | Examples/CSharp/Articles/ExportRangeofCells.cs | Examples/CSharp/Articles/ExportRangeofCells.cs | using System.IO;
using Aspose.Cells;
using Aspose.Cells.Rendering;
using System.Drawing.Imaging;
namespace Aspose.Cells.Examples.Articles
{
public class ExportRangeofCells
{
public static void Main()
{
//ExStart:1
// The path to the documents directory.
stri... | using System.IO;
using Aspose.Cells;
using Aspose.Cells.Rendering;
using System.Drawing.Imaging;
namespace Aspose.Cells.Examples.Articles
{
public class ExportRangeofCells
{
public static void Main()
{
// The path to the documents directory.
string dataDir = Aspose.Cell... | mit | C# |
41c669dc2e9d974786eb4b6e8791c4f7c5a052c4 | Fix packaging | Catel/Catel.Fody | build.cake | build.cake | // Define the required parameters
var DefaultSolutionName = "Catel.Fody";
var DefaultCompany = "CatenaLogic";
var DefaultRepositoryUrl = string.Format("https://github.com/{0}/{1}", "Catel", DefaultSolutionName);
var StartYear = 2010;
// Note: the rest of the variables should be coming from the build server,
// see `/d... | // Define the required parameters
var DefaultSolutionName = "Catel.Fody";
var DefaultCompany = "CatenaLogic";
var DefaultRepositoryUrl = string.Format("https://github.com/{0}/{1}", "Catel", DefaultSolutionName);
var StartYear = 2010;
// Note: the rest of the variables should be coming from the build server,
// see `/d... | mit | C# |
bbe3e0a4ec104cf69ebac2a039a9bfc0e676f785 | update build script | DelcoigneYves/Xamarin.GoogleAnalytics | build.cake | build.cake | #addin nuget:https://nuget.org/api/v2/?package=Cake.FileHelpers&version=1.0.3.2
#addin nuget:https://nuget.org/api/v2/?package=Cake.Xamarin&version=1.2.3
var TARGET = Argument ("target", Argument ("t", "Default"));
var version = EnvironmentVariable ("APPVEYOR_BUILD_VERSION") ?? Argument("version", "0.0.9999");
var li... | #addin nuget:https://nuget.org/api/v2/?package=Cake.FileHelpers&version=1.0.3.2
#addin nuget:https://nuget.org/api/v2/?package=Cake.Xamarin&version=1.2.3
var TARGET = Argument ("target", Argument ("t", "Default"));
var version = EnvironmentVariable ("APPVEYOR_BUILD_VERSION") ?? Argument("version", "0.0.9999");
var li... | mit | C# |
0518986d1108a29f5436ba3ea289f28cc8293cea | Update ObservableObject.cs | wieslawsoltes/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D,Core2D/Core2D,wieslawsoltes/Core2D | src/Core2D/ObservableObject.cs | src/Core2D/ObservableObject.cs | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Collections.Immutable;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using Core2D.Attributes;
namespace Core2D
{
/// <summ... | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace Core2D
{
/// <summary>
/// Observable properties base class.
/// </summa... | mit | C# |
33b66afaee79030d43ed2441e4f4fd07c4bd51ab | Test are fixed | xtrmstep/MvcAjaxGridSample,xtrmstep/MvcAjaxGridSample | MvcAjaxGridSampleTests/Mocks/TestRepository.cs | MvcAjaxGridSampleTests/Mocks/TestRepository.cs | using MvcAjaxGridSample.Types.DataModel;
using MvcAjaxGridSample.Types.DataStorage.Implementation;
namespace MvcAjaxGridSampleTests.Mocks
{
internal class TestRepository : Repository<Book>
{
public TestRepository()
{
_internalStorage.Clear();
_internalStorage.Add(1, new... | using MvcAjaxGridSample.Types.DataModel;
using MvcAjaxGridSample.Types.DataStorage.Implementation;
namespace MvcAjaxGridSampleTests.Mocks
{
internal class TestRepository : Repository<Book>
{
public TestRepository()
{
_internalStorage.Add(1, new Book {Id = 1, Title = "Book 1", Issue... | mit | C# |
980704f703996a0dbebc37ee5347e17ab4607ed5 | Set version to 1.2 | igece/SoxSharp | src/Properties/AssemblyInfo.cs | src/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// La información general sobre un ensamblado se controla mediante el siguiente
// conjunto de atributos. Cambie estos atributos para modificar la información
// asociada con un ensamblado.
[assembly: AssemblyTitle(... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// La información general sobre un ensamblado se controla mediante el siguiente
// conjunto de atributos. Cambie estos atributos para modificar la información
// asociada con un ensamblado.
[assembly: AssemblyTitle(... | apache-2.0 | C# |
2e27503637cbd4d94646157aaf4bb414164e8187 | fix session.Dispose | Ahoo-Wang/SmartSql | SmartSql/DbSession/DbConnectionSessionStore.cs | SmartSql/DbSession/DbConnectionSessionStore.cs | using Microsoft.Extensions.Logging;
using SmartSql.Abstractions.DbSession;
using SmartSql.Exceptions;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace SmartSql.DbSession
{
/// <summary>
/// DbConnection Session Store
/// </summary>
public class DbCo... | using Microsoft.Extensions.Logging;
using SmartSql.Abstractions.DbSession;
using SmartSql.Exceptions;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace SmartSql.DbSession
{
/// <summary>
/// DbConnection Session Store
/// </summary>
public class DbCo... | apache-2.0 | C# |
a0c075e42f96b26f3cf96a0eec1e02c5878dc8d7 | Implement smart playlists limited by file size and duration. Fixes BGO | GNOME/hyena,dufoli/hyena,petejohanson/hyena,arfbtwn/hyena,petejohanson/hyena,dufoli/hyena,GNOME/hyena,arfbtwn/hyena | Hyena/Hyena.Query/QueryOrder.cs | Hyena/Hyena.Query/QueryOrder.cs | //
// QueryOrder.cs
//
// Authors:
// Gabriel Burt <gburt@novell.com>
// Aaron Bockover <abockover@novell.com>
//
// Copyright (C) 2007-2008 Novell, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to ... | //
// QueryOrder.cs
//
// Authors:
// Gabriel Burt <gburt@novell.com>
// Aaron Bockover <abockover@novell.com>
//
// Copyright (C) 2007-2008 Novell, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to ... | mit | C# |
ffef6c9408d94b1eb967083cedddfe56af8007b2 | Add new file userAuth.cpl/Droid/MainActivity.cs | ArcanaMagus/userAuth.cpl,ArcanaMagus/userAuth.cpl,ArcanaMagus/userAuth.cpl,ArcanaMagus/userAuth.cpl | userAuth.cpl/Droid/MainActivity.cs | userAuth.cpl/Droid/MainActivity.cs |