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 |
|---|---|---|---|---|---|---|---|---|
db88ee428ae10341dfdfc8adc2c462806ebcfbd4 | Update CountryController.cs | openchargemap/ocm-system,openchargemap/ocm-system,openchargemap/ocm-system,openchargemap/ocm-system | Website/OCM.MVC/Controllers/CountryController.cs | Website/OCM.MVC/Controllers/CountryController.cs | using OCM.API.Common;
using OCM.API.Common.DataSummary;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace OCM.MVC.Controllers
{
public class CountryController : Controller
{
// GET: Country and /Country/UnitedKingdom
[OutputCac... | using OCM.API.Common;
using OCM.API.Common.DataSummary;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace OCM.MVC.Controllers
{
public class CountryController : Controller
{
// GET: Country and /Country/UnitedKingdom
[OutputCac... | mit | C# |
22b7b521b30532991fbb37fed11d342b6507d646 | Add some more message types | Baggykiin/Curse.NET | Curse.NET/SocketModel/MessageType.cs | Curse.NET/SocketModel/MessageType.cs | namespace Curse.NET.SocketModel
{
public enum RequestType
{
Login = -2101997347,
}
public enum ResponseType
{
ChannelStatusChanged = 72981382,
UserActivityChange = 1260535191,
ChannelMarkedRead = -695526586,
ChatMessage = -635182161,
Login = -815187584,
MessageChanged = 149631008,
Unknown1 = 7051... | namespace Curse.NET.SocketModel
{
public enum RequestType
{
Login = -2101997347,
}
public enum ResponseType
{
UserActivityChange = 1260535191,
ChannelReference = -695526586,
ChatMessage = -635182161,
Login = -815187584,
UnknownChange = 149631008
}
}
// | mit | C# |
90f02c5540a7c74023dd3290592765ebf2c16ad8 | Test for file exception | thebentern/yamlconfig,thebentern/yamlconfig | YamlConfig.Test/ConfigProviderTest.cs | YamlConfig.Test/ConfigProviderTest.cs | using System;
using System.IO;
using FluentAssertions;
using NUnit.Framework;
using YamlConfig.Core;
namespace YamlConfig.Test
{
public class ConfigProviderTest
{
[SetUp]
public void Init()
{
// Tests fail locally in test runner if we don't set the execution directory
... | using System;
using System.IO;
using FluentAssertions;
using NUnit.Framework;
using YamlConfig.Core;
namespace YamlConfig.Test
{
public class ConfigProviderTest
{
[SetUp]
public void Init()
{
// Tests fail locally in test runner if we don't set the execution directory
... | mit | C# |
9804dfeb2071e4972cbb10df808e1e3a3fd67c47 | fix bug in rule loader with keys casing | Soluto/tweek,Soluto/tweek,Soluto/tweek,Soluto/tweek,Soluto/tweek,Soluto/tweek | Engine/Rules/Creation/RulesLoader.cs | Engine/Rules/Creation/RulesLoader.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Engine.Core;
using Engine.Core.Rules;
using Engine.DataTypes;
using Engine.Drivers.Rules;
using Tweek.JPad;
namespace Engine.Rules.Creation
{
public static class RulesLoader
{
public static asy... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Engine.Core;
using Engine.Core.Rules;
using Engine.DataTypes;
using Engine.Drivers.Rules;
using Tweek.JPad;
namespace Engine.Rules.Creation
{
public static class RulesLoader
{
public static asy... | mit | C# |
78a162257976d26ea95d54ec8497a89476cf104c | Add X.Satisfies | vain0/EnumerableTest | EnumerableTest.Core/TestExtension.cs | EnumerableTest.Core/TestExtension.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
using EnumerableTest.Sdk;
namespace EnumerableTest
{
/// <summary>
/// Provides extension methods related to <see cref="Test"/>.
/// </summary>
public stat... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
using EnumerableTest.Sdk;
namespace EnumerableTest
{
/// <summary>
/// Provides extension methods related to <see cref="Test"/>.
/// </summary>
public stat... | mit | C# |
8512800e60daf6ea32b50930c40a61b91a97ea3e | Fix `AssemblyFinderTests.FindAllByPatterns` | atata-framework/atata,atata-framework/atata | test/Atata.UnitTests/Utils/AssemblyFinderTests.cs | test/Atata.UnitTests/Utils/AssemblyFinderTests.cs | using System.Reflection;
namespace Atata.UnitTests.Utils;
[TestFixture]
public class AssemblyFinderTests
{
[Test]
public void Find()
{
Assembly currentAssembly = Assembly.GetAssembly(typeof(AssemblyFinderTests));
AssemblyFinder.Find(currentAssembly.GetName().Name)
.Should().B... | using System.Reflection;
namespace Atata.UnitTests.Utils;
[TestFixture]
public class AssemblyFinderTests
{
[Test]
public void Find()
{
Assembly currentAssembly = Assembly.GetAssembly(typeof(AssemblyFinderTests));
AssemblyFinder.Find(currentAssembly.GetName().Name)
.Should().B... | apache-2.0 | C# |
6107dc9096f953920dab95d06d5f087a45810692 | add define guard UNITY_2017_1_OR_NEWER | NDark/ndinfrastructure,NDark/ndinfrastructure | Unity/EditorTools/EditorTools.cs | Unity/EditorTools/EditorTools.cs | /**
MIT License
Copyright (c) 2017 - 2018 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... | /**
MIT License
Copyright (c) 2017 - 2018 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... | mit | C# |
faf962a022abf11aeb6a2f36683c6d30b7583055 | Add another SIL.Program.Process.SafeStart() variant | gmartin7/libpalaso,ermshiperete/libpalaso,ermshiperete/libpalaso,sillsdev/libpalaso,ermshiperete/libpalaso,sillsdev/libpalaso,gtryus/libpalaso,gtryus/libpalaso,gmartin7/libpalaso,gtryus/libpalaso,gmartin7/libpalaso,sillsdev/libpalaso,gmartin7/libpalaso,ermshiperete/libpalaso,gtryus/libpalaso,sillsdev/libpalaso | SIL.Core/Program/Process.cs | SIL.Core/Program/Process.cs | // Copyright (c) 2017 SIL International
// This software is licensed under the MIT License (http://opensource.org/licenses/MIT)
//
using System;
namespace SIL.Program
{
/// <summary>
/// Process.Start() obeys the current environment, which includes LD_LIBRARY_PATH on Linux.
/// This can have unfortunate effects for... | // Copyright (c) 2017 SIL International
// This software is licensed under the MIT License (http://opensource.org/licenses/MIT)
//
using System;
namespace SIL.Program
{
public static class Process
{
/// <summary>
/// Process.Start() obeys the current LD_LIBRARY_PATH on Linux. This can have unfortunate
/// eff... | mit | C# |
ef3be01b7c053164370e1a5092b647438c45fb56 | Update test | BinaryKits/ZPLUtility | ZPLUtilityUnitTest/BasicTests.cs | ZPLUtilityUnitTest/BasicTests.cs | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using BinaryKits.Utility.ZPLUtility;
using System.Collections.Generic;
namespace ZPLUtilityUnitTest
{
[TestClass]
public class BasicTests
{
[TestMethod]
public void SingelElement()
{
var result = new ZPLG... | using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using BinaryKits.Utility.ZPLUtility;
using System.Collections.Generic;
namespace ZPLUtilityUnitTest
{
[TestClass]
public class BasicTests
{
[TestMethod]
public void SingelElement()
{
var result = new ZPLG... | mit | C# |
83ec5ad03afebe1e1418a7f010e51bfc43be0e96 | Fix namespace | Launchify/Launchify,kayone/Wox,jondaniels/Wox,dstiert/Wox,Megasware128/Wox,yozora-hitagi/Saber,dstiert/Wox,kayone/Wox,jondaniels/Wox,kayone/Wox,medoni/Wox,yozora-hitagi/Saber,zlphoenix/Wox,JohnTheGr8/Wox,dstiert/Wox,Megasware128/Wox,medoni/Wox,danisein/Wox,Launchify/Launchify,JohnTheGr8/Wox,zlphoenix/Wox,danisein/Wox | Wox.Infrastructure/Logger/Log.cs | Wox.Infrastructure/Logger/Log.cs | using NLog;
using Wox.Infrastructure.Exception;
namespace Wox.Infrastructure.Logger
{
public class Log
{
private static NLog.Logger logger = LogManager.GetCurrentClassLogger();
public static void Error(System.Exception e)
{
#if DEBUG
throw e;
#else
logger.Error... | using NLog;
namespace Wox.Infrastructure.Logger
{
public class Log
{
private static NLog.Logger logger = LogManager.GetCurrentClassLogger();
public static void Error(System.Exception e)
{
#if DEBUG
throw e;
#else
logger.Error(e.Message + "\r\n" + e.StackTrace);... | mit | C# |
77d1580ee3871f34945af8569527630ddeb81f9a | Fix Display app on website root feature | btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver,btcpayserver/btcpayserver | BTCPayServer/Filters/DomainMappingConstraintAttribute.cs | BTCPayServer/Filters/DomainMappingConstraintAttribute.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using BTCPayServer.Abstractions.Contracts;
using BTCPayServer.HostedServices;
using BTCPayServer.Services;
using BTCPayServer.Services.Apps;
using Microsoft.AspNetCore.Mvc.ActionConstraints;
using Microsoft.Extensions.Depen... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using BTCPayServer.Abstractions.Contracts;
using BTCPayServer.HostedServices;
using BTCPayServer.Services;
using BTCPayServer.Services.Apps;
using Microsoft.AspNetCore.Mvc.ActionConstraints;
using Microsoft.Extensions.Depen... | mit | C# |
60efd9833c77bae1f2c27442ffaeba4cdf4ff5ef | Remove unused imports from RumorScriptExample | exodrifter/unity-rumor | Examples/RumorScriptExample.cs | Examples/RumorScriptExample.cs | using Exodrifter.Rumor.Engine;
using Exodrifter.Rumor.Lang;
using UnityEngine;
using UnityEngine.UI;
namespace Example.Exodrifter
{
/// <summary>
/// This is an example of how a Rumor may be intialized using a script.
/// </summary>
[AddComponentMenu("")]
public class RumorScriptExample : MonoBehaviour
{
priv... | using Exodrifter.Rumor.Engine;
using Exodrifter.Rumor.Lang;
using Exodrifter.Rumor.Nodes;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace Example.Exodrifter
{
/// <summary>
/// This is an example of how a Rumor may be intialized using a script.
/// </summary>
[AddComponentMenu... | mit | C# |
d8f4309b515a8404b0d951807488317b56e3b7d0 | Fix unit test | ChocoPacker/ChocoPacker.Clr | ChocoPacker.Burn.Tests/BurnInstallerInfoProviderTests.cs | ChocoPacker.Burn.Tests/BurnInstallerInfoProviderTests.cs | using ChocoPacker.Common;
using Xunit;
namespace ChocoPacker.Burn.Tests
{
public class BurnInstallerInfoProviderTests
{
private readonly string _sevenZipPath;
public BurnInstallerInfoProviderTests()
{
_sevenZipPath = TestUtils.GetTestFilePath("7z.exe");
}
... | using ChocoPacker.Common;
using Xunit;
namespace ChocoPacker.Burn.Tests
{
public class BurnInstallerInfoProviderTests
{
private readonly string _sevenZipPath;
public BurnInstallerInfoProviderTests()
{
_sevenZipPath = TestUtils.GetTestFilePath("7z.exe");
}
... | mit | C# |
e6bd7b62a22c5c10e49d761338fc281deb9ff988 | Remove semi-colon as it is being rendered in the UI | SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice | src/SFA.DAS.EmployerAccounts.Web/Views/Shared/_ZenDeskWidget.cshtml | src/SFA.DAS.EmployerAccounts.Web/Views/Shared/_ZenDeskWidget.cshtml | @using SFA.DAS.EmployerAccounts.Web.Extensions
<script type="text/javascript">
window.zESettings = {
webWidget: {
contactForm: {
attachments: false
},
chat: {
menuOptions: {
emailTranscript: false
}
... | @using SFA.DAS.EmployerAccounts.Web.Extensions
<script type="text/javascript">
window.zESettings = {
webWidget: {
contactForm: {
attachments: false
},
chat: {
menuOptions: {
emailTranscript: false
}
... | mit | C# |
03d04fef8f424982d8b9de15588cf7a72e6b2883 | Add test for authorization requirement in TraktUserApproveFollowerRequest | henrikfroehling/TraktApiSharp | Source/Tests/TraktApiSharp.Tests/Experimental/Requests/Users/OAuth/TraktUserApproveFollowerRequestTests.cs | Source/Tests/TraktApiSharp.Tests/Experimental/Requests/Users/OAuth/TraktUserApproveFollowerRequestTests.cs | namespace TraktApiSharp.Tests.Experimental.Requests.Users.OAuth
{
using FluentAssertions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using TraktApiSharp.Experimental.Requests.Base.Post.Bodyless;
using TraktApiSharp.Experimental.Requests.Users.OAuth;
using TraktApiSharp.Objects.Get.Users;
... | namespace TraktApiSharp.Tests.Experimental.Requests.Users.OAuth
{
using FluentAssertions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using TraktApiSharp.Experimental.Requests.Base.Post.Bodyless;
using TraktApiSharp.Experimental.Requests.Users.OAuth;
using TraktApiSharp.Objects.Get.Users;
... | mit | C# |
03dfe5223110e73d4ca2872dd819e64b741acb33 | Use StartsWith | Strumenta/SmartReader,Strumenta/SmartReader,Strumenta/SmartReader | src/SmartReader/UriExtensions.cs | src/SmartReader/UriExtensions.cs | using System;
using System.Collections.Generic;
using System.Text;
namespace SmartReader
{
internal static class UriExtensions
{
internal static string GetBase(this Uri startUri)
{
StringBuilder sb = new StringBuilder(startUri.Scheme + "://");
if (!string.IsNullOrEmpty(... | using System;
using System.Collections.Generic;
using System.Text;
namespace SmartReader
{
internal static class UriExtensions
{
internal static string GetBase(this Uri startUri)
{
StringBuilder sb = new StringBuilder(startUri.Scheme + "://");
if (!string.IsNullOrEmpty(... | apache-2.0 | C# |
a2c2c0f39859cf4a112b1625a70b26a508c46573 | Update MipsMode.cs to match naming convention. | FICTURE7/unicorn-net,FICTURE7/unicorn-net | src/Unicorn.Net/MIPS/MipsMode.cs | src/Unicorn.Net/MIPS/MipsMode.cs | namespace Unicorn.Mips
{
/// <summary>
/// Defines the modes of an <see cref="MipsEmulator"/>.
/// </summary>
public enum MipsMode
{
/// <summary>
/// MicroMips mode.
/// </summary>
Micro = Bindings.Mode.MIPSMicro,
/// <summary>
/// MIPS II... | namespace Unicorn.MIPS
{
/// <summary>
/// Defines the modes of an <see cref="MipsEmulator"/>.
/// </summary>
public enum MipsMode
{
/// <summary>
/// MicroMips mode.
/// </summary>
Micro = Bindings.Mode.MIPSMicro,
/// <summary>
/// MIPS I... | mit | C# |
c0760db54f0566e9f5928834d80e7e2f265809d4 | Update CompressionTester.cs | ballance/QuickTest | QuickTest/CompressionTester.cs | QuickTest/CompressionTester.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QuickTest
{
public class CompressionTester
{
public static int bufferSize = 32768;
public string Compress(string uncompres... | using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QuickTest
{
public class CompressionTester
{
public static int bufferSize = 32768;
public string Compress(string uncompres... | mit | C# |
9a0a007abb96d06b092f960209b94e3aa8a531e1 | Update ArrayEntity.cs | dimmpixeye/Unity3dTools | Runtime/LibMisc/ArrayEntity.cs | Runtime/LibMisc/ArrayEntity.cs | // Project : ecs
// Contacts : Pix - ask@pixeye.games
using System;
using System.Runtime.CompilerServices;
using Unity.IL2CPP.CompilerServices;
namespace Pixeye.Framework
{
[Serializable]
public struct ArrayEntity
{
public int length;
public ent[] source;
public ref ent this[int index]
{
[MethodImpl(... | // Project : ecs
// Contacts : Pix - ask@pixeye.games
using System;
using System.Runtime.CompilerServices;
using Unity.IL2CPP.CompilerServices;
namespace Pixeye.Framework
{
[Serializable]
public struct ArrayEntity
{
public int length;
public ent[] source;
public ref ent this[int index]
{
[MethodImpl(M... | mit | C# |
45d5ef1cd24bfc6d4b0cec66d21759be58130c0b | Fix rogue whitespace | jskeet/DemoCode,jskeet/DemoCode,jskeet/DemoCode,jskeet/DemoCode | Drums/VDrumExplorer.Data/Fields/MidiNoteField.cs | Drums/VDrumExplorer.Data/Fields/MidiNoteField.cs | // Copyright 2019 Jon Skeet. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
namespace VDrumExplorer.Data.Fields
{
public class MidiNoteField : NumericField
{
internal MidiNoteField(Parameters common) : base(common,
... | // Copyright 2019 Jon Skeet. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
namespace VDrumExplorer.Data.Fields
{
public class MidiNoteField : NumericField
{
internal MidiNoteField(Parameters common) : base(common,
... | apache-2.0 | C# |
1b23123e844d0b9a172165485da8144dfce9ade0 | check if there are no spawn points | whoa-algebraic/game-off-2016,whoa-algebraic/game-off-2016,whoa-algebraic/game-off-2016,virtuoushub/game-off-2016,virtuoushub/game-off-2016,virtuoushub/game-off-2016 | Assets/Scripts/EnemyManager.cs | Assets/Scripts/EnemyManager.cs | using UnityEngine;
/// <summary>
/// This is a spawning function I found <see href="https://unity3d.com/learn/tutorials/projects/survival-shooter/more-enemies">here.</see>
/// </summary>
namespace WhoaAlgebraic
{
public class EnemyManager : MonoBehaviour
{
public PlayerHealth playerHealth; // R... | using UnityEngine;
/// <summary>
/// This is a spawning function I found <see href="https://unity3d.com/learn/tutorials/projects/survival-shooter/more-enemies">here.</see>
/// </summary>
namespace WhoaAlgebraic
{
public class EnemyManager : MonoBehaviour
{
public PlayerHealth playerHealth; // R... | mit | C# |
2b500b431956b0620211b23316d219ffc6f0d62d | Add high score management | wqferr/GMTK-GameJam | Assets/Scripts/ScoreManager.cs | Assets/Scripts/ScoreManager.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ScoreManager : MonoBehaviour
{
public class Score {
public int maxCombo;
public int enemiesKilled;
public float dist;
}
public static int MAX_N = 10;
public int combo;
public int maxCombo;
public int enemiesKill... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ScoreManager : MonoBehaviour
{
public uint combo;
public uint maxCombo;
public uint enemiesKilled;
public float distance;
public void Start() {
combo = 0;
maxCombo = 0;
enemiesKilled = 0;
distance = 0;
}
publ... | mit | C# |
dbfbb408dab440a9c3e2d97e8fa5947f090e349e | set default pattern filtering | csnemes/tracer | Tracer.Fody/Filters/PatternFilter/PatternFilter.cs | Tracer.Fody/Filters/PatternFilter/PatternFilter.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
using Mono.Cecil;
using Tracer.Fody.Weavers;
namespace Tracer.Fody.Filters.PatternFilter
{
public class PatternFilter : ITraceLoggingFilter
{
private readonly List<PatternDefinition> _patternDefinitions;
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
using Mono.Cecil;
using Tracer.Fody.Weavers;
namespace Tracer.Fody.Filters.PatternFilter
{
public class PatternFilter : ITraceLoggingFilter
{
private readonly List<PatternDefinition> _patternDefinitions;
... | apache-2.0 | C# |
1bae2ad26e23c1d9dd2180a9a3fa9342ff05ef4d | make all the methods use the same parameters | StephenHodgson/MixedRealityToolkit-Unity | Assets/MixedRealityToolkit/_Core/DataProviders/Controllers/BaseDictationDataProvider.cs | Assets/MixedRealityToolkit/_Core/DataProviders/Controllers/BaseDictationDataProvider.cs | using System.Threading.Tasks;
using Microsoft.MixedReality.Toolkit.Core.Interfaces.DataProviders.Controllers;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Core.DataProviders.Controllers
{
/// <summary>
/// Base dictation data provider to use when implementing <see cref="IMixedRealityDictationDa... | using System.Threading.Tasks;
using Microsoft.MixedReality.Toolkit.Core.Interfaces.DataProviders.Controllers;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Core.DataProviders.Controllers
{
/// <summary>
/// Base dictation data provider to use when implementing <see cref="IMixedRealityDictationDa... | mit | C# |
55d517165848df13eedd6774cbc11758fdeffe9c | Revert contacts sample | orand/Xamarin.Mobile,nexussays/Xamarin.Mobile,moljac/Xamarin.Mobile,xamarin/Xamarin.Mobile,xamarin/Xamarin.Mobile,haithemaraissia/Xamarin.Mobile | MonoDroid/Samples/ContactsSample/MainActivity.cs | MonoDroid/Samples/ContactsSample/MainActivity.cs | using System;
using System.Text;
using System.Threading.Tasks;
using Android.App;
using Android.Content;
using Android.Database;
using Android.Net;
using Android.OS;
using Android.Provider;
using Android.Widget;
using Xamarin.Contacts;
using System.Linq;
using System.Collections.Generic;
namespace ContactsSample
{
[... | using System;
using System.Text;
using System.Threading.Tasks;
using Android.App;
using Android.Content;
using Android.Database;
using Android.Net;
using Android.OS;
using Android.Provider;
using Android.Widget;
using Xamarin.Contacts;
using System.Linq;
using System.Collections.Generic;
namespace ContactsSample
{
[... | apache-2.0 | C# |
ca29582f45af6d5505548345ac64e0178108a0ac | Update moment.js | martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site | src/LondonTravel.Site/Views/Shared/_Scripts.cshtml | src/LondonTravel.Site/Views/Shared/_Scripts.cshtml | <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous" defer></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvz... | <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous" defer></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvz... | apache-2.0 | C# |
b3a4cdc3ae267b6e2b9a0b31563134001cc36cb5 | Fix redirect url. | noogen/phuncms,noogen/phuncms,noogen/phuncms | src/Phun.Demo.Web/Controllers/AccountController.cs | src/Phun.Demo.Web/Controllers/AccountController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Transactions;
using System.Web;
using System.Web.Mvc;
using System.Web.Security;
using DotNetOpenAuth.AspNet;
using Microsoft.Web.WebPages.OAuth;
using WebMatrix.WebData;
using Phun.Demo.Web.Models;
namespace Phun.Demo.Web.Controllers
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Transactions;
using System.Web;
using System.Web.Mvc;
using System.Web.Security;
using DotNetOpenAuth.AspNet;
using Microsoft.Web.WebPages.OAuth;
using WebMatrix.WebData;
using Phun.Demo.Web.Models;
namespace Phun.Demo.Web.Controllers
{
... | mit | C# |
7f40f714d458b95bae2d6f818d6f5865c7d05661 | use System Font, when defaultFamilyName == "" | TakeAsh/cs-WpfUtility | WpfUtility/FontFamilyHelper.cs | WpfUtility/FontFamilyHelper.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Windows;
using System.Windows.Markup;
using System.Windows.Media;
namespace WpfUtility {
using FontFamilyPair = KeyValuePair<FontFamily, string>;
public static class FontFa... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Windows;
using System.Windows.Markup;
using System.Windows.Media;
namespace WpfUtility {
using FontFamilyPair = KeyValuePair<FontFamily, string>;
public static class FontFa... | mit | C# |
90a4d8ea43ddea412025df30aa97a15b2886480d | Reduce the default button down duration to 150 ms. | TTExtensions/MouseClickSimulator | TTMouseclickSimulator/Core/ToontownRewritten/Actions/MouseHelpers.cs | TTMouseclickSimulator/Core/ToontownRewritten/Actions/MouseHelpers.cs | using System.Threading.Tasks;
using TTMouseclickSimulator.Core.Environment;
namespace TTMouseclickSimulator.Core.ToontownRewritten.Actions
{
public class MouseHelpers
{
public static readonly Size ReferenceWindowSize = new Size(1600, 1151);
public static async Task DoSimpleMouseClickAsync(IIn... | using System.Threading.Tasks;
using TTMouseclickSimulator.Core.Environment;
namespace TTMouseclickSimulator.Core.ToontownRewritten.Actions
{
public class MouseHelpers
{
public static readonly Size ReferenceWindowSize = new Size(1600, 1151);
public static async Task DoSimpleMouseClickAsync(IIn... | mit | C# |
0ff83d95727a88c738c714e4df02f55c63faae6b | Update PowerShellLoggerScopeDisposable.cs | tiksn/TIKSN-Framework | TIKSN.Core/PowerShell/PowerShellLoggerScopeDisposable.cs | TIKSN.Core/PowerShell/PowerShellLoggerScopeDisposable.cs | using System;
using System.Collections.Concurrent;
namespace TIKSN.PowerShell
{
public class PowerShellLoggerScopeDisposable : IDisposable
{
private readonly ConcurrentStack<object> scopes;
public PowerShellLoggerScopeDisposable(ConcurrentStack<object> scopes) => this.scopes = scopes;
... | using System;
using System.Collections.Concurrent;
namespace TIKSN.PowerShell
{
public class PowerShellLoggerScopeDisposable : IDisposable
{
private readonly ConcurrentStack<object> scopes;
public PowerShellLoggerScopeDisposable(ConcurrentStack<object> scopes)
{
this.scope... | mit | C# |
af175d28b18a0e2999d21ec8579d7cd2db5df6c2 | Bump up the Assembly version. | djyou/azure-sdk-for-net,Yahnoosh/azure-sdk-for-net,DheerendraRathor/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,atpham256/azure-sdk-for-net,stankovski/azure-sdk-for-net,MichaelCommo/azure-sdk-for-net,Yahnoosh/azure-sdk-for-net,hyonholee/azure-sdk-for-net,smithab/azure-sdk-for-net,samtoubia/azure-sdk-for-net,olydis... | src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs | src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs | //
// Copyright (c) Microsoft. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable la... | //
// Copyright (c) Microsoft. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable la... | mit | C# |
236245b972c1b67a32ea60a3de49a35949139dc6 | Fix creation of randomly selected questions | CSClassroom/CSClassroom,CSClassroom/CSClassroom,CSClassroom/CSClassroom,CSClassroom/CSClassroom,CSClassroom/CSClassroom,CSClassroom/CSClassroom | Services/src/CSClassroom/CSClassroom.Service/Assignments/Validators/QuestionValidator.cs | Services/src/CSClassroom/CSClassroom.Service/Assignments/Validators/QuestionValidator.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CSC.Common.Infrastructure.Utilities;
using CSC.CSClassroom.Model.Classrooms;
using CSC.CSClassroom.Model.Assignments;
using CSC.CSClassroom.Repository;
using Microsoft.EntityFrameworkCore;
namespa... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CSC.Common.Infrastructure.Utilities;
using CSC.CSClassroom.Model.Classrooms;
using CSC.CSClassroom.Model.Assignments;
using CSC.CSClassroom.Repository;
using Microsoft.EntityFrameworkCore;
namespa... | mit | C# |
ff025a50b03419dcc58b9edae48bbd664c705fae | Fix for XF iOS | wcoder/Xamarin.Plugin.DeviceOrientation | samples/Xamarin.Forms-sample/TestNugetDeviceOrientationPlugin/TestNugetDeviceOrientationPlugin.iOS/AppDelegate.cs | samples/Xamarin.Forms-sample/TestNugetDeviceOrientationPlugin/TestNugetDeviceOrientationPlugin.iOS/AppDelegate.cs | using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace TestNugetDeviceOrientationPlugin.iOS
{
// The UIApplicationDelegate for the application. This class is responsible for launching the
// User Interface of the application, as well as listening (and opt... | using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace TestNugetDeviceOrientationPlugin.iOS
{
// The UIApplicationDelegate for the application. This class is responsible for launching the
// User Interface of the application, as well as listening (and opt... | mit | C# |
48758ef33908b4d59fb91f51e4c6365ebe984efe | remove conditional from log message (caused odd formatting) | SonOfSam/IdentityServer3,IdentityServer/IdentityServer3,IdentityServer/IdentityServer3,tuyndv/IdentityServer3,tonyeung/IdentityServer3,ryanvgates/IdentityServer3,SonOfSam/IdentityServer3,Agrando/IdentityServer3,tbitowner/IdentityServer3,codeice/IdentityServer3,tuyndv/IdentityServer3,bestwpw/IdentityServer3,bodell/Ident... | source/Core/Services/InMemory/InMemoryCorsPolicyService.cs | source/Core/Services/InMemory/InMemoryCorsPolicyService.cs | using IdentityServer3.Core.Extensions;
using IdentityServer3.Core.Logging;
using IdentityServer3.Core.Models;
/*
* Copyright 2014, 2015 Dominick Baier, Brock Allen
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtai... | using IdentityServer3.Core.Extensions;
using IdentityServer3.Core.Logging;
using IdentityServer3.Core.Models;
/*
* Copyright 2014, 2015 Dominick Baier, Brock Allen
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtai... | apache-2.0 | C# |
142eeb429e563830e09b4fd5af6d85a5760ee7ba | fix object conversion | AngleSharp/AngleSharp.Scripting,AngleSharp/AngleSharp.Scripting | src/AngleSharp.Scripting.JavaScript/SystemTypeConverter.cs | src/AngleSharp.Scripting.JavaScript/SystemTypeConverter.cs | namespace AngleSharp.Scripting.JavaScript
{
using Jint.Native;
using Jint.Runtime;
using System;
using System.Collections.Generic;
using System.IO;
static class SystemTypeConverter
{
public static IDictionary<String, Object> ToObjBag(JsValue arg)
{
var obj = arg... | namespace AngleSharp.Scripting.JavaScript
{
using Jint.Native;
using Jint.Runtime;
using System;
using System.Collections.Generic;
using System.IO;
static class SystemTypeConverter
{
public static IDictionary<String, Object> ToObjBag(JsValue arg)
{
var obj = arg... | mit | C# |
74f20bd771099fdfb6f297d08aad6ef0b522b207 | Fix naming and add PropertyAttributes.None | Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver | src/AsmResolver.PE/DotNet/Metadata/Tables/Rows/PropertyAttributes.cs | src/AsmResolver.PE/DotNet/Metadata/Tables/Rows/PropertyAttributes.cs | using System;
namespace AsmResolver.PE.DotNet.Metadata.Tables.Rows
{
/// <summary>
/// Provides members defining all flags that can be assigned to a property definition.
/// </summary>
[Flags]
public enum PropertyAttributes : ushort
{
/// <summary>
/// Specifies that no attribut... | using System;
namespace AsmResolver.PE.DotNet.Metadata.Tables.Rows
{
/// <summary>
/// Provides members defining all flags that can be assigned to a property definition.
/// </summary>
[Flags]
public enum PropertyAttributes : ushort
{
/// <summary>
/// The property uses a specia... | mit | C# |
2f9c23d36f6fb2037c23a6acc74e2f06873832ed | Fix TimeZoneLiquidFilter | stevetayloruk/Orchard2,xkproject/Orchard2,xkproject/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,OrchardCMS/Brochard,stevetayloruk/Orchard2,OrchardCMS/Brochard,petedavis/Orchard2,xkproject/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,OrchardCMS/Br... | src/OrchardCore.Modules/OrchardCore.Liquid/Filters/TimeZoneFilter.cs | src/OrchardCore.Modules/OrchardCore.Liquid/Filters/TimeZoneFilter.cs | using System;
using System.Globalization;
using System.Threading.Tasks;
using Fluid;
using Fluid.Values;
using OrchardCore.Modules;
namespace OrchardCore.Liquid.Filters
{
public class TimeZoneFilter : ILiquidFilter
{
private readonly ILocalClock _localClock;
public TimeZoneFilter(ILocalClock l... | using System;
using System.Globalization;
using System.Threading.Tasks;
using Fluid;
using Fluid.Values;
using OrchardCore.Modules;
namespace OrchardCore.Liquid.Filters
{
public class TimeZoneFilter : ILiquidFilter
{
private readonly ILocalClock _localClock;
public TimeZoneFilter(ILocalClock l... | bsd-3-clause | C# |
ba82a79435b25a2b43e0c1ce3c546a6772007936 | update datetime extension. | LuviKunG/LuviTools,LuviKunG/LuviTools | Extension/DateTimeExtension.cs | Extension/DateTimeExtension.cs | using System;
using System.Globalization;
namespace LuviKunG.Date
{
public static class DateTimeExtension
{
private const string DATETIME_FORMAT_ISO8601 = "yyyy-MM-ddTHH\\:mm\\:ssK";
private const string DATETIME_FORMAT_ISO8601_MILLISECOND = "yyyy-MM-ddTHH\\:mm\\:ss.fffK";
public stat... | using System;
using System.Globalization;
namespace LuviKunG.Date
{
public static class DateTimeExtension
{
private const string DATETIME_FORMAT_ISO8601 = "yyyy-MM-ddTHH\\:mm\\:ssK";
public static string ISO8601(this DateTime dateTime) => dateTime.ToString(DATETIME_FORMAT_ISO8601, CultureInfo... | mit | C# |
72b0c07454d8aa0f3f0e8d1bd48b58ccbc732b45 | Fix when no uncommited | michael-reichenauer/GitMind | GitMind/GitModel/Repository.cs | GitMind/GitModel/Repository.cs | using System;
using System.Collections.Generic;
using GitMind.Features.StatusHandling;
using GitMind.GitModel.Private;
using GitMind.Utils;
namespace GitMind.GitModel
{
internal class Repository
{
private readonly Lazy<IReadOnlyKeyedList<string, Branch>> branches;
private readonly Lazy<IReadOnlyList<Commit>> c... | using System;
using System.Collections.Generic;
using GitMind.Features.StatusHandling;
using GitMind.GitModel.Private;
using GitMind.Utils;
namespace GitMind.GitModel
{
internal class Repository
{
private readonly Lazy<IReadOnlyKeyedList<string, Branch>> branches;
private readonly Lazy<IReadOnlyList<Commit>> c... | mit | C# |
a1dce4fced328c9687293f6d80e1e0cea8b90ca4 | Fix the race condition in mutex test using another manual reset event (#13308) | JosephTremoulet/coreclr,yizhang82/coreclr,parjong/coreclr,russellhadley/coreclr,rartemev/coreclr,mskvortsov/coreclr,botaberg/coreclr,parjong/coreclr,tijoytom/coreclr,JosephTremoulet/coreclr,hseok-oh/coreclr,tijoytom/coreclr,yizhang82/coreclr,parjong/coreclr,hseok-oh/coreclr,ruben-ayrapetyan/coreclr,cydhaselton/coreclr,... | tests/src/baseservices/threading/mutex/openexisting/openmutexpos4.cs | tests/src/baseservices/threading/mutex/openexisting/openmutexpos4.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.Threading;
/// <summary>
/// Verifies if we CreateMutex adn then OpenMutex we don't have... | // 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.Threading;
/// <summary>
/// Verifies if we CreateMutex adn then OpenMutex we don't have... | mit | C# |
39af3023d453bb0fd2c4d0739ace7d262ffa0614 | remove unused code | asaed/poc-mongodb | ASaed.Poc.MongoDb.Data/Repository/BookRepository.cs | ASaed.Poc.MongoDb.Data/Repository/BookRepository.cs | using System.Collections.Generic;
using System.Linq;
using ASaed.Poc.MongoDb.Data.Model;
using MongoDB.Driver;
using MongoDB.Driver.Builders;
using MongoDB.Driver.Linq;
namespace ASaed.Poc.MongoDb.Data.Repository
{
public interface IBookRepository
{
void Add(Book book);
void Add(List<Book> boo... | using System.Collections.Generic;
using System.Linq;
using ASaed.Poc.MongoDb.Data.Model;
using MongoDB.Bson;
using MongoDB.Driver;
using MongoDB.Driver.Builders;
using MongoDB.Driver.Linq;
namespace ASaed.Poc.MongoDb.Data.Repository
{
public interface IBookRepository
{
void Add(Book book);
voi... | apache-2.0 | C# |
d00bd1dc50c360b89d417c499e1c09f86366a38d | Update Viktor.cs | FireBuddy/adevade | AdEvade/AdEvade/Data/Spells/SpecialSpells/Viktor.cs | AdEvade/AdEvade/Data/Spells/SpecialSpells/Viktor.cs | using System;
using EloBuddy;
using EloBuddy.SDK;
namespace AdEvade.Data.Spells.SpecialSpells
{
class Viktor : IChampionPlugin
{
static Viktor()
{
}
public const string ChampionName = "Viktor";
public string GetChampionName()
{
return ChampionName;
... | using System;
using EloBuddy;
using EloBuddy.SDK;
namespace AdEvade.Data.Spells.SpecialSpells
{
class Viktor : IChampionPlugin
{
static Viktor()
{
}
public const string ChampionName = "Viktor";
public string GetChampionName()
{
return ChampionName;
... | mit | C# |
aeffcf121c2a5e51cb09ba3b228175ba9d8a4b73 | remove error after it has been resolved | madeso/internet-tester | InternetTester/Data.cs | InternetTester/Data.cs | namespace InternetTester
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
public class Data
{
public string Output;
public string Exception;
public DateTime Time;
public string LastError;
public DateTime LastErrorTim... | namespace InternetTester
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
public class Data
{
public string Output;
public string Exception;
public DateTime Time;
public string LastError;
public DateTime LastErrorTim... | mit | C# |
539284e2acba427ea1e10e60e2f56ce44ff215b9 | Support null LastMessageIds | RogueException/Discord.Net,AntiTcb/Discord.Net,Confruggy/Discord.Net,LassieME/Discord.Net,Joe4evr/Discord.Net | src/Discord.Net/API/Client/Common/Channel.cs | src/Discord.Net/API/Client/Common/Channel.cs | using Discord.API.Converters;
using Newtonsoft.Json;
namespace Discord.API.Client
{
public class Channel : ChannelReference
{
public sealed class PermissionOverwrite
{
[JsonProperty("type")]
public string Type { get; set; }
[JsonProperty("id")]
[... | using Discord.API.Converters;
using Newtonsoft.Json;
namespace Discord.API.Client
{
public class Channel : ChannelReference
{
public sealed class PermissionOverwrite
{
[JsonProperty("type")]
public string Type { get; set; }
[JsonProperty("id")]
[... | mit | C# |
1316dec6928eebc4b95838509f104e6833798ea4 | Add description to PingMessage. | quartz-software/kephas,quartz-software/kephas | src/Kephas.Messaging/Messages/PingMessage.cs | src/Kephas.Messaging/Messages/PingMessage.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="PingMessage.cs" company="Kephas Software SRL">
// Copyright (c) Kephas Software SRL. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project ro... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="PingMessage.cs" company="Kephas Software SRL">
// Copyright (c) Kephas Software SRL. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project ro... | mit | C# |
fac5e38dbc13ecc5886178ce442b02eb0486cb85 | Change version number. | artemlos/SKGL-Extension-for-dot-NET,SerialKeyManager/SKGL-Extension-for-dot-NET | SKM/Properties/AssemblyInfo.cs | SKM/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("Se... | 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("Se... | bsd-3-clause | C# |
00c14eaa111fc80f1f24136241db0c3fbc38b139 | Fix YuukaWater drop creating errors on contact | NitorInc/NitoriWare,NitorInc/NitoriWare,Barleytree/NitoriWare,Barleytree/NitoriWare | Assets/Microgames/YuukaWater/Scripts/YuukaWaterWaterdrop.cs | Assets/Microgames/YuukaWater/Scripts/YuukaWaterWaterdrop.cs |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using NitorInc.Utility;
namespace NitorInc.YuukaWater {
public class YuukaWaterWaterdrop : MonoBehaviour {
public float scaleSpeed = 1.0f;
public GameObject sprayEffect;
Rigidbody2D rigid;
private V... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using NitorInc.Utility;
namespace NitorInc.YuukaWater {
public class YuukaWaterWaterdrop : MonoBehaviour {
public float scaleSpeed = 1.0f;
public GameObject sprayEffect;
Rigidbody2D rigid;
private V... | mit | C# |
d0656e31abc4da9184d65d583c370696d64d9215 | make closed side to build | mgoertz-msft/roslyn,robinsedlaczek/roslyn,dotnet/roslyn,khyperia/roslyn,eriawan/roslyn,bbarry/roslyn,KevinRansom/roslyn,MichalStrehovsky/roslyn,mattscheffer/roslyn,abock/roslyn,michalhosala/roslyn,KirillOsenkov/roslyn,Giftednewt/roslyn,bkoelman/roslyn,amcasey/roslyn,xasx/roslyn,xoofx/roslyn,AArnott/roslyn,eriawan/rosly... | src/Workspaces/Core/Portable/SolutionCrawler/ExportIncrementalAnalyzerProviderAttribute.cs | src/Workspaces/Core/Portable/SolutionCrawler/ExportIncrementalAnalyzerProviderAttribute.cs | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Composition;
namespace Microsoft.CodeAnalysis.SolutionCrawler
{
[MetadataAttribute]
[AttributeUsage(AttributeTargets.Class... | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Composition;
namespace Microsoft.CodeAnalysis.SolutionCrawler
{
[MetadataAttribute]
[AttributeUsage(AttributeTargets.Class... | mit | C# |
bb19be865f19c60ded0223c6006dada004464024 | Update XML comments of WaitOptions | YevgeniyShunevych/Atata,YevgeniyShunevych/Atata,atata-framework/atata,atata-framework/atata | src/Atata/Waiting/WaitOptions.cs | src/Atata/Waiting/WaitOptions.cs | namespace Atata
{
/// <summary>
/// Represents the component waiting options.
/// </summary>
public class WaitOptions
{
private double? presenceTimeout;
private double? absenceTimeout;
private double? retryInterval;
public WaitOptions(double? timeout = null)
... | namespace Atata
{
/// <summary>
/// Represents the component waiting options.
/// </summary>
public class WaitOptions
{
private double? presenceTimeout;
private double? absenceTimeout;
private double? retryInterval;
public WaitOptions(double? timeout = null)
... | apache-2.0 | C# |
bab4158006a7b6ce2a34dceb1a9d4e2a577d64dc | Fix $ning output | graymalkin/gwen | ThreadedIRCBot/Modules/Ning.cs | ThreadedIRCBot/Modules/Ning.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ThreadedIRCBot
{
class Ning : Module
{
public Ning(IRC ircNet) : base(ircNet) { }
public override void Start()
{
throw new NotImplementedException();
}
public o... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ThreadedIRCBot
{
class Ning : Module
{
public Ning(IRC ircNet) : base(ircNet) { }
public override void Start()
{
throw new NotImplementedException();
}
public o... | mit | C# |
56d4aca0e4532c4a6e839edd90d6230ddb05858c | Simplify closing app | johannesegger/Rx-WPF-Sample | WpfRxSample/MainWindow.xaml.cs | WpfRxSample/MainWindow.xaml.cs | using System;
using System.ComponentModel;
using System.Reactive.Linq;
using System.Windows;
namespace WpfRxSample
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow
{
public MainWindow()
{
InitializeComponent();
... | using System;
using System.ComponentModel;
using System.Reactive.Linq;
using System.Windows;
namespace WpfRxSample
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow
{
public MainWindow()
{
InitializeComponent();
... | mit | C# |
9e4c3878c68cdf749d293dd2b3bcd499e2be5dbb | use registry instance instead of Metrics static class | etishor/Metrics.NET,MetaG8/Metrics.NET,ntent-ad/Metrics.NET,huoxudong125/Metrics.NET,ntent-ad/Metrics.NET,Recognos/Metrics.NET,huoxudong125/Metrics.NET,Liwoj/Metrics.NET,cvent/Metrics.NET,etishor/Metrics.NET,DeonHeyns/Metrics.NET,Recognos/Metrics.NET,MetaG8/Metrics.NET,mnadel/Metrics.NET,DeonHeyns/Metrics.NET,alhardy/M... | Src/Adapters/Owin.Metrics/Middleware/TimerForEachRequestMiddleware.cs | Src/Adapters/Owin.Metrics/Middleware/TimerForEachRequestMiddleware.cs | using System;
using System.Collections.Generic;
using System.Net;
using System.Threading.Tasks;
using Metrics;
using Metrics.Core;
using Metrics.Utils;
namespace Owin.Metrics.Middleware
{
using AppFunc = Func<IDictionary<string, object>, Task>;
public class TimerForEachRequestMiddleware
{
private ... | using System;
using System.Collections.Generic;
using System.Net;
using System.Threading.Tasks;
using Metrics;
using Metrics.Core;
using Metrics.Utils;
namespace Owin.Metrics.Middleware
{
using AppFunc = Func<IDictionary<string, object>, Task>;
public class TimerForEachRequestMiddleware
{
private ... | apache-2.0 | C# |
a6badc8655596dc123ec2f33df2100dd1ff14c23 | Fix capability value casting #53 | cezarypiatek/MaintainableSelenium,cezarypiatek/MaintainableSelenium,cezarypiatek/Tellurium,cezarypiatek/Tellurium,cezarypiatek/Tellurium,cezarypiatek/MaintainableSelenium | Src/MvcPages/BrowserCamera/Lens/BrowserCameraLensFactory.cs | Src/MvcPages/BrowserCamera/Lens/BrowserCameraLensFactory.cs | using System;
using OpenQA.Selenium.Remote;
namespace Tellurium.MvcPages.BrowserCamera.Lens
{
public static class BrowserCameraLensFactory
{
public static IBrowserCameraLens Create(RemoteWebDriver webDriver, LensType type)
{
switch (type)
{
case LensType... | using System;
using OpenQA.Selenium.Remote;
namespace Tellurium.MvcPages.BrowserCamera.Lens
{
public static class BrowserCameraLensFactory
{
public static IBrowserCameraLens Create(RemoteWebDriver webDriver, LensType type)
{
switch (type)
{
case LensType... | mit | C# |
8bd197463f818646f95751a87c1184e698c99bde | Remove Text.line now that its assigned values are no longer used. | plioi/parsley | src/Parsley/Text.cs | src/Parsley/Text.cs | namespace Parsley;
public ref struct Text
{
int index;
readonly ReadOnlySpan<char> input;
public Text(ReadOnlySpan<char> input)
: this(input, 0) { }
Text(ReadOnlySpan<char> input, int index)
{
this.input = input;
this.index = index;
if (index > input.Length)
... | namespace Parsley;
public ref struct Text
{
int index;
readonly ReadOnlySpan<char> input;
int line;
public Text(ReadOnlySpan<char> input)
: this(input, 0, 1) { }
Text(ReadOnlySpan<char> input, int index, int line)
{
this.input = input;
this.index = index;
if (... | mit | C# |
fa1353dd3a9209d5e267cfb771d081b9098c4829 | Update Global.asax.cs | ellern/champs-room,ellern/champs-room | src/Global.asax.cs | src/Global.asax.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace ChampsRoom
{
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.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace ChampsRoom
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start(... | mit | C# |
59289a1326a1be7913d7e40dfb4b8b698060109d | Fix possible bug when notes with duplicate GUIDs exist | Dynalon/Rainy,Dynalon/Rainy,Dynalon/Rainy,Dynalon/Rainy | Rainy/ORM/DbStorage.cs | Rainy/ORM/DbStorage.cs | using Tomboy;
using ServiceStack.OrmLite;
using System;
using System.Data;
using System.Collections.Generic;
using System.Linq;
using Tomboy.Sync.DTO;
namespace Rainy.Db
{
public class DbStorage : IStorage, IDisposable
{
public readonly string Username;
private IDbConnection db;
private IDbTransaction trans;
... | using Tomboy;
using ServiceStack.OrmLite;
using System;
using System.Data;
using System.Collections.Generic;
using System.Linq;
using Tomboy.Sync.DTO;
namespace Rainy.Db
{
public class DbStorage : IStorage, IDisposable
{
public readonly string Username;
private IDbConnection db;
private IDbTransaction trans;
... | agpl-3.0 | C# |
b6e87393f542e446e4a79a96a2368204496ae4e5 | add check for file name in examples/csharp/csfz.cs | or-tools/or-tools,or-tools/or-tools,google/or-tools,ThatRfernand/or-tools,google/or-tools,ThatRfernand/or-tools,or-tools/or-tools,or-tools/or-tools,legrosbuffle/or-tools,google/or-tools,google/or-tools,legrosbuffle/or-tools,legrosbuffle/or-tools,or-tools/or-tools,ThatRfernand/or-tools,or-tools/or-tools,ThatRfernand/or-... | examples/csharp/csfz.cs | examples/csharp/csfz.cs | // Copyright 2010-2014 Google
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in wri... | // Copyright 2010-2014 Google
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in wri... | apache-2.0 | C# |
08b5d85033acc982d9bbd72b1e2b0801b76f3b49 | Update Index.cshtml | IBM-Bluemix/asp.net5-helloworld,IBM-Bluemix/asp.net5-helloworld | src/dotnetHelloWorld/Views/Home/Index.cshtml | src/dotnetHelloWorld/Views/Home/Index.cshtml | @{
ViewData["Title"] = "Hello World!";
}
<div class="container">
<h1>Welcome.</h1>
<div id="nameInput" class="input-group-lg center-block helloInput">
<p class="lead">What is your name?</p>
<input id="user_name" type="text" class="form-control" placeholder="name" aria-describedby="sizing-a... | @{
ViewData["Title"] = "Hello World!";
}
<div class="container">
<h1>Welcome.</h1>
<div id="nameInput" class="input-group-lg center-block helloInput">
<p class="lead">What is your name?</p>
<input id="user_name" type="text" class="form-control" placeholder="name" aria-describedby="sizing-a... | apache-2.0 | C# |
c49126dafce48fc83e19b3ec2385964ec76e626f | Remove blank XML doc tag in BaseLinkRelation.cs | AngleSharp/AngleSharp,AngleSharp/AngleSharp,AngleSharp/AngleSharp,AngleSharp/AngleSharp,AngleSharp/AngleSharp | src/AngleSharp/Html/LinkRels/BaseLinkRelation.cs | src/AngleSharp/Html/LinkRels/BaseLinkRelation.cs | namespace AngleSharp.Html.LinkRels
{
using AngleSharp.Dom;
using AngleSharp.Html.Dom;
using AngleSharp.Io.Processors;
using System.Threading.Tasks;
/// <summary>
/// Base type for the all link rel field types.
/// </summary>
public abstract class BaseLinkRelation
{
#region F... | namespace AngleSharp.Html.LinkRels
{
using AngleSharp.Dom;
using AngleSharp.Html.Dom;
using AngleSharp.Io.Processors;
using System.Threading.Tasks;
/// <summary>
/// Base type for the all link rel field types.
/// </summary>
public abstract class BaseLinkRelation
{
#region F... | mit | C# |
2ef9582649abe1e538c84e9a98c4c4620f0443ab | Bump version to 2.1.0 | Codesleuth/esendex-dotnet-sdk | source/Properties/AssemblyInfo.cs | source/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: Assembly... | 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: Assembly... | bsd-3-clause | C# |
8619038cbc017eb126ea34903c66baf134222c5c | Add empty default CommandException constructor | appharbor/appharbor-cli | src/AppHarbor/CommandException.cs | src/AppHarbor/CommandException.cs | using System;
namespace AppHarbor
{
public class CommandException : Exception
{
public CommandException()
{
}
public CommandException(string message)
: base(message)
{
}
}
}
| using System;
namespace AppHarbor
{
public class CommandException : Exception
{
public CommandException(string message)
: base(message)
{
}
}
}
| mit | C# |
2da0238de89df125bcab621f9987ce0bbc6dfd77 | Remove unused constructor. | RSGMercenary/AtlasCSharp,RSGMercenary/Atlas | Core/Collections/Hierarchy/Messages.cs | Core/Collections/Hierarchy/Messages.cs | using Atlas.Core.Messages;
namespace Atlas.Core.Collections.Hierarchy
{
#region Interfaces
public interface IChildAddMessage<out T> : IKeyValueMessage<T, int, T> where T : IMessenger, IHierarchy<T> { }
public interface IChildRemoveMessage<out T> : IKeyValueMessage<T, int, T> where T : IMessenger, IHierarchy<T> {... | using Atlas.Core.Messages;
namespace Atlas.Core.Collections.Hierarchy
{
#region Interfaces
public interface IChildAddMessage<out T> : IKeyValueMessage<T, int, T> where T : IMessenger, IHierarchy<T> { }
public interface IChildRemoveMessage<out T> : IKeyValueMessage<T, int, T> where T : IMessenger, IHierarchy<T> {... | mit | C# |
4fea321867518beea8926b0c817c81dfaa49bcbd | change when directory is created | taka-oyama/UniHttp | Assets/UniHttp/HttpManager.cs | Assets/UniHttp/HttpManager.cs | using UnityEngine;
using System.IO;
using System.Collections.Generic;
using System;
namespace UniHttp
{
public sealed class HttpManager : MonoBehaviour
{
public string dataPath;
public int maxPersistentConnections;
public static ILogger Logger;
public static ISslVerifier SslVerifier;
public static IFileH... | using UnityEngine;
using System.IO;
using System.Collections.Generic;
using System;
namespace UniHttp
{
public sealed class HttpManager : MonoBehaviour
{
public string dataPath;
public int maxPersistentConnections;
public static ILogger Logger;
public static ISslVerifier SslVerifier;
public static IFileH... | mit | C# |
314db36469d89c16cfa396754417062f4ba8b7fb | Update MyMath.cs | primo-ppcg/BF-Crunch | src/math/MyMath.cs | src/math/MyMath.cs | using System;
using System.Collections.Generic;
namespace ppcg.math {
public static class MyMath {
private const int INT_BITS = sizeof(int) * 8 - 1;
private static HashSet<Type> NumericTypes = new HashSet<Type> {
typeof(byte), typeof(sbyte),
typeof(short), typeof... | using System;
using System.Collections.Generic;
namespace ppcg.math {
public static class MyMath {
private const int INT_BITS = sizeof(int) * 8 - 1;
private static HashSet<Type> NumericTypes = new HashSet<Type> {
typeof(byte), typeof(sbyte),
typeof(short), typeo... | mit | C# |
25bb2779ae74aa4b50ae5021572db40cbc6858d4 | Fix naming | gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer,DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer | LmpClient/Harmony/Vessel_Initialize.cs | LmpClient/Harmony/Vessel_Initialize.cs | using Harmony;
using LmpClient.Events;
// ReSharper disable All
namespace LmpClient.Harmony
{
/// <summary>
/// This harmony patch is intended to trigger an event when a vessel is initialized
/// </summary>
[HarmonyPatch(typeof(Vessel))]
[HarmonyPatch("Initialize")]
[HarmonyPatch(new[] { type... | using Harmony;
using LmpClient.Events;
// ReSharper disable All
namespace LmpClient.Harmony
{
/// <summary>
/// This harmony patch is intended to trigger an event when a vessel is initialized
/// </summary>
[HarmonyPatch(typeof(Vessel))]
[HarmonyPatch("Initialize")]
[HarmonyPatch(new[] { type... | mit | C# |
bb91d5ac2738b6d1b72d209bdc7f1791f605e8ea | modify create cargo. | robertzml/Phoebe | Phoebe.Core/BL/Entity/CargoBusiness.cs | Phoebe.Core/BL/Entity/CargoBusiness.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Phoebe.Core.BL
{
using SqlSugar;
using Phoebe.Base.Framework;
using Phoebe.Base.System;
using Phoebe.Core.Entity;
using Phoebe.Core.Utility;
/// <summary>
/// 货品业务类
/// </summary>
publi... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Phoebe.Core.BL
{
using SqlSugar;
using Phoebe.Base.Framework;
using Phoebe.Base.System;
using Phoebe.Core.Entity;
using Phoebe.Core.Utility;
/// <summary>
/// 货品业务类
/// </summary>
publi... | mit | C# |
8a2e89c1c20e290b51c892bbff3541cc72c98221 | Add commented FeaturedImage property to Post resource. Cannot enable this until the API is consistent about the datatype of "Parent" fields, which is sometimes an embeded Post and sometimes just the ID integer. | maxcutler/wp-api-csharp | PortableWordPressApi/Resources/Post.cs | PortableWordPressApi/Resources/Post.cs | using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace PortableWordPressApi.Resources
{
public class Post
{
public string ID { get; set; }
public string Title { get; set; }
[JsonProperty("date_gmt")]
public DateTime DateGmt { get; set; }
[JsonProperty("modified_gmt")]
public... | using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace PortableWordPressApi.Resources
{
public class Post
{
public string ID { get; set; }
public string Title { get; set; }
[JsonProperty("date_gmt")]
public DateTime DateGmt { get; set; }
[JsonProperty("modified_gmt")]
public... | mit | C# |
49e0e6c1c9cb7ba7bebdacdbd8cbcfe1b34050a6 | Implement BeingDirtyBase on HistoryCleanup | dawoe/Umbraco-CMS,umbraco/Umbraco-CMS,marcemarc/Umbraco-CMS,arknu/Umbraco-CMS,arknu/Umbraco-CMS,KevinJump/Umbraco-CMS,KevinJump/Umbraco-CMS,arknu/Umbraco-CMS,umbraco/Umbraco-CMS,robertjf/Umbraco-CMS,KevinJump/Umbraco-CMS,abjerner/Umbraco-CMS,KevinJump/Umbraco-CMS,robertjf/Umbraco-CMS,abjerner/Umbraco-CMS,marcemarc/Umbr... | src/Umbraco.Core/Models/ContentEditing/HistoryCleanup.cs | src/Umbraco.Core/Models/ContentEditing/HistoryCleanup.cs | using System.Runtime.Serialization;
using Umbraco.Cms.Core.Models.Entities;
namespace Umbraco.Cms.Core.Models.ContentEditing
{
[DataContract(Name = "historyCleanup", Namespace = "")]
public class HistoryCleanup : BeingDirtyBase
{
private bool _preventCleanup;
private int? _keepAllVersionsNe... | using System.Runtime.Serialization;
namespace Umbraco.Cms.Core.Models.ContentEditing
{
[DataContract(Name = "historyCleanup", Namespace = "")]
public class HistoryCleanup
{
[DataMember(Name = "preventCleanup")]
public bool PreventCleanup { get; set; }
[DataMember(Name = "keepAllVer... | mit | C# |
bdedd5b0236b661ce91f0a8ec09ea257bb04723d | Update Index.cshtml | ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab | Anlab.Mvc/Views/Home/Index.cshtml | Anlab.Mvc/Views/Home/Index.cshtml | @{
ViewData["Title"] = "Home Page";
}
<div class="col-8">
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
Update posted: December 8, 2020<br /><br />
<strong>Please Note Holiday Closure Information:</strong><br /><br />
The Lab wi... | @{
ViewData["Title"] = "Home Page";
}
<div class="col-8">
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
Update posted: November 30, 2020<br /><br />
In response to the emergency need for the analysis of wine for smoke taint,
... | mit | C# |
8659de6ab82e064d3efaa52023eef3ac6d36f280 | Bump Version | UniqProject/BDInfo | BDInfo/Properties/AssemblyInfo.cs | BDInfo/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... | lgpl-2.1 | C# |
30a24d3857451149fcc5dac9c3ad6f2631289192 | Convert to AsyncController. | bgrainger/GitHubFeeds | Controllers/CommentsController.cs | Controllers/CommentsController.cs | using System.Web.Mvc;
namespace GitHubCommentsFeed.Controllers
{
public class CommentsController : AsyncController
{
public void ListAsync(string server, string user, string repo)
{
AsyncManager.OutstandingOperations.Increment();
AsyncManager.Parameters["result"] = "server = " + server + ",... | using System.Web.Mvc;
namespace GitHubCommentsFeed.Controllers
{
public class CommentsController : Controller
{
public ActionResult List(string server, string user, string repo)
{
return Content("server = " + server + ", user = " + user + ", repo = " + repo);
}
}... | mit | C# |
d53ab302783834c80c895ed1feb3c82dedb61b58 | Put back remainingTime and add Cancel | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/Wallets/PasswordFinder.cs | WalletWasabi/Wallets/PasswordFinder.cs | using NBitcoin;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Security;
using System.Threading;
namespace WalletWasabi.Wallets
{
public class PasswordFinder
{
public static readonly Dictionary<string, string> Charsets = new Dictionary<string, string>
{
... | using NBitcoin;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security;
using System.Threading;
namespace WalletWasabi.Wallets
{
public class PasswordFinder
{
public static readonly Dictionary<string, string> Charsets = new Dictionary<string, string>
{
["en"] = "abcdefghijkmn... | mit | C# |
f695b3cc7e22de6bd3da7854b57cdacd55abaf35 | Change namespace | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi/Wallets/PasswordFinder.cs | WalletWasabi/Wallets/PasswordFinder.cs | using NBitcoin;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security;
namespace WalletWasabi.Wallets
{
public static class PasswordFinder
{
public static readonly Dictionary<string, string> Charsets = new Dictionary<string, string>
{
["en"] = "abcdefghijkmnopqrstuvwxyzABCDE... | using NBitcoin;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Security;
using WalletWasabi.Logging;
using WalletWasabi.Userfacing;
using WalletWasabi.Wallets;
namespace WalletWasabi.Gui.CommandLine
{
public class PasswordFinder
{
public static readonly Di... | mit | C# |
dccce27ca549507c7329bc0af6e8137498b3b56b | Change WonBy and LostBy of IGameQuery to return ICompletedGame. | mikee385/CollegeFbsRankings | CollegeFbsRankings/Repositories/IGameQuery.cs | CollegeFbsRankings/Repositories/IGameQuery.cs | using System.Collections.Generic;
using CollegeFbsRankings.Games;
using CollegeFbsRankings.Seasons;
using CollegeFbsRankings.Teams;
namespace CollegeFbsRankings.Repositories
{
public interface IGameQuery<out T> : IQuery<IEnumerable<T>> where T : IGame
{
IGameQuery<T> ByID(GameID id);
IGameQu... | using System.Collections.Generic;
using CollegeFbsRankings.Games;
using CollegeFbsRankings.Seasons;
using CollegeFbsRankings.Teams;
namespace CollegeFbsRankings.Repositories
{
public interface IGameQuery<out T> : IQuery<IEnumerable<T>> where T : IGame
{
IGameQuery<T> ByID(GameID id);
IGameQu... | mit | C# |
df8f07bc3c6123434da1495bf354cfd22b469be9 | Update mapping config with service profile. | MarioZisov/Baskerville,MarioZisov/Baskerville,MarioZisov/Baskerville | BaskervilleWebsite/Baskerville.App/Global.asax.cs | BaskervilleWebsite/Baskerville.App/Global.asax.cs | using AutoMapper;
using Baskerville.App.App_Start;
using Baskerville.Services;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace Baskerville.App
{
public class MvcAppl... | using AutoMapper;
using Baskerville.App.App_Start;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace Baskerville.App
{
public class MvcApplication : HttpApplication
... | apache-2.0 | C# |
9c8b93b3627cf65ea8c6c7e2f7780acc2bf645b1 | Add additional message severities and error types. | DartVS/DartVS,DartVS/DartVS,modulexcite/DartVS,modulexcite/DartVS,DartVS/DartVS,modulexcite/DartVS | DanTup.DartAnalysis/Events/AnalysisErrorsEvent.cs | DanTup.DartAnalysis/Events/AnalysisErrorsEvent.cs | using System;
using System.Linq;
namespace DanTup.DartAnalysis
{
#region JSON deserialisation objects
class AnalysisErrorsEventJson
{
public string file = null;
public AnalysisErrorJson[] errors = null;
}
class AnalysisErrorJson
{
public string errorCode = null;
public string severity = null;
public... | using System;
using System.Linq;
namespace DanTup.DartAnalysis
{
#region JSON deserialisation objects
class AnalysisErrorsEventJson
{
public string file = null;
public AnalysisErrorJson[] errors = null;
}
class AnalysisErrorJson
{
public string errorCode = null;
public string severity = null;
public... | mit | C# |
30037ef61b9d91a8ba9f624a6dc8e7e6d7141310 | Use Expression-bodied members and never execeeds its capacity | neiesc/Problem-solving,neiesc/Problem-solving,neiesc/Problem-solving,neiesc/Problem-solving | Exercism/csharp/circular-buffer/CircularBuffer.cs | Exercism/csharp/circular-buffer/CircularBuffer.cs | using System;
using System.Collections.Generic;
public class CircularBuffer<T>
{
private readonly Queue<T> _buffer;
private readonly int _capacity;
public CircularBuffer(int capacity)
{
_buffer = new Queue<T>(capacity);
_capacity = capacity;
}
public T Read() => _buffer.Dequeu... | using System;
using System.Collections.Generic;
public class CircularBuffer<T>
{
private readonly Queue<T> _buffer;
private readonly int _capacity;
public CircularBuffer(int capacity)
{
_buffer = new Queue<T>(capacity);
_capacity = capacity;
}
public T Read()
{
ret... | mit | C# |
371d144ea8e1fef393ff9c40246bd698bf446615 | remove some addins | jamesmontemagno/MediaPlugin,jamesmontemagno/MediaPlugin | build.cake | build.cake | #addin nuget:?package=Cake.Android.SdkManager
var TARGET = Argument ("target", Argument ("t", "Default"));
var VERSION = EnvironmentVariable ("APPVEYOR_BUILD_VERSION") ?? Argument("version", "0.0.9999");
var CONFIG = Argument("configuration", EnvironmentVariable ("CONFIGURATION") ?? "Release");
var SLN = "./src/Media.... | #tool nuget:?package=XamarinComponent
#addin nuget:?package=Cake.Android.SdkManager
#addin nuget:?package=Cake.XCode
#addin nuget:?package=Cake.Xamarin
#addin nuget:?package=Cake.Xamarin.Build
#addin nuget:?package=Cake.SemVer
#addin nuget:?package=Cake.FileHelpers
#addin nuget:?package=Cake.MonoApiTools
var TARGET ... | mit | C# |
77461319ecaa086b55a2a4f074bc3eda215df775 | Change status types | grantcolley/dipstate | DevelopmentInProgress.DipState/StateStatus.cs | DevelopmentInProgress.DipState/StateStatus.cs | namespace DevelopmentInProgress.DipState
{
/// <summary>
/// The status of the state.
/// </summary>
public enum StateStatus
{
/// <summary>
/// Indicates the state has not been entered.
/// </summary>
Uninitialised = 1,
/// <summary>
/// Indicates t... | namespace DevelopmentInProgress.DipState
{
/// <summary>
/// The status of the state.
/// </summary>
public enum StateStatus
{
/// <summary>
/// Indicates the state has not been entered.
/// </summary>
Uninitialise = 1,
/// <summary>
/// Indicates th... | apache-2.0 | C# |
810d0cf289a92bdc4d5166f43233f0d43af2df56 | Index processor to store result, not enumerable, on definition | TurnerSoftware/MongoFramework | src/MongoFramework/Infrastructure/Mapping/Processors/IndexProcessor.cs | src/MongoFramework/Infrastructure/Mapping/Processors/IndexProcessor.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using MongoDB.Bson.Serialization;
using MongoFramework.Attributes;
namespace MongoFramework.Infrastructure.Mapping.Processors
{
public class IndexProcessor : IMappingProcessor
{
public void ApplyMapping(... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using MongoDB.Bson.Serialization;
using MongoFramework.Attributes;
namespace MongoFramework.Infrastructure.Mapping.Processors
{
public class IndexProcessor : IMappingProcessor
{
public void ApplyMapping(... | mit | C# |
15060cceac3e9683efb44312ac8ecfa4b03828e0 | Use enum for scope type | samcook/IdentityServer3.Shaolinq | IdentityServer3.Shaolinq/DataModel/DbScope.cs | IdentityServer3.Shaolinq/DataModel/DbScope.cs | using System;
using IdentityServer3.Core.Models;
using Platform.Validation;
using Shaolinq;
namespace IdentityServer3.Shaolinq.DataModel
{
[DataAccessObject(Name = "Scope")]
public abstract class DbScope : DataAccessObject<Guid>
{
[PersistedMember]
public abstract bool Enabled { get; set; }
[PersistedMember]... | using System;
using Platform.Validation;
using Shaolinq;
namespace IdentityServer3.Shaolinq.DataModel
{
[DataAccessObject(Name = "Scope")]
public abstract class DbScope : DataAccessObject<Guid>
{
[PersistedMember]
public abstract bool Enabled { get; set; }
[PersistedMember]
[ValueRequired]
[SizeConstrain... | mit | C# |
914387acc32492872f848f04a88a8821f75885d8 | modify note sample code. | Aaron-Liu/enode,tangxuehua/enode | src/Samples/NoteSample/Program.cs | src/Samples/NoteSample/Program.cs | using System;
using System.Collections.Generic;
using System.Configuration;
using System.Diagnostics;
using System.Threading;
using ENode.Commanding;
using ENode.Eventing;
using ENode.Infrastructure;
using NoteSample.Commands;
using NoteSample.Events;
namespace NoteSample
{
class Program
{
... | using System;
using System.Collections.Generic;
using System.Configuration;
using System.Diagnostics;
using System.Threading;
using ENode.Commanding;
using ENode.Infrastructure;
using NoteSample.Commands;
namespace NoteSample
{
class Program
{
static void Main(string[] args)
{
... | mit | C# |
600850651c571e5ebc57297237807b1947d5e701 | implement .loadAllEventsSince | Pondidum/Ledger.Stores.Postgres,Pondidum/Ledger.Stores.Postgres | Ledger.Stores.Postgres/PostgresStoreReader.cs | Ledger.Stores.Postgres/PostgresStoreReader.cs | using System;
using System.Collections.Generic;
using System.Linq;
using Dapper;
using Ledger.Infrastructure;
using Npgsql;
namespace Ledger.Stores.Postgres
{
public class PostgresStoreReader<TKey> : IStoreReader<TKey>
{
private readonly NpgsqlConnection _connection;
private readonly NpgsqlTransaction _transact... | using System;
using System.Collections.Generic;
using System.Linq;
using Dapper;
using Ledger.Infrastructure;
using Npgsql;
namespace Ledger.Stores.Postgres
{
public class PostgresStoreReader<TKey> : IStoreReader<TKey>
{
private readonly NpgsqlConnection _connection;
private readonly NpgsqlTransaction _transact... | lgpl-2.1 | C# |
d993a48b84ed69ec9d4d0bd317834fbe94485ab7 | Put class in a namespace | jeremymeng/nunit,cPetru/nunit-params,appel1/nunit,dicko2/nunit,elbaloo/nunit,mjedrzejek/nunit,jhamm/nunit,nivanov1984/nunit,JustinRChou/nunit,danielmarbach/nunit,pcalin/nunit,pcalin/nunit,modulexcite/nunit,ChrisMaddock/nunit,zmaruo/nunit,acco32/nunit,Therzok/nunit,jhamm/nunit,modulexcite/nunit,Therzok/nunit,akoeplinger... | NUnitFramework/src/framework/Constraints/ToleranceMode.cs | NUnitFramework/src/framework/Constraints/ToleranceMode.cs | // ***********************************************************************
// Copyright (c) 2008 Charlie Poole
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, inclu... | // ***********************************************************************
// Copyright (c) 2008 Charlie Poole
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, inclu... | mit | C# |
02d4b87412c1188616bf1da52688ce34c674b284 | monitor update | tinohager/Nager.AmazonProductAdvertising,tinohager/Nager.AmazonProductAdvertising | Nager.AmazonProductAdvertising.Monitor/UserControlItem.cs | Nager.AmazonProductAdvertising.Monitor/UserControlItem.cs | using Nager.AmazonProductAdvertising.Model;
using System.Linq;
using System.Windows.Forms;
namespace Nager.AmazonProductAdvertising.Monitor
{
public partial class UserControlItem : UserControl
{
public UserControlItem()
{
this.InitializeComponent();
}
public void S... | using Nager.AmazonProductAdvertising.Model;
using System.Text;
using System.Linq;
using System.Windows.Forms;
namespace Nager.AmazonProductAdvertising.Monitor
{
public partial class UserControlItem : UserControl
{
public UserControlItem()
{
this.InitializeComponent();
}
... | mit | C# |
ce081c4acc6e02f8d22fac4d100050c1d40f0cac | Fix missing propagation of OwnerId in tests | ppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu | osu.Game/Online/Rooms/MultiplayerPlaylistItem.cs | osu.Game/Online/Rooms/MultiplayerPlaylistItem.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
#nullable enable
using System;
using System.Collections.Generic;
using System.Linq;
using MessagePack;
using osu.Game.Online.API;
namespace osu.Game.Online.Rooms
{
... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
#nullable enable
using System;
using System.Collections.Generic;
using System.Linq;
using MessagePack;
using osu.Game.Online.API;
namespace osu.Game.Online.Rooms
{
... | mit | C# |
b1286cfbde270e3792191c9240c429d991c2a742 | Update ARM assembly and file version to 2.0.0 | r22016/azure-sdk-for-net,hyonholee/azure-sdk-for-net,AzureAutomationTeam/azure-sdk-for-net,samtoubia/azure-sdk-for-net,SiddharthChatrolaMs/azure-sdk-for-net,pilor/azure-sdk-for-net,peshen/azure-sdk-for-net,yugangw-msft/azure-sdk-for-net,JasonYang-MSFT/azure-sdk-for-net,samtoubia/azure-sdk-for-net,btasdoven/azure-sdk-fo... | src/ResourceManagement/Resource/Microsoft.Azure.ResourceManager/Properties/AssemblyInfo.cs | src/ResourceManagement/Resource/Microsoft.Azure.ResourceManager/Properties/AssemblyInfo.cs | //
// Copyright (c) Microsoft. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable la... | //
// Copyright (c) Microsoft. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable la... | mit | C# |
08aa1a6f180e6d8698ca7c5cf3f566f7043e8d3b | Fix tab/formatting | scott-xu/T4MVC,jkonecki/T4MVC,T4MVC/T4MVC,jkonecki/T4MVC,M1chaelTran/T4MVC,scott-xu/T4MVC,T4MVC/T4MVC,payini/T4MVC,payini/T4MVC,M1chaelTran/T4MVC | T4MVCExtensions/T4MVCAttribute.cs | T4MVCExtensions/T4MVCAttribute.cs | using System;
namespace System.Web.Mvc
{
[AttributeUsage(AttributeTargets.Class)]
public class T4MVCAttribute : Attribute
{
public T4MVCAttribute()
: this(true)
{
}
public T4MVCAttribute(bool process)
{
Process = process;
}
... | using System;
namespace System.Web.Mvc {
[AttributeUsage(AttributeTargets.Class)]
public class T4MVCAttribute : Attribute {
public T4MVCAttribute() : this(true) {
}
public T4MVCAttribute(bool process) {
Process = process;
}
public bool Process { get; private set; }
}
}
| apache-2.0 | C# |
6c313f436c1a95d25fd12bbaf3d35713a80c5f6f | Fix showing window at boot | paralleltree/PmXEditorPlugins | WeightedOffsetBlend/WeightedOffsetBlend/Plugin.cs | WeightedOffsetBlend/WeightedOffsetBlend/Plugin.cs | using System;
using System.Collections.Generic;
using System.Linq;
using PEPlugin;
namespace WeightedOffsetBlend
{
public class Plugin : PEPluginClass
{
private static MainForm FormInstance { get; set; }
public override string Name
{
get { return "重み付きオフセット付加"; }
... | using System;
using System.Collections.Generic;
using System.Linq;
using PEPlugin;
namespace WeightedOffsetBlend
{
public class Plugin : PEPluginClass
{
private static MainForm FormInstance { get; set; }
public override string Name
{
get { return "重み付きオフセット付加"; }
... | mit | C# |
fddb2fc2826da593501c4e3863149896d676dd74 | Fix Content Definition deployment (#2568) | OrchardCMS/Brochard,petedavis/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,OrchardCMS/Brochard,petedavis/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,OrchardCMS/Brochard,stevetayloruk/Orchard2,xkproject/Orchard2,petedavis/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,petedavis/Or... | src/OrchardCore.Modules/OrchardCore.ContentTypes/Deployment/ContentDefinitionDeploymentSource.cs | src/OrchardCore.Modules/OrchardCore.ContentTypes/Deployment/ContentDefinitionDeploymentSource.cs | using System.Linq;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using OrchardCore.ContentManagement;
using OrchardCore.ContentManagement.Metadata.Records;
using OrchardCore.Deployment;
using YesSql;
namespace OrchardCore.ContentTypes.Deployment
{
public class ContentDefinitionDeploymentSource : IDeplo... | using System.Linq;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using OrchardCore.ContentManagement.Metadata.Records;
using OrchardCore.Deployment;
using YesSql;
namespace OrchardCore.ContentTypes.Deployment
{
public class ContentDefinitionDeploymentSource : IDeploymentSource
{
private rea... | bsd-3-clause | C# |
d1ab5be7bf97001c7cf3076a5a1c6047572e93e3 | Update handle root names (#318) | Microsoft/clrmd,cshung/clrmd,Microsoft/clrmd,cshung/clrmd | src/Microsoft.Diagnostics.Runtime/src/Desktop/HandleRoot.cs | src/Microsoft.Diagnostics.Runtime/src/Desktop/HandleRoot.cs | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
namespace Microsoft.Diagnostics.Runtime.Desktop
{
internal class HandleRoot : ClrRoot
{
... | // 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.Collections.Generic;
using System.Linq;
namespace Microsoft.Diagnostics.Runtime.Desktop... | mit | C# |
845c6bdc401f3d7ef63500f2d3a0ca5651ea9c56 | Clarify a documentation comment | mdsol/mauth-client-dotnet | src/Medidata.MAuth.WebApi/MAuthWebApiExtensions.cs | src/Medidata.MAuth.WebApi/MAuthWebApiExtensions.cs | using System;
using System.Net.Http;
using System.Threading.Tasks;
using Medidata.MAuth.Core;
namespace Medidata.MAuth.WebApi
{
internal static class MAuthWebApiExtensions
{
/// <summary>
/// Attempts to authenticate the provided request in the <see cref="HttpRequestMessage"/> with the provide... | using System;
using System.Net.Http;
using System.Threading.Tasks;
using Medidata.MAuth.Core;
namespace Medidata.MAuth.WebApi
{
internal static class MAuthWebApiExtensions
{
/// <summary>
/// Attempts to authenticate the provided request in the <see cref="HttpRequestMessage"/> with the provide... | mit | C# |
61d08a4bc7c5b11b248ff5ef23f6860c73701cdd | Fix OIS class for ConstantScoreQuery | abibell/elasticsearch-net,RossLieberman/NEST,geofeedia/elasticsearch-net,adam-mccoy/elasticsearch-net,azubanov/elasticsearch-net,gayancc/elasticsearch-net,UdiBen/elasticsearch-net,junlapong/elasticsearch-net,starckgates/elasticsearch-net,ststeiger/elasticsearch-net,DavidSSL/elasticsearch-net,SeanKilleen/elasticsearch-n... | src/Nest/DSL/Query/ConstantScoreQueryDescriptor.cs | src/Nest/DSL/Query/ConstantScoreQueryDescriptor.cs | using System;
using System.Collections.Generic;
using System.Linq;
using Nest.Resolvers.Converters;
using Newtonsoft.Json;
namespace Nest
{
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
[JsonConverter(typeof(ReadAsTypeConverter<ConstantScoreQueryDescriptor<object>>))]
public interface IConstantScor... | using System;
using System.Collections.Generic;
using System.Linq;
using Nest.Resolvers.Converters;
using Newtonsoft.Json;
namespace Nest
{
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
[JsonConverter(typeof(ReadAsTypeConverter<ConstantScoreQueryDescriptor<object>>))]
public interface IConstantScor... | apache-2.0 | C# |
dff1a03f62bb6614171d46a1bdabee61a76938bf | Update the argument of the InternalsVisibleTo attribute. | loresoft/msbuildtasks | Source/MSBuild.Community.Tasks/Properties/AssemblyInfo.cs | Source/MSBuild.Community.Tasks/Properties/AssemblyInfo.cs |
// Copyright © 2006 Paul Welter
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 assem... |
// Copyright © 2006 Paul Welter
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 assem... | bsd-2-clause | C# |
e7c41b7351b657c8b7a3ddae1706256f8004a80e | migrate to ue 4.17 | bw2012/UnrealSandboxToolkit,bw2012/UnrealSandboxToolkit,bw2012/UnrealSandboxToolkit | Source/UnrealSandboxToolkit/UnrealSandboxToolkit.Build.cs | Source/UnrealSandboxToolkit/UnrealSandboxToolkit.Build.cs | // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class UnrealSandboxToolkit : ModuleRules
{
public UnrealSandboxToolkit(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.AddRange(
new string[] {
"UnrealSandboxToolkit/Public"
// .... | // Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class UnrealSandboxToolkit : ModuleRules
{
public UnrealSandboxToolkit(TargetInfo Target)
{
PublicIncludePaths.AddRange(
new string[] {
"UnrealSandboxToolkit/Public"
// ... add public include paths... | mit | C# |
689c9797aa03dc23692f0364a7de697d1f8220e1 | Add SA1400 test for local functions | DotNetAnalyzers/StyleCopAnalyzers | StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp7/MaintainabilityRules/SA1400CSharp7UnitTests.cs | StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp7/MaintainabilityRules/SA1400CSharp7UnitTests.cs | // Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
namespace StyleCop.Analyzers.Test.CSharp7.MaintainabilityRules
{
using System.Threading;
using System.Threading.Tasks;
using St... | // Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
namespace StyleCop.Analyzers.Test.CSharp7.MaintainabilityRules
{
using StyleCop.Analyzers.Test.MaintainabilityRules;
public class ... | mit | C# |
5decce1a78b37f89367ddef29d6ca24c772614f6 | Use a location name in ClusterManagerClient snippet | jskeet/google-cloud-dotnet,googleapis/google-cloud-dotnet,jskeet/google-cloud-dotnet,jskeet/google-cloud-dotnet,jskeet/google-cloud-dotnet,googleapis/google-cloud-dotnet,jskeet/gcloud-dotnet,googleapis/google-cloud-dotnet,jskeet/google-cloud-dotnet | apis/Google.Cloud.Container.V1/Google.Cloud.Container.V1.Snippets/ClusterManagerClientSnippets.cs | apis/Google.Cloud.Container.V1/Google.Cloud.Container.V1.Snippets/ClusterManagerClientSnippets.cs | // Copyright 2017 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applic... | // Copyright 2017 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applic... | apache-2.0 | C# |
98dc655373f48914029d74c94b8f8a4424158ec8 | set stream acl for writes to $admins | EventStore/Sklaida,EventStore/Sklaida,EventStore/Sklaida | backend/src/WebAPI/Search/SearchController.cs | backend/src/WebAPI/Search/SearchController.cs | using System;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using System.Web.Http;
using System.Web.Http.Controllers;
using EventStore.ClientAPI;
using EventStore.ClientAPI.SystemData;
using WebAPI.Shared;
using System.Web.Http.Cors;
using System.Net.Http.Formatt... | using System;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using System.Web.Http;
using System.Web.Http.Controllers;
using EventStore.ClientAPI;
using EventStore.ClientAPI.SystemData;
using WebAPI.Shared;
using System.Web.Http.Cors;
using System.Net.Http.Formatt... | mit | C# |
8251317719035511b6de0641d8c2c31ae2902a96 | Remove unused attributes | nikeee/HolzShots | src/HolzShots.Core.Tests/Properties/AssemblyInfo.cs | src/HolzShots.Core.Tests/Properties/AssemblyInfo.cs | using HolzShots.Common;
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("HolzShots.Core.Tests")]
[assembly: AssemblyProduct("HolzShots.Core.Tests")]
[assembly: AssemblyDescription("HolzShots Core Component Tests")]
[assembly:... | using HolzShots.Common;
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("HolzShots.Core.Tests")]
[assembly: AssemblyProduct("HolzShots.Core.Tests")]
[assembly: AssemblyDescription("HolzShots Core Component Tests")]
[assembly:... | agpl-3.0 | C# |
0cda887d993e2ba6cfe866865ce5beb3f8d34195 | fix build error | hermanho/postal | src/Postal.Tests/ServiceCollectionExtensionTests.cs | src/Postal.Tests/ServiceCollectionExtensionTests.cs | using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options;
using Postal.AspNetCore;
using System;
using System.Collections.Generic;
using System.Net.Mail;
using System.Text;
using Xunit;
namespace Postal
{
public class ServiceCollectionExtensionTests
{
[Theory]
[Inline... | using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options;
using Postal.AspNetCore;
using System;
using System.Collections.Generic;
using System.Net.Mail;
using System.Text;
using Xunit;
namespace Postal
{
public class ServiceCollectionExtensionTests
{
[Theory]
[Inline... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.