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 |
|---|---|---|---|---|---|---|---|---|
eb74f64295dae77c811afade79d751e8c4af8b6d | Update UIComponentAttribute | atata-framework/atata,atata-framework/atata,YevgeniyShunevych/Atata,YevgeniyShunevych/Atata | src/Atata/Attributes/UIComponentAttribute.cs | src/Atata/Attributes/UIComponentAttribute.cs | using System;
using System.Linq;
namespace Atata
{
[AttributeUsage(AttributeTargets.Class)]
public class UIComponentAttribute : Attribute
{
public UIComponentAttribute(string elementXPath)
: this(elementXPath, null)
{
}
public UIComponentAttribute(string elemen... | using System;
using System.Linq;
namespace Atata
{
[AttributeUsage(AttributeTargets.Class)]
public class UIComponentAttribute : Attribute
{
public UIComponentAttribute(string elementXPath, string idFinderFormat = null)
{
ElementXPath = elementXPath;
IdFinderFormat =... | apache-2.0 | C# |
b4a244041e42b5fd889635eb0602791291606099 | Save created towers in an array | emazzotta/unity-tower-defense | Assets/Scripts/GameController.cs | Assets/Scripts/GameController.cs | using UnityEngine;
using System.Collections;
public class GameController : MonoBehaviour {
public GameObject towerBase;
public GameObject gameField;
private GameObject[,] towerBases;
private int gameFieldWidth = 0;
private int gameFieldHeight = 0;
void Start () {
this.gameFieldWidth = (int)(gameField.trans... | using UnityEngine;
using System.Collections;
public class GameController : MonoBehaviour {
public GameObject towerBase;
public GameObject gameField;
void Start () {
Debug.Log ("GameController: Game Started");
this.initGamePlatform ();
}
void Update () {
}
void initGamePlatform() {
for (int x = 0; x <... | mit | C# |
7a2b5dc25422bb80d61cf5d48c4e43ca80e7e1cf | Rename properties | mstrother/BmpListener | BmpListener/Bmp/BmpPeerHeader.cs | BmpListener/Bmp/BmpPeerHeader.cs | using System;
using System.Linq;
using System.Net;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace BmpListener.Bmp
{
public class BmpPeerHeader
{
public BmpPeerHeader(ArraySegment<byte> data)
{
Decode(data);
}
public PeerType Type { get; private s... | using System;
using System.Linq;
using System.Net;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace BmpListener.Bmp
{
public class BmpPeerHeader
{
public BmpPeerHeader(ArraySegment<byte> data)
{
Decode(data);
}
public PeerType PeerType { get; priva... | mit | C# |
133dc6728be3872a94a8d63fa3788e1937dbe39c | make url parameter optional to handle api/v2/ root requests | Pondidum/NuCache,Pondidum/NuCache,Pondidum/NuCache | NuCache/Controllers/PackagesController.cs | NuCache/Controllers/PackagesController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using System.Threading.Tasks;
namespace NuCache.Controllers
{
public class PackagesController : ApiController
{
private readonly IPackageSource _packageSource;
private readonly IDic... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using System.Threading.Tasks;
namespace NuCache.Controllers
{
public class PackagesController : ApiController
{
private readonly IPackageSource _packageSource;
private readonly IDic... | lgpl-2.1 | C# |
668012399979acf859a2634efb6856669124de7d | return statuscode result | Pondidum/OctopusStore,Pondidum/OctopusStore | OctopusStore/Consul/KeyValueController.cs | OctopusStore/Consul/KeyValueController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Web.Http;
using OctopusStore.Infrastructure;
namespace OctopusStore.Consul
{
public class KeyValueController : ApiController
{
private readonly VariableStore _store;
publi... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Web.Http;
using OctopusStore.Infrastructure;
namespace OctopusStore.Consul
{
public class KeyValueController : ApiController
{
private readonly VariableStore _store;
publi... | lgpl-2.1 | C# |
44a42a4c7d7e9f0f27d4ac8eb6f51c76974ee88e | add of generic GetSearchAlertViaSolr | Appleseed/base,Appleseed/base | Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Providers/EmailAlertProvider.cs | Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Providers/EmailAlertProvider.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Appleseed.Base.Alerts.Model;
using System.Data;
using Dapper;
using System.Data.SqlClient;
using System.Configuration;
using System.Net;
using System.IO;
using Newtonsoft.Json;
namespace Appleseed... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Appleseed.Base.Alerts.Model;
using System.Data;
using Dapper;
using System.Data.SqlClient;
using System.Configuration;
namespace Appleseed.Base.Alerts.Providers
{
class EmailAlertProvider : IA... | apache-2.0 | C# |
53d52dd90ab1106d51f68e381610db3a51405d0b | fix bug that only retrieves the parent folder instead of its files | StephenClearyApps/DotNetApis,StephenClearyApps/DotNetApis,StephenClearyApps/DotNetApis,StephenClearyApps/DotNetApis | service/DotNetApis.Storage/ReferenceStorage.cs | service/DotNetApis.Storage/ReferenceStorage.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using DotNetApis.Common;
using Microsoft.WindowsAzure.Storage.Blob;
namespace DotNetApis.Storage
{
public interface IReferenceStorage
{
/// <summary>
/// Returns the paths of refer... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using DotNetApis.Common;
using Microsoft.WindowsAzure.Storage.Blob;
namespace DotNetApis.Storage
{
public interface IReferenceStorage
{
/// <summary>
/// Returns the paths of refer... | mit | C# |
8a9fec98fe5088fc4f5cad6ae57eff218490cfee | Fix for connection closing | koush/dblinq,Sectoid/dblinq,sharique/dbinq,sharique/dbinq,koush/dblinq,Sectoid/dblinq | DbLinq/util/ConnectionManager.cs | DbLinq/util/ConnectionManager.cs | using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DBLinq.util
{
/// <summary>
/// if a connection is initially closed, ConnectionManager closes it in Dispose().
/// if a connection is initially open, C... | using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DBLinq.util
{
/// <summary>
/// if a connection is initially closed, ConnectionManager closes it in Dispose().
/// if a connection is initially open, C... | mit | C# |
0c25dd52b2ed7c6cf6abaa2dc9042a5fc0f3a83e | change location to prebody | Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen | Dashen/Assets/ComponentAssetInfo.cs | Dashen/Assets/ComponentAssetInfo.cs | namespace Dashen.Assets
{
public class ComponentAssetInfo : AssetInfo
{
public ComponentAssetInfo(string path)
{
Tag = "script";
SelfClosing = false;
Location = AssetLocations.PreBody;
AddAttribute("type", "text/jsx");
AddAttribute("src", path);
}
}
}
| namespace Dashen.Assets
{
public class ComponentAssetInfo : AssetInfo
{
public ComponentAssetInfo(string path)
{
Tag = "script";
SelfClosing = false;
Location = AssetLocations.PostBody;
AddAttribute("type", "text/jsx");
AddAttribute("src", path);
}
}
}
| lgpl-2.1 | C# |
6236af6a5ca42b9665731bed6ff36e9e9255a9d1 | Bump version | pleonex/deblocus,pleonex/deblocus | Deblocus/Properties/AssemblyInfo.cs | Deblocus/Properties/AssemblyInfo.cs | //
// AssemblyInfo.cs
//
// Author:
// Benito Palacios Sánchez (aka pleonex) <benito356@gmail.com>
//
// Copyright (c) 2015 Benito Palacios Sánchez (c) 2015
//
// 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
// ... | //
// AssemblyInfo.cs
//
// Author:
// Benito Palacios Sánchez (aka pleonex) <benito356@gmail.com>
//
// Copyright (c) 2015 Benito Palacios Sánchez (c) 2015
//
// 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
// ... | agpl-3.0 | C# |
1dd24ec1a5e80c7ed9284a54343069cacadefeee | Fix IAssemblyResolver documentation | Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver | src/AsmResolver.DotNet/IAssemblyResolver.cs | src/AsmResolver.DotNet/IAssemblyResolver.cs | namespace AsmResolver.DotNet
{
/// <summary>
/// Provides members for resolving references to external .NET assemblies.
/// </summary>
public interface IAssemblyResolver
{
/// <summary>
/// Resolves a reference to an assembly.
/// </summary>
/// <param name... | namespace AsmResolver.DotNet
{
/// <summary>
/// Provides members for resolving references to external .NET assemblies.
/// </summary>
public interface IAssemblyResolver
{
/// <summary>
/// Resolves a reference to an assembly.
/// </summary>
/// <param name... | mit | C# |
073523001d5fc776b529487013a51241766b2e1a | fix bug | scheshan/DotNetBlog,scheshan/DotNetBlog | src/DotNetBlog.Web/Views/Admin/Index.cshtml | src/DotNetBlog.Web/Views/Admin/Index.cshtml | @inject ClientManager clientManager
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
</head>
<body class="skin-blue fixed">
<div id="main">
</div>
</body>
</html>
<script type="text/javascript">
var user =... | @inject ClientManager clientManager
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
</head>
<body class="skin-blue fixed">
<div id="main">
</div>
</body>
</html>
<script type="text/javascript">
var user =... | apache-2.0 | C# |
1aba4b4e3d411a5f1e3439299d7b84a587138622 | Make methods on ValidatorDescriptor virtual. | robv8r/FluentValidation,olcayseker/FluentValidation,pacificIT/FluentValidation,IRlyDontKnow/FluentValidation,glorylee/FluentValidation,roend83/FluentValidation,mgmoody42/FluentValidation,deluxetiky/FluentValidation,GDoronin/FluentValidation,ruisebastiao/FluentValidation,regisbsb/FluentValidation,cecilphillip/FluentVali... | src/FluentValidation/ValidatorDescriptor.cs | src/FluentValidation/ValidatorDescriptor.cs | #region License
// Copyright 2008-2009 Jeremy Skinner (http://www.jeremyskinner.co.uk)
//
// 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.... | #region License
// Copyright 2008-2009 Jeremy Skinner (http://www.jeremyskinner.co.uk)
//
// 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.... | apache-2.0 | C# |
e73fe95dd026329ebd54eda0f1cb6fb659269986 | add facets | ucdavis/Namster,ucdavis/Namster,ucdavis/Namster | src/Namster/Controllers/SearchController.cs | src/Namster/Controllers/SearchController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Mvc;
using Namster.Models;
using Namster.Services;
namespace Namster.Controllers
{
public class SearchController : Controller
{
private readonly ISearchService _searchService;
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Mvc;
using Namster.Models;
using Namster.Services;
namespace Namster.Controllers
{
public class SearchController : Controller
{
private readonly ISearchService _searchService;
... | mit | C# |
074e5b767da5beffb2c4e89390590b5e52773663 | Simplify _ViewStart | martincostello/api,martincostello/api,martincostello/api | src/API/Views/_ViewStart.cshtml | src/API/Views/_ViewStart.cshtml | @{
Layout = "_Layout";
}
| @{
Layout = "~/Views/Shared/_Layout.cshtml";
}
| mit | C# |
9d8f13a09d6011510151cd53960c65390a95fc2b | Switch off the default diagnostic provider | MetSystem/Nancy,lijunle/Nancy,sloncho/Nancy,kekekeks/Nancy,jchannon/Nancy,tparnell8/Nancy,rudygt/Nancy,JoeStead/Nancy,dbabox/Nancy,xt0rted/Nancy,grumpydev/Nancy,joebuschmann/Nancy,NancyFx/Nancy,lijunle/Nancy,dbolkensteyn/Nancy,nicklv/Nancy,damianh/Nancy,asbjornu/Nancy,dbabox/Nancy,ccellar/Nancy,thecodejunkie/Nancy,tare... | src/Nancy/Diagnostics/DefaultDiagnostics.cs | src/Nancy/Diagnostics/DefaultDiagnostics.cs | namespace Nancy.Diagnostics
{
using System.Collections.Generic;
using System.Linq;
using ModelBinding;
using Nancy.Bootstrapper;
using Responses.Negotiation;
using Nancy.Culture;
/// <summary>
/// Wires up the diagnostics support at application startup.
/// </summary>
... | namespace Nancy.Diagnostics
{
using System.Collections.Generic;
using ModelBinding;
using Nancy.Bootstrapper;
using Responses.Negotiation;
using Nancy.Culture;
/// <summary>
/// Wires up the diagnostics support at application startup.
/// </summary>
public class DefaultD... | mit | C# |
9a09ca84f90b1bb7e3fab30b4a498552323cd04c | Fix for always using front | jamesmontemagno/MediaPlugin,jamesmontemagno/MediaPlugin | src/Media.Plugin.Android/IntentExtraExtensions.cs | src/Media.Plugin.Android/IntentExtraExtensions.cs | using Android.Content;
using Android.Hardware;
namespace Plugin.Media
{
internal static class IntentExtraExtensions
{
private const string extraFrontPre25 = "android.intent.extras.CAMERA_FACING";
private const string extraFrontPost25 = "android.intent.extras.LENS_FACING_FRONT";
private const string extraBackP... | using Android.Content;
using Android.Hardware;
namespace Plugin.Media
{
internal static class IntentExtraExtensions
{
private const string extraFrontPre25 = "android.intent.extras.CAMERA_FACING";
private const string extraFrontPost25 = "android.intent.extras.LENS_FACING_FRONT";
private const string extraBackP... | mit | C# |
1b5bc132cd3560a2fac57e23b64957c66dffe43e | Update ResolutionStatusType.cs | halex2005/diadocsdk-csharp,diadoc/diadocsdk-csharp,diadoc/diadocsdk-csharp,halex2005/diadocsdk-csharp | src/Com/ResolutionStatusType.cs | src/Com/ResolutionStatusType.cs | using System.Runtime.InteropServices;
using System.Xml.Serialization;
namespace Diadoc.Api.Com
{
[ComVisible(true)]
[Guid("B0A83874-31C1-400F-931B-646551A2A2F1")]
//NOTE: Это хотели, чтобы можно было использовать XML-сериализацию для классов
[XmlType(TypeName = "ResolutionStatusType", Namespace = "https://diadoc-... | using System.Runtime.InteropServices;
using System.Xml.Serialization;
namespace Diadoc.Api.Com
{
[ComVisible(true)]
[Guid("B0A83874-31C1-400F-931B-646551A2A2F1")]
//NOTE: Это хотели, чтобы можно было использовать XML-сериализацию для классов
[XmlType(TypeName = "ResolutionStatusType", Namespace = "https://diadoc-... | mit | C# |
49048bfacb03c3917550b8e6fe00d04962635dc0 | Add support for localized descriptions | thunsaker/Humanizer,thunsaker/Humanizer,kikoanis/Humanizer,llehouerou/Humanizer,gyurisc/Humanizer,HalidCisse/Humanizer,mrchief/Humanizer,aloisdg/Humanizer,CodeFromJordan/Humanizer,vgrigoriu/Humanizer,cmaneu/Humanizer,Flatlineato/Humanizer,mexx/Humanizer,CodeFromJordan/Humanizer,harouny/Humanizer,llehouerou/Humanizer,pr... | src/Humanizer/EnumExtensions.cs | src/Humanizer/EnumExtensions.cs | // Copyright (C) 2012, Mehdi Khalili
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of con... | // Copyright (C) 2012, Mehdi Khalili
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of con... | mit | C# |
f0c10c7eda93d3e64d8a195f6167549ac5d9358f | Fix #520 Prize Redemption Count error | MCLD/greatreadingadventure,MCLD/greatreadingadventure,MCLD/greatreadingadventure,MCLD/greatreadingadventure,MCLD/greatreadingadventure | src/GRA.Web/Areas/MissionControl/Views/Reporting/PrizeRedemptionCountCriteria.cshtml | src/GRA.Web/Areas/MissionControl/Views/Reporting/PrizeRedemptionCountCriteria.cshtml | @model GRA.Controllers.ViewModel.MissionControl.Reporting.ReportCriteriaViewModel
<form asp-controller="Reporting" asp-action="Run" method="post" role="form" class="form-horizontal" style="margin-top: 2rem; margin-bottom: 2rem;">
<input asp-for="ReportId" type="hidden" />
<div class="form-group">
<di... | @model GRA.Controllers.ViewModel.MissionControl.Reporting.ReportCriteriaViewModel
<form asp-controller="Reporting" asp-action="Run" method="post" role="form" class="form-horizontal" style="margin-top: 2rem; margin-bottom: 2rem;">
<input asp-for="ReportId" type="hidden" />
<div class="form-group">
<di... | mit | C# |
e1e403caa3f85f283f10a360339dd886cb290627 | Fix timeout issue waiting for topics to be created. | SanSYS/MassTransit,phatboyg/MassTransit,MassTransit/MassTransit,SanSYS/MassTransit,MassTransit/MassTransit,jacobpovar/MassTransit,jacobpovar/MassTransit,phatboyg/MassTransit | src/MassTransit.Host/Program.cs | src/MassTransit.Host/Program.cs | // Copyright 2007-2015 Chris Patterson, Dru Sellers, Travis Smith, et. al.
//
// 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
//
... | // Copyright 2007-2015 Chris Patterson, Dru Sellers, Travis Smith, et. al.
//
// 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... | apache-2.0 | C# |
f7db15590c197bf0e2cc02643d2642be6ce6cbff | Implement YAML remove instance | mvno/Okanshi.Dashboard,mvno/Okanshi.Dashboard,mvno/Okanshi.Dashboard,mvno/Okanshi.Dashboard | src/Okanshi.Dashboard/Config.cs | src/Okanshi.Dashboard/Config.cs | using System.Collections.Generic;
using System.IO;
using System.Linq;
using YamlDotNet.Serialization;
using YamlDotNet.Serialization.NamingConventions;
namespace Okanshi.Dashboard
{
public class Config : IConfiguration
{
private readonly Serializer _serializer;
static Config()
{
using (var reader = new St... | using System.Collections.Generic;
using System.IO;
using YamlDotNet.Serialization;
using YamlDotNet.Serialization.NamingConventions;
namespace Okanshi.Dashboard
{
public class Config : IConfiguration
{
private readonly Serializer _serializer;
static Config()
{
using (var reader = new StreamReader(File.Ope... | mit | C# |
afeff50a46ed71521915f62c979ee84b3f8f2a4e | Remove extra whitespace in BoolAndExpression | exodrifter/unity-rumor | Expressions/BoolAndExpression.cs | Expressions/BoolAndExpression.cs | using Exodrifter.Rumor.Engine;
using System;
using System.Runtime.Serialization;
namespace Exodrifter.Rumor.Expressions
{
/// <summary>
/// Represents a boolean "and" operator.
/// </summary>
[Serializable]
public class BoolAndExpression : OpExpression
{
public BoolAndExpression(Expression left, Expression ri... | using Exodrifter.Rumor.Engine;
using System;
using System.Runtime.Serialization;
namespace Exodrifter.Rumor.Expressions
{
/// <summary>
/// Represents a boolean "and" operator.
/// </summary>
[Serializable]
public class BoolAndExpression : OpExpression
{
public BoolAndExpression(Expression left, Expression ri... | mit | C# |
7e3d1511c67d620ba2dc63059c6cec86ed25d244 | Hide "Rank Achieved" sorting mode until it's supported | ppy/osu,NeoAdonis/osu,ppy/osu,ppy/osu,peppy/osu,peppy/osu,NeoAdonis/osu,peppy/osu,NeoAdonis/osu | osu.Game/Screens/Select/Filter/SortMode.cs | osu.Game/Screens/Select/Filter/SortMode.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.ComponentModel;
using osu.Framework.Localisation;
using osu.Game.Resources.Localisation.Web;
namespace osu.Game.Screens.Select.Filter
{
public enum Sor... | // 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.ComponentModel;
using osu.Framework.Localisation;
using osu.Game.Resources.Localisation.Web;
namespace osu.Game.Screens.Select.Filter
{
public enum Sor... | mit | C# |
186ee4df29906aa7e3725bb6ab2b6f05a9545d1d | Implement TextReaderCustomization#Customize | appharbor/appharbor-cli | src/AppHarbor.Tests/TextReaderCustomization.cs | src/AppHarbor.Tests/TextReaderCustomization.cs | using System.IO;
using Moq;
using Ploeh.AutoFixture;
namespace AppHarbor.Tests
{
public class TextReaderCustomization : ICustomization
{
public void Customize(IFixture fixture)
{
var textReaderMock = new Mock<TextReader>();
fixture.Customize<TextReader>(x => x.FromFactory(() => { return textReaderMock.Obj... | using System;
using Ploeh.AutoFixture;
namespace AppHarbor.Tests
{
public class TextReaderCustomization : ICustomization
{
public void Customize(IFixture fixture)
{
throw new NotImplementedException();
}
}
}
| mit | C# |
76ceddeec0e2115b6f71c21e3c19c5b44cc085a7 | Remove conditional MoveRelative call from old BecomingActive scope | jlewin/MatterControl,larsbrubaker/MatterControl,jlewin/MatterControl,mmoening/MatterControl,jlewin/MatterControl,unlimitedbacon/MatterControl,jlewin/MatterControl,unlimitedbacon/MatterControl,unlimitedbacon/MatterControl,mmoening/MatterControl,mmoening/MatterControl,larsbrubaker/MatterControl,larsbrubaker/MatterControl... | MatterControlLib/ConfigurationPage/PrintLeveling/WizardPages/GetUltraFineBedHeight.cs | MatterControlLib/ConfigurationPage/PrintLeveling/WizardPages/GetUltraFineBedHeight.cs | /*
Copyright (c) 2019, Lars Brubaker, John Lewin
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and... | /*
Copyright (c) 2018, Lars Brubaker, John Lewin
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and... | bsd-2-clause | C# |
32e3ca7df8497244f104fa8a74b552511a59df96 | correct error handling when tempalte not found | Fody/Validar | Fody/ValidationTemplateFinder.cs | Fody/ValidationTemplateFinder.cs | using System.Collections.Generic;
using System.Linq;
using Mono.Cecil;
public class ValidationTemplateFinder
{
public TypeDefinition TypeDefinition;
public MethodDefinition TemplateConstructor;
public List<TypeDefinition> AllTypes;
public void Execute()
{
TypeDefinition = AllTypes.Fi... | using System.Collections.Generic;
using System.Linq;
using Mono.Cecil;
public class ValidationTemplateFinder
{
public TypeDefinition TypeDefinition;
public MethodDefinition TemplateConstructor;
public List<TypeDefinition> AllTypes;
public void Execute()
{
TypeDefinition = AllTypes.Fi... | mit | C# |
c603c7de06788b256585f0c7dab073f1dc27ea00 | refactor handler | louthy/language-ext,StefanBertels/language-ext,StanJav/language-ext | Samples/Contoso/Contoso.Application/Instructors/Queries/GetOfficeAssignmentHandler.cs | Samples/Contoso/Contoso.Application/Instructors/Queries/GetOfficeAssignmentHandler.cs | using System.Threading;
using System.Threading.Tasks;
using Contoso.Core.Domain;
using Contoso.Core.Interfaces.Repositories;
using LanguageExt;
using MediatR;
namespace Contoso.Application.Instructors.Queries
{
public class GetOfficeAssignmentHandler : IRequestHandler<GetOfficeAssignment, Option<OfficeAssignment>... | using System.Threading;
using System.Threading.Tasks;
using Contoso.Core.Domain;
using Contoso.Core.Interfaces.Repositories;
using LanguageExt;
using MediatR;
namespace Contoso.Application.Instructors.Queries
{
public class GetOfficeAssignmentHandler : IRequestHandler<GetOfficeAssignment, Option<OfficeAssignment>... | mit | C# |
6b33ebf8e012d66217e11dfd1e6ff79804ad9caf | Revert accidental change of async flag . | mdavid/nuget,mdavid/nuget | src/VsConsole/Console/PowerConsole/HostInfo.cs | src/VsConsole/Console/PowerConsole/HostInfo.cs | using System;
using System.Diagnostics;
namespace NuGetConsole.Implementation.PowerConsole {
/// <summary>
/// Represents a host with extra info.
/// </summary>
class HostInfo : ObjectWithFactory<PowerConsoleWindow> {
Lazy<IHostProvider, IHostMetadata> HostProvider { get; set; }
... | using System;
using System.Diagnostics;
namespace NuGetConsole.Implementation.PowerConsole {
/// <summary>
/// Represents a host with extra info.
/// </summary>
class HostInfo : ObjectWithFactory<PowerConsoleWindow> {
Lazy<IHostProvider, IHostMetadata> HostProvider { get; set; }
... | apache-2.0 | C# |
a1a90ae46e02ec09d96896da83800a043404c4bf | Update the example precondition to use IServiceProvider | RogueException/Discord.Net,Confruggy/Discord.Net,AntiTcb/Discord.Net | docs/guides/commands/samples/require_owner.cs | docs/guides/commands/samples/require_owner.cs | // (Note: This precondition is obsolete, it is recommended to use the RequireOwnerAttribute that is bundled with Discord.Commands)
using Discord.Commands;
using Discord.WebSocket;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Threading.Tasks;
// Inherit from PreconditionAttribute
public c... | // (Note: This precondition is obsolete, it is recommended to use the RequireOwnerAttribute that is bundled with Discord.Commands)
using Discord.Commands;
using Discord.WebSocket;
using System.Threading.Tasks;
// Inherit from PreconditionAttribute
public class RequireOwnerAttribute : PreconditionAttribute
{
// Ov... | mit | C# |
ac4ebe7a07005fc3a196ac68a5135ca53dc453a2 | Fix bug with suggestion route when app not in server root directory | opencolorado/.NET-Wrapper-for-CKAN-API,DenverDev/.NET-Wrapper-for-CKAN-API,DenverDev/.NET-Wrapper-for-CKAN-API,opencolorado/.NET-Wrapper-for-CKAN-API,opencolorado/.NET-Wrapper-for-CKAN-API | CkanDotNet.Web/Views/Shared/Search/_Search.cshtml | CkanDotNet.Web/Views/Shared/Search/_Search.cshtml | @using CkanDotNet.Api.Model
@using CkanDotNet.Web.Models
@using CkanDotNet.Web.Models.Helpers
@model PackageSearchResultsModel
@{
string query = String.Empty;
if (Model != null) {
query = Model.SearchParameters.Query;
}
}
@using (Html.BeginForm(actionName: "Index", controllerName: "Search", route... | @using CkanDotNet.Api.Model
@using CkanDotNet.Web.Models
@using CkanDotNet.Web.Models.Helpers
@model PackageSearchResultsModel
@{
string query = String.Empty;
if (Model != null) {
query = Model.SearchParameters.Query;
}
}
@using (Html.BeginForm(actionName: "Index", controllerName: "Search", route... | apache-2.0 | C# |
b3db1580de634eb4f25fcbb7147d7d0564ae5f2a | Update library version. | yurko7/math-expression | math-expression/Properties/AssemblyInfo.cs | math-expression/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# |
f75e660aac44f9337d78cef668682bb6f0438b9b | Add OpenWindowTest#OpenByGenericType. | nuitsjp/KAMISHIBAI | Source/Kamishibai.Test/Scenario/OpenWindowTest.cs | Source/Kamishibai.Test/Scenario/OpenWindowTest.cs | using Codeer.Friendly.Windows;
using Driver.TestController;
using NUnit.Framework;
using Driver.Windows;
using FluentAssertions;
namespace Scenario;
[TestFixture]
public class OpenWindowTest : TestBase
{
[Test]
public void OpenByType()
{
var mainWindow = app.AttachMainWindow();
var openW... | using Codeer.Friendly.Windows;
using Driver.TestController;
using NUnit.Framework;
using Driver.Windows;
using FluentAssertions;
namespace Scenario;
[TestFixture]
public class OpenWindowTest : TestBase
{
[Test]
public void OpenByType()
{
var mainWindow = app.AttachMainWindow();
var openW... | mit | C# |
6561570c02f481cb308c5b149458144160121939 | Make Directory syntax coherent with OpenContent module | sachatrauwaen/openform,sachatrauwaen/openform,sachatrauwaen/openform | EditSettings.ascx.cs | EditSettings.ascx.cs | #region Copyright
//
// Copyright (c) 2015
// by Satrabel
//
#endregion
#region Using Statements
using System;
using DotNetNuke.Entities.Modules;
using DotNetNuke.Common;
using DotNetNuke.Framework.JavaScriptLibraries;
using DotNetNuke.Framework;
using Satrabel.OpenContent.Components;
using Satrabel.OpenForm.Comp... | #region Copyright
//
// Copyright (c) 2015
// by Satrabel
//
#endregion
#region Using Statements
using System;
using DotNetNuke.Entities.Modules;
using DotNetNuke.Common;
using DotNetNuke.Framework.JavaScriptLibraries;
using DotNetNuke.Framework;
using Satrabel.OpenContent.Components;
using Satrabel.OpenForm.Comp... | mit | C# |
b017e8690acf5025a2182fd05302e8d04edfcf67 | Fix errors in log caused by no prevalues beind selected. | mattbrailsford/Umbraco-CMS,dampee/Umbraco-CMS,rasmuseeg/Umbraco-CMS,Nicholas-Westby/Umbraco-CMS,sargin48/Umbraco-CMS,NikRimington/Umbraco-CMS,Door3Dev/HRI-Umbraco,tcmorris/Umbraco-CMS,Spijkerboer/Umbraco-CMS,abryukhov/Umbraco-CMS,ehornbostel/Umbraco-CMS,nvisage-gf/Umbraco-CMS,sargin48/Umbraco-CMS,PeteDuncanson/Umbraco-... | src/umbraco.editorControls/DefaultDataKeyValue.cs | src/umbraco.editorControls/DefaultDataKeyValue.cs | using System;
using umbraco.DataLayer;
namespace umbraco.editorControls
{
/// <summary>
/// Summary description for cms.businesslogic.datatype.DefaultDataKeyValue.
/// </summary>
public class DefaultDataKeyValue : cms.businesslogic.datatype.DefaultData
{
public DefaultDataKeyValue(cms.businesslogic... | using System;
using umbraco.DataLayer;
namespace umbraco.editorControls
{
/// <summary>
/// Summary description for cms.businesslogic.datatype.DefaultDataKeyValue.
/// </summary>
public class DefaultDataKeyValue : cms.businesslogic.datatype.DefaultData
{
public DefaultDataKeyValue(cms.businesslogic... | mit | C# |
6c3a8c15a2adca6c6b2124414ee3e1f44c23708e | fix for ETCH-56: UnwantedMessage.ToString method attempts to format using the java style formatting instead of csharp style | OBIGOGIT/etch,OBIGOGIT/etch,OBIGOGIT/etch,OBIGOGIT/etch,OBIGOGIT/etch,OBIGOGIT/etch,OBIGOGIT/etch,OBIGOGIT/etch | binding-csharp/runtime/src/main/csharp/Org.Apache.Etch.Bindings.Csharp/Transport/UnwantedMessage.cs | binding-csharp/runtime/src/main/csharp/Org.Apache.Etch.Bindings.Csharp/Transport/UnwantedMessage.cs | // $Id$
//
// Copyright 2007-2008 Cisco Systems 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 app... | // $Id$
//
// Copyright 2007-2008 Cisco Systems 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 app... | apache-2.0 | C# |
0a42cd9012dfb2171945d935420b5ff47a81109c | Reorder properties | bcemmett/SurveyMonkeyApi-v3,davek17/SurveyMonkeyApi-v3 | SurveyMonkey/Containers/QuestionDisplayOptions.cs | SurveyMonkey/Containers/QuestionDisplayOptions.cs | using Newtonsoft.Json;
namespace SurveyMonkey.Containers
{
[JsonConverter(typeof(TolerantJsonConverter))]
public class QuestionDisplayOptions
{
public string LeftLabel { get; set; }
public string MiddleLabel { get; set; }
public string RightLabel { get; set; }
public string... | using Newtonsoft.Json;
namespace SurveyMonkey.Containers
{
[JsonConverter(typeof(TolerantJsonConverter))]
public class QuestionDisplayOptions
{
public string MiddleLabel { get; set; }
public bool? ShowDisplayNumber { get; set; }
public string DisplaySubtype { get; set; }
pu... | mit | C# |
d6d29ddcd4e5ec5ed7937cf6ee8bd3c273b7cd9c | Format EnumCompletionProvider.cs | weltkante/roslyn,CyrusNajmabadi/roslyn,AmadeusW/roslyn,CyrusNajmabadi/roslyn,jasonmalinowski/roslyn,physhi/roslyn,dotnet/roslyn,mavasani/roslyn,eriawan/roslyn,wvdd007/roslyn,physhi/roslyn,physhi/roslyn,shyamnamboodiripad/roslyn,mgoertz-msft/roslyn,eriawan/roslyn,CyrusNajmabadi/roslyn,KevinRansom/roslyn,sharwell/roslyn,... | src/Features/CSharp/Portable/Completion/CompletionProviders/EnumCompletionProvider.cs | src/Features/CSharp/Portable/Completion/CompletionProviders/EnumCompletionProvider.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.Collections.Generic;
using System.Collections.Immutable;
using System.Composition;
using... | // 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.Collections.Immutable;
using System.Composition;
using... | mit | C# |
ec122631ea1211e2a2711d2d59dea830d4b2b487 | Fix unityadview vertical position. | Senspark/ee-x,Senspark/ee-x,Senspark/ee-x,Senspark/ee-x,Senspark/ee-x,Senspark/ee-x,Senspark/ee-x,Senspark/ee-x,Senspark/ee-x | unity/Runtime/Unity/UnityAdView.cs | unity/Runtime/Unity/UnityAdView.cs | using System.Threading.Tasks;
using UnityEngine;
namespace EE {
public class UnityAdView
: ObserverManager<IAdViewObserver>, IAdView {
private readonly IAdView _ad;
private readonly ObserverHandle _handle;
public UnityAdView(IAdView ad) {
_ad = ad;
_handle ... | using System.Threading.Tasks;
namespace EE {
public class UnityAdView
: ObserverManager<IAdViewObserver>, IAdView {
private readonly IAdView _ad;
private readonly ObserverHandle _handle;
public UnityAdView(IAdView ad) {
_ad = ad;
_handle = new ObserverHandle... | mit | C# |
60b7635a3c92953c1d0ce4b3565f8d2493baef7f | Update AssemblyInfo.cs | zoosk/testrail-client | TestRail/Properties/AssemblyInfo.cs | TestRail/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("Te... | 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("Te... | apache-2.0 | C# |
bf19b23bf9e1c619cdc69ff39ed70509fed8227d | Refactor to common AddToLogBox function | TimothyK/RxExamples | RxExamplesWPF/MainWindow.xaml.cs | RxExamplesWPF/MainWindow.xaml.cs | using System;
using System.Reactive.Linq;
using System.Reactive.Subjects;
using System.Windows;
namespace RxExamplesWPF
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow
{
public MainWindow()
{
InitializeComponent... | using System;
using System.Reactive.Linq;
using System.Reactive.Subjects;
using System.Windows;
namespace RxExamplesWPF
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow
{
public MainWindow()
{
InitializeComponent... | unlicense | C# |
afb91626835e82b0211ef19dc6ca97ecf9b07dd7 | Configure data portal before using data portal | JasonBock/csla,rockfordlhotka/csla,JasonBock/csla,MarimerLLC/csla,MarimerLLC/csla,JasonBock/csla,rockfordlhotka/csla,rockfordlhotka/csla,MarimerLLC/csla | Samples/ProjectTracker/ProjectTracker.Ui.Xamarin/ProjectTracker.Ui.Xamarin/App.xaml.cs | Samples/ProjectTracker/ProjectTracker.Ui.Xamarin/ProjectTracker.Ui.Xamarin/App.xaml.cs | using Csla.Configuration;
using ProjectTracker.Library;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace ProjectTracker.Ui.Xamarin
{
public partial class App : Application
{
public static Page RootPage { get; priva... | using Csla.Configuration;
using ProjectTracker.Library;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace ProjectTracker.Ui.Xamarin
{
public partial class App : Application
{
public static Page RootPage { get; priva... | mit | C# |
0ff1d764ef6d66092886b484ffc9ee6a2879e350 | Update RedisDatabaseExtensions.cs | verdentk/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,carldai0106/aspnetboilerplate,carldai0106/aspnetboilerplate,ilyhacker/aspnetboilerplate,ryancyq/aspnetboilerplate,ryancyq/aspnetboilerplate,ryancyq/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,ilyhacker/aspnetboilerplate,aspnetboilerplate/aspnetboi... | src/Abp.RedisCache/Runtime/Caching/Redis/RedisDatabaseExtensions.cs | src/Abp.RedisCache/Runtime/Caching/Redis/RedisDatabaseExtensions.cs | using System;
using StackExchange.Redis;
namespace Abp.Runtime.Caching.Redis
{
/// <summary>
/// Extension methods for <see cref="IDatabase"/>.
/// </summary>
internal static class RedisDatabaseExtensions
{
public static void KeyDeleteWithPrefix(this IDatabase database, string prefix)
... | using System;
using StackExchange.Redis;
namespace Abp.Runtime.Caching.Redis
{
/// <summary>
/// Extension methods for <see cref="IDatabase"/>.
/// </summary>
internal static class RedisDatabaseExtensions
{
public static void KeyDeleteWithPrefix(this IDatabase database, string prefix)
... | mit | C# |
6307c79da41058521bba8056d3ecfa5c1d968e78 | Sort attribute types as documentation | pardahlman/akeneo-csharp | Akeneo/Model/AttributeType.cs | Akeneo/Model/AttributeType.cs | namespace Akeneo.Model
{
public class AttributeType
{
/// <summary>
/// It is the unique product’s identifier. The catalog can contain only one.
/// </summary>
public const string Identifier = "pim_catalog_identifier";
/// <summary>
/// Text
/// </summary>
public const string Text = "pim_catalog_tex... | namespace Akeneo.Model
{
public class AttributeType
{
public const string Date = "pim_catalog_date";
public const string Metric = "pim_catalog_metric";
public const string Price = "pim_catalog_price_collection";
public const string Number = "pim_catalog_number";
public const string Text = "pim_catalog_text... | mit | C# |
f72a7bf306d89c9d827899e7518d29438c276a80 | use .localScale instead of .sizeDelta to remove orgSize[] | yasokada/unity-150905-dynamicDisplay | Assets/PanelDisplayControl.cs | Assets/PanelDisplayControl.cs | using UnityEngine;
using System.Collections;
using UnityEngine.UI;
/*
* v0.4 2015/09/06
* - use localScale instead of keeping original sizez at orgSize[]
* v0.3 2015/09/06
* - use Tag for Panel to find target panels, instead of panel name
* v0.2 2015/09/06
* - add sample UI components in each panel
* v0.... | using UnityEngine;
using System.Collections;
using UnityEngine.UI;
/*
* v0.3 2015/09/06
* - use Tag for Panel to find target panels, instead of panel name
* v0.2 2015/09/06
* - add sample UI components in each panel
* v0.1 2015/09/05
* - show/hide panels
*/
public class PanelDisplayControl : MonoBehavio... | mit | C# |
f3403fa76d60fed8507d26e9f2987d59a1f8dbbe | Fix error message | vasanthangel4/azure-webjobs-sdk,shrishrirang/azure-webjobs-sdk,shrishrirang/azure-webjobs-sdk,oliver-feng/azure-webjobs-sdk,gibwar/azure-webjobs-sdk,oaastest/azure-webjobs-sdk,shrishrirang/azure-webjobs-sdk,Azure/azure-webjobs-sdk,oliver-feng/azure-webjobs-sdk,gibwar/azure-webjobs-sdk,gibwar/azure-webjobs-sdk,brendanko... | src/Microsoft.Azure.WebJobs.Host/Queues/Bindings/StringToCloudQueueMessageConverter.cs | src/Microsoft.Azure.WebJobs.Host/Queues/Bindings/StringToCloudQueueMessageConverter.cs | // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.Azure.WebJobs.Host.Converters;
using Microsoft.WindowsAzure.Storage.Queue;
namespace Microsoft.Azure.We... | // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.Azure.WebJobs.Host.Converters;
using Microsoft.WindowsAzure.Storage.Queue;
namespace Microsoft.Azure.We... | mit | C# |
cadfd37dcf00eda1cd0d56519071d07d7b93c7cb | Refactor `NUnitSettings.cs` of Atata.IntegrationTests project | atata-framework/atata,atata-framework/atata | test/Atata.IntegrationTests/NUnitSettings.cs | test/Atata.IntegrationTests/NUnitSettings.cs | [assembly: Parallelizable(ParallelScope.Fixtures)]
| using NUnit.Framework;
[assembly: Parallelizable(ParallelScope.Fixtures)]
| apache-2.0 | C# |
2f0fde43a82d42d2e13c56dcee44ff6c26a561c8 | Use await for synchronization | AngleSharp/AngleSharp,zedr0n/AngleSharp.Local,AngleSharp/AngleSharp,FlorianRappl/AngleSharp,zedr0n/AngleSharp.Local,Livven/AngleSharp,AngleSharp/AngleSharp,zedr0n/AngleSharp.Local,FlorianRappl/AngleSharp,Livven/AngleSharp,AngleSharp/AngleSharp,FlorianRappl/AngleSharp,AngleSharp/AngleSharp,Livven/AngleSharp,FlorianRappl... | AngleSharp.Samples.Demos/Program.cs | AngleSharp.Samples.Demos/Program.cs | namespace AngleSharp.Samples.Demos
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
class Program
{
static IEnumerable<ISnippet> FindSnippets()
{
var assembly = Assembly.GetExecutingAssem... | namespace AngleSharp.Samples.Demos
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
class Program
{
static IEnumerable<ISnippet> FindSnippets()
{
var assembly = Assembly.GetExecutingAssembly();
var alltypes = ... | mit | C# |
f4c9037b34600929ac6e1e55f8f76a12bcbc7047 | Make FastDepthFirstVisitor.Visit virtual | hmah/boo,wbardzinski/boo,Unity-Technologies/boo,BITechnologies/boo,wbardzinski/boo,KidFashion/boo,BitPuffin/boo,BITechnologies/boo,wbardzinski/boo,drslump/boo,drslump/boo,boo-lang/boo,wbardzinski/boo,rmboggs/boo,scottstephens/boo,Unity-Technologies/boo,rmartinho/boo,hmah/boo,bamboo/boo,boo-lang/boo,BitPuffin/boo,hmah/b... | scripts/Templates/FastDepthFirstVisitor.cs | scripts/Templates/FastDepthFirstVisitor.cs | ${header}
namespace Boo.Lang.Compiler.Ast
{
using System;
/// <summary>
/// Visitor implementation that avoids the overhead of cloning collections
/// before visiting them.
///
/// Avoid mutating collections when using this implementation.
/// </summary>
public partial class FastDepthFirstVisitor : IAstVisito... | ${header}
namespace Boo.Lang.Compiler.Ast
{
using System;
/// <summary>
/// Visitor implementation that avoids the overhead of cloning collections
/// before visiting them.
///
/// Avoid mutating collections when using this implementation.
/// </summary>
public partial class FastDepthFirstVisitor : IAstVisito... | bsd-3-clause | C# |
3875b0e696ad5feaab7c39eb3a5b01875d3faf70 | Change GDIFont.ToString() to return just the font name | opcon/QuickFont,opcon/QuickFont | QuickFont/GDIFont.cs | QuickFont/GDIFont.cs | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Text;
using System.Linq;
using System.Text;
namespace QuickFont
{
public class GDIFont : IFont, IDisposable
{
private Font _font;
private FontFamily _fontFamily;
public float Size { get { retu... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Text;
using System.Linq;
using System.Text;
namespace QuickFont
{
public class GDIFont : IFont, IDisposable
{
private Font _font;
private FontFamily _fontFamily;
public float Size { get { retu... | mit | C# |
f2ef896c84d8b362a87c27209bb10277a73d51a3 | Update AddingDataToCells.cs | asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,maria-shahid-as... | Examples/CSharp/Data/Handling/AddingDataToCells.cs | Examples/CSharp/Data/Handling/AddingDataToCells.cs | using System.IO;
using Aspose.Cells;
using System;
namespace Aspose.Cells.Examples.Data.Handling
{
public class AddingDataToCells
{
public static void Main(string[] args)
{
//ExStart:1
// The path to the documents directory.
string dataDir = Aspose.Cells.Exa... | using System.IO;
using Aspose.Cells;
using System;
namespace Aspose.Cells.Examples.Data.Handling
{
public class AddingDataToCells
{
public static void Main(string[] args)
{
// The path to the documents directory.
string dataDir = Aspose.Cells.Examples.Utils.GetDataDir(S... | mit | C# |
1379d1bef83bf8f188e770d07e3a3d899b278b66 | remove really odd utf character at the front of this class | intari/OpenSimMirror,N3X15/VoxelSim,cdbean/CySim,intari/OpenSimMirror,ft-/arribasim-dev-tests,ft-/arribasim-dev-extras,cdbean/CySim,QuillLittlefeather/opensim-1,ft-/opensim-optimizations-wip-extras,AlphaStaxLLC/taiga,TomDataworks/opensim,Michelle-Argus/ArribasimExtract,AlphaStaxLLC/taiga,M-O-S-E-S/opensim,justinccdev/o... | OpenSim/Data/AssetDataBase.cs | OpenSim/Data/AssetDataBase.cs | using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;
using OpenSim.Framework;
namespace OpenSim.Data
{
public abstract class AssetDataBase : IAssetProvider
{
public abstract AssetBase FetchAsset(LLUUID uuid);
public abstract void CreateAsset(AssetBase asset);
... | using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;
using OpenSim.Framework;
namespace OpenSim.Data
{
public abstract class AssetDataBase : IAssetProvider
{
public abstract AssetBase FetchAsset(LLUUID uuid);
public abstract void CreateAsset(AssetBase asset);... | bsd-3-clause | C# |
f3f5fb1df3dc028cc33fd25caea9f691a6b3c98d | Remove unnecessary whitespace | setchi/FancyScrollView | Assets/FancyScrollView/Examples/Sources/08_GridView/FancyGridView.cs | Assets/FancyScrollView/Examples/Sources/08_GridView/FancyGridView.cs | using UnityEngine;
namespace FancyScrollView.Example08
{
public class FancyGridView : FancyGridView<ItemData, Context>
{
[SerializeField] int columnCount = 3;
[SerializeField] Cell cellPrefab = default;
[SerializeField] Row rowPrefab = default;
protected override FancyScrollVi... | using UnityEngine;
namespace FancyScrollView.Example08
{
public class FancyGridView : FancyGridView<ItemData, Context>
{
[SerializeField] int columnCount = 3;
[SerializeField] Cell cellPrefab = default;
[SerializeField] Row rowPrefab = default;
protected override FancyScrollVi... | mit | C# |
d697a397dbf5448fc3d36a33ed7b179d104bdae6 | test commit | s08cz1/DeveloperMeetup | DeveloperMeetup.root/DeveloperMeetup/Controllers/ValuesController.cs | DeveloperMeetup.root/DeveloperMeetup/Controllers/ValuesController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace DeveloperMeetup.Controllers
{
[Route("api/[controller]")]
public class ValuesController : Controller
{
// GET api/values
[HttpGet]
public IEnum... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace DeveloperMeetup.Controllers
{
[Route("api/[controller]")]
public class ValuesController : Controller
{
// GET api/values
[HttpGet]
public IEnum... | mit | C# |
b439a4f8ba6c8e0bdc609a34c9cc7dfb820ac0cb | Remove GetMatchingLanguages_LanguageIsInMultipleCountries_JustTellHowMany test | ermshiperete/libpalaso,sillsdev/libpalaso,mccarthyrb/libpalaso,JohnThomson/libpalaso,gtryus/libpalaso,ermshiperete/libpalaso,darcywong00/libpalaso,chrisvire/libpalaso,ddaspit/libpalaso,hatton/libpalaso,glasseyes/libpalaso,ermshiperete/libpalaso,andrew-polk/libpalaso,darcywong00/libpalaso,sillsdev/libpalaso,gmartin7/lib... | PalasoUIWindowsForms.Tests/WritingSystems/LookupIsoCodeModelTests.cs | PalasoUIWindowsForms.Tests/WritingSystems/LookupIsoCodeModelTests.cs | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Windows.Forms;
using System.Text;
using NUnit.Framework;
using Palaso.WritingSystems;
using Palaso.UI.WindowsForms.WritingSystems;
namespace PalasoUIWindowsForms.Tests.Writ... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Windows.Forms;
using System.Text;
using NUnit.Framework;
using Palaso.WritingSystems;
using Palaso.UI.WindowsForms.WritingSystems;
namespace PalasoUIWindowsForms.Tests.Writ... | mit | C# |
64b7dd0d45a2c9adf458dd9a1942bbd6c0f8056c | Add nothing | Pesh2003/MyFirstDemoInGitHub | HelloSharp/ThisTimeHello/Program.cs | HelloSharp/ThisTimeHello/Program.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ThisTimeHello
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Helo Melo :)");
Console.WriteLine("Add another feature to t... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ThisTimeHello
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Helo Melo :)");
Console.WriteLine("Add another feature to t... | mit | C# |
5a3927951c08cbd2ac5babb0789b9652a4904a03 | remove not needed #if directives - AnalyticsServices | RadicalFx/radical | src/Radical/AnalyticsService.cs | src/Radical/AnalyticsService.cs | using System;
using System.Security.Principal;
using System.Threading;
namespace Radical
{
namespace ComponentModel
{
public interface IAnalyticsServices
{
Boolean IsEnabled { get; set; }
void TrackUserActionAsync(Analytics.AnalyticsEvent action);
}
}
n... | using System;
using System.Security.Principal;
using System.Threading;
namespace Radical
{
namespace ComponentModel
{
public interface IAnalyticsServices
{
Boolean IsEnabled { get; set; }
void TrackUserActionAsync(Analytics.AnalyticsEvent action);
}
}
n... | mit | C# |
e673be4e911f7dbe499b7f043250e1863c6699eb | Add TestResult to example | irfanah/pickles,irfanah/pickles,blorgbeard/pickles,irfanah/pickles,irfanah/pickles,picklesdoc/pickles,magicmonty/pickles,dirkrombauts/pickles,magicmonty/pickles,ludwigjossieaux/pickles,ludwigjossieaux/pickles,dirkrombauts/pickles,magicmonty/pickles,blorgbeard/pickles,picklesdoc/pickles,blorgbeard/pickles,ludwigjossieau... | src/Pickles/Pickles/ObjectModel/Example.cs | src/Pickles/Pickles/ObjectModel/Example.cs | #region License
/*
Copyright [2011] [Jeffrey Cameron]
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 applica... | #region License
/*
Copyright [2011] [Jeffrey Cameron]
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 applica... | apache-2.0 | C# |
00e703b8ac24c848969aabe5c22a8b1053909698 | add Clear function to reuse instances | spriest487/spacetrader-utils | SubmeshTextureMap.cs | SubmeshTextureMap.cs | using System.Collections.Generic;
using UnityEngine;
namespace SpaceTrader.Util {
public class SubmeshTextureMap {
private readonly Dictionary<Texture2D, int> submeshByTexture;
private readonly List<Texture2D> textures;
public IReadOnlyList<Texture2D> Textures => this.textures;
p... | using System.Collections.Generic;
using UnityEngine;
namespace SpaceTrader.Util {
public class SubmeshTextureMap {
private readonly Dictionary<Texture2D, int> textureSubmeshes;
private List<Texture2D> textures;
public IReadOnlyList<Texture2D> Textures => this.textures;
private in... | mit | C# |
d9d25b72656d2b88f69d0707006ea44434c54415 | Make the deployments wait until the server is ready. | jacksonh/MCloud,jacksonh/MCloud | src/MultiStepDeployment.cs | src/MultiStepDeployment.cs |
using System;
using System.Collections;
using System.Collections.Generic;
namespace MCloud {
public class MultiStepDeployment : Deployment, IEnumerable {
public MultiStepDeployment ()
{
Steps = new List<Deployment> ();
}
public List<Deployment> Steps {
get;
private set;
}
public void Add (D... |
using System;
using System.Collections;
using System.Collections.Generic;
namespace MCloud {
public class MultiStepDeployment : Deployment, IEnumerable {
public MultiStepDeployment ()
{
Steps = new List<Deployment> ();
}
public List<Deployment> Steps {
get;
private set;
}
public void Add (D... | mit | C# |
27574e89f066253ec9bf4280b187ed1b44d8aff1 | Update QueryableExtensions.cs | keith-hall/Extensions,keith-hall/Extensions | src/QueryableExtensions.cs | src/QueryableExtensions.cs | using System;
using System.Collections.Generic;
using System.Linq;
namespace HallLibrary.Extensions
{
/// <summary>
/// Contains static methods for working with queryables.
/// </summary>
public static class QueryableExtensions
{
/// <summary>
/// Returns a single value from the specified <paramref name="quer... | using System;
using System.Collections.Generic;
using System.Linq;
namespace HallLibrary.Extensions
{
/// <summary>
/// Contains static methods for working with queryables.
/// </summary>
public static class QueryableExtensions
{
/// <summary>
/// Returns a single value from the specified <paramref name="quer... | apache-2.0 | C# |
842004e0484ae0752e848852150bdb3dbc8e7872 | Update StringExtensions class (#115) | tjscience/RoboSharp,tjscience/RoboSharp | RoboSharp/StringExtensions.cs | RoboSharp/StringExtensions.cs | namespace RoboSharp
{
/// <summary>
/// Static Class - Houses Extension Methods for strings
/// </summary>
internal static class StringExtensions
{
/// <remarks> Extension method provided by RoboSharp package </remarks>
/// <inheritdoc cref="System.String.IsNullOrWhiteSpace(string)"... | namespace RoboSharp
{
public static class StringExtensions
{
public static bool IsNullOrWhiteSpace(this string value)
{
if (value == null)
{
return true;
}
return string.IsNullOrEmpty(value.Trim());
}
}
}
| mit | C# |
1798c27884961e903805a89322287cdd39982797 | add back referenced to user account to get implicit cascade delete | vinneyk/BrockAllen.MembershipReboot,eric-swann-q2/BrockAllen.MembershipReboot,tomascassidy/BrockAllen.MembershipReboot,rvdkooy/BrockAllen.MembershipReboot,brockallen/BrockAllen.MembershipReboot,DosGuru/MembershipReboot,rajendra1809/BrockAllen.MembershipReboot,vankooch/BrockAllen.MembershipReboot | BrockAllen.MembershipReboot/Models/UserClaim.cs | BrockAllen.MembershipReboot/Models/UserClaim.cs | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BrockAllen.MembershipReboot
{
public class UserClaim
{
[Key]
public vir... | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BrockAllen.MembershipReboot
{
public class UserClaim
{
[Key]
public vir... | bsd-3-clause | C# |
f4479808ac4f50ca9ab8ce608ab9f2176067a09c | Add implementation for change tracking. | AlexGhiondea/SmugMug.NET | src/SmugMugModel.v2/Types/SmugMugEntity.cs | src/SmugMugModel.v2/Types/SmugMugEntity.cs | // Copyright (c) Alex Ghiondea. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Collections.Generic;
using System.Diagnostics;
namespace SmugMug.v2.Types
{
public class SmugMugEntity
{
private Dictionary<string, ob... | // Copyright (c) Alex Ghiondea. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace SmugMug.v2.Types
{
public class SmugMugEntity
{
protected void NotifyPropertyValueChanged(string name, object value)
{
}... | mit | C# |
1913ea9c0faf86929822c0596ce3f246a340104e | Remove uniqueness constraint from DbUser.Email | samcook/AspNet.Identity.Shaolinq | AspNet.Identity.Shaolinq/DataModel/DbUser.cs | AspNet.Identity.Shaolinq/DataModel/DbUser.cs | using System;
using AspNet.Identity.Shaolinq.DataModel.Interfaces;
using Shaolinq;
namespace AspNet.Identity.Shaolinq.DataModel
{
[DataAccessObject(Name = "User")]
public abstract class DbUser : DataAccessObject<Guid>, IShaolinqIdentityDbUser<Guid>
{
[Index(Unique = true)]
[PersistedMember]
public abstract s... | using System;
using AspNet.Identity.Shaolinq.DataModel.Interfaces;
using Shaolinq;
namespace AspNet.Identity.Shaolinq.DataModel
{
[DataAccessObject(Name = "User")]
public abstract class DbUser : DataAccessObject<Guid>, IShaolinqIdentityDbUser<Guid>
{
[Index(Unique = true)]
[PersistedMember]
public abstract s... | mit | C# |
20409615cccbf1a041d422ade05ca77f32abeace | Add flag to know if the package is bundled or not. | NaosFramework/Naos.Deployment,NaosProject/Naos.Deployment | Naos.Deployment.Contract/Package.cs | Naos.Deployment.Contract/Package.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="Package.cs" company="Naos">
// Copyright 2015 Naos
// </copyright>
// -----------------------------------------------------------------------------------------------------------... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="Package.cs" company="Naos">
// Copyright 2015 Naos
// </copyright>
// -----------------------------------------------------------------------------------------------------------... | mit | C# |
59c4602eb956125b1e492432b908fc26ff1a44f4 | Update Name column for linking to the edit view | Neurothustra/ProductGrid,Neurothustra/ProductGrid,Neurothustra/ProductGrid | ProductGrid/Views/Home/Index.cshtml | ProductGrid/Views/Home/Index.cshtml | @model IEnumerable<ProductGrid.Models.Product>
@{
ViewBag.Title = "Index";
//WebGrid displays data on a web page using an HTML table element.
//In this instance, I've provided the constructor with a couple of arguments: Model is obviously the data object,
//ajaxUpdateContainerId looks in the DOM for t... | @model IEnumerable<ProductGrid.Models.Product>
@{
ViewBag.Title = "Index";
//WebGrid displays data on a web page using an HTML table element.
//In this instance, I've provided the constructor with a couple of arguments: Model is obviously the data object,
//ajaxUpdateContainerId looks in the DOM for t... | mit | C# |
6fdc825a5ca65df8be907ee784de256c5d81dcf5 | stop using webservice as a singleton - it should be possible to do multiple fetch requests at once | mgj/MvvmCross-Plugins,mgj/MvvmCross-Plugins | Fetcher/artm.MvxPlugins.Fetcher.Touch/Plugin.cs | Fetcher/artm.MvxPlugins.Fetcher.Touch/Plugin.cs | using MvvmCross.Platform.Plugins;
using MvvmCross.Platform;
using artm.Fetcher.Core.Services;
using artm.Fetcher.Touch.Services;
using SQLite.Net;
using SQLite.Net.Platform.XamarinIOS;
using System.Threading.Tasks;
namespace artm.MvxPlugins.Fetcher.Touch
{
public class Plugin : IMvxPlugin
{
public voi... | using MvvmCross.Platform.Plugins;
using MvvmCross.Platform;
using artm.Fetcher.Core.Services;
using artm.Fetcher.Touch.Services;
using SQLite.Net;
using SQLite.Net.Platform.XamarinIOS;
using System.Threading.Tasks;
namespace artm.MvxPlugins.Fetcher.Touch
{
public class Plugin : IMvxPlugin
{
public voi... | apache-2.0 | C# |
bf83bdbc95c2c534c9bf15ec2a895802d48684e2 | Switch back to hello world example, | tiesmaster/DCC,tiesmaster/DCC | Dcc/Startup.cs | Dcc/Startup.cs | using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
namespace Tiesmaster.Dcc
{
public class Startup
{
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF... | using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Logging;
namespace Tiesmaster.Dcc
{
public class Startup
{
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddCon... | mit | C# |
a1d539af8085e9468a28187a09d9315b17ea1c60 | optimize filter condition for DependencyContextAssemblyFinder | serilog/serilog-settings-configuration | src/Serilog.Settings.Configuration/Settings/Configuration/Assemblies/DependencyContextAssemblyFinder.cs | src/Serilog.Settings.Configuration/Settings/Configuration/Assemblies/DependencyContextAssemblyFinder.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Microsoft.Extensions.DependencyModel;
namespace Serilog.Settings.Configuration.Assemblies
{
sealed class DependencyContextAssemblyFinder : AssemblyFinder
{
readonly DependencyContext _dependencyContext;
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Microsoft.Extensions.DependencyModel;
namespace Serilog.Settings.Configuration.Assemblies
{
sealed class DependencyContextAssemblyFinder : AssemblyFinder
{
readonly DependencyContext _dependencyContext;
... | apache-2.0 | C# |
793ef33e27ec19b4e153ed3441c178af1d5000fe | Add placeholder for agent config | zanetdev/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,pranavkm/Glimpse.Prototype,Glimpse/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,Glimpse/Glimpse.Prototype,Glimpse/Glimpse.Prototype,zanetdev/Glimpse.Prototype,zanetdev/Glimpse.Prototype,Glimpse/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,pranavkm/Gl... | src/Glimpse.Agent.AspNet.Sample/Startup.cs | src/Glimpse.Agent.AspNet.Sample/Startup.cs | using Glimpse.Agent.Web;
using Microsoft.AspNet.Builder;
using Glimpse.Host.Web.AspNet;
using Microsoft.Framework.DependencyInjection;
namespace Glimpse.Agent.AspNet.Sample
{
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddGlimpse()
... | using Microsoft.AspNet.Builder;
using Glimpse.Host.Web.AspNet;
using Microsoft.Framework.DependencyInjection;
namespace Glimpse.Agent.AspNet.Sample
{
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddGlimpse()
.RunningAg... | mit | C# |
bf3c8c71cc08a040b77578bb061784d96062ed47 | Fix Missing magic extension and max version of decoder | dacucar/fenixlib | FenixLib/FenixLib/IO/DivFilePaletteDecoder.cs | FenixLib/FenixLib/IO/DivFilePaletteDecoder.cs | /* Copyright 2016 Daro Cutillas Carrillo
*
* 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... | /* Copyright 2016 Daro Cutillas Carrillo
*
* 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... | apache-2.0 | C# |
6e7a24a1eb2d69634190c7fd61fd494e8e818c6f | Remove unused using | matsprea/AspNetIdentity_U2F,matsprea/AspNetIdentity_U2F,matsprea/AspNetIdentity_U2F | U2F/Client/Impl/CryptoImpl.cs | U2F/Client/Impl/CryptoImpl.cs | using System;
using System.Security.Cryptography;
namespace U2F.Client.Impl
{
public class CryptoImpl : ICrypto
{
public byte[] ComputeSha256(String message)
{
try
{
var mySHA256 = SHA256Cng.Create();
var hash = mySHA256.ComputeHash(message.GetBytes());
return hash;
}
catch (Exception e)... | using System;
using System.Security.Cryptography;
using Newtonsoft.Json.Linq;
namespace U2F.Client.Impl
{
public class CryptoImpl : ICrypto
{
public byte[] ComputeSha256(String message)
{
try
{
var mySHA256 = SHA256Cng.Create();
var hash = mySHA256.ComputeHash(message.GetBytes());
return hash;... | apache-2.0 | C# |
4e302fb0b652fce5ff08e874a2026f29cb35d2bc | refactor snapshots save+load tests | Pondidum/Ledger.Stores.Fs,Pondidum/Ledger.Stores.Fs | Ledger.Stores.Fs.Tests/SnapshotSaveLoadTests.cs | Ledger.Stores.Fs.Tests/SnapshotSaveLoadTests.cs | using System;
using System.IO;
using Shouldly;
using TestsDomain;
using Xunit;
namespace Ledger.Stores.Fs.Tests
{
public class SnapshotSaveLoadTests : IDisposable
{
private readonly string _root;
private readonly FileEventStore<Guid> _store;
public SnapshotSaveLoadTests()
{
_root = Path.Combine(Path.Get... | using System;
using System.IO;
using Shouldly;
using TestsDomain;
using Xunit;
namespace Ledger.Stores.Fs.Tests
{
public class SnapshotSaveLoadTests : IDisposable
{
private readonly string _root;
public SnapshotSaveLoadTests()
{
_root = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
Dire... | lgpl-2.1 | C# |
3cef1ad91d041d8ae6cb2eab25151c3959ef6054 | Clean up ModMonoConfig | stormleoxia/xsp,stormleoxia/xsp,arthot/xsp,stormleoxia/xsp,stormleoxia/xsp,murador/xsp,murador/xsp,murador/xsp,arthot/xsp,arthot/xsp,arthot/xsp,murador/xsp | src/Mono.WebServer.Apache/ModMonoConfig.cs | src/Mono.WebServer.Apache/ModMonoConfig.cs | //
// Mono.WebServer.ModMonoConfig
//
// Authors:
// Daniel Lopez Ridruejo
// Gonzalo Paniagua Javier
//
// Copyright (c) 2002 Daniel Lopez Ridruejo.
// (c) 2002,2003 Ximian, Inc.
// All rights reserved.
// (C) Copyright 2004-2010 Novell, Inc. (http://www.novell.com)
//
// Permission is hereby gran... | //
// Mono.WebServer.ModMonoConfig
//
// Authors:
// Daniel Lopez Ridruejo
// Gonzalo Paniagua Javier
//
// Copyright (c) 2002 Daniel Lopez Ridruejo.
// (c) 2002,2003 Ximian, Inc.
// All rights reserved.
// (C) Copyright 2004-2010 Novell, Inc. (http://www.novell.com)
//
// Permission is hereby gran... | mit | C# |
ea3b44111bd3bf4f997aedd8e8295535c9c18523 | fix fallback phase not recognized bug | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | HiddenWallet/ChaumianCoinJoin/TumblerPhase.cs | HiddenWallet/ChaumianCoinJoin/TumblerPhase.cs | using System;
using System.Collections.Generic;
using System.Text;
namespace HiddenWallet.ChaumianCoinJoin
{
public enum TumblerPhase
{
InputRegistration,
ConnectionConfirmation,
OutputRegistration,
Signing,
}
public static class TumblerPhaseHelpers
{
public static TumblerPhase GetTumblerPhase(s... | using System;
using System.Collections.Generic;
using System.Text;
namespace HiddenWallet.ChaumianCoinJoin
{
public enum TumblerPhase
{
InputRegistration,
ConnectionConfirmation,
OutputRegistration,
Signing,
}
public static class TumblerPhaseHelpers
{
public static TumblerPhase GetTumblerPhase(s... | mit | C# |
e6f9009549980b185913b5c9fcd6bc9fffbd51da | Remove VerifyMessage extension (implemented in NBitcoin) | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | HiddenWallet/Extensions/NBitcoinExtensions.cs | HiddenWallet/Extensions/NBitcoinExtensions.cs | using HiddenWallet.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace NBitcoin
{
public static class NBitcoinExtensions
{
public static ChainedBlock GetBlock(this ConcurrentChain me, Height height)
=> me.GetBlock(height.Value);
public static string ToHe... | using HiddenWallet.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace NBitcoin
{
public static class NBitcoinExtensions
{
public static ChainedBlock GetBlock(this ConcurrentChain me, Height height)
=> me.GetBlock(height.Value);
public static string ToHe... | mit | C# |
c9847c05487b8b381fcff9558a3c49a1c9c852b6 | Bump version | canton7/SyncTrayzor,canton7/SyncTrayzor,canton7/SyncTrayzor | src/SyncTrayzor/Properties/AssemblyInfo.cs | src/SyncTrayzor/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated ... | using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated ... | mit | C# |
547b679c01ab4117107bacd34edbbe106e5f6570 | Remove this | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet | WalletWasabi.Gui/MainWindow.xaml.cs | WalletWasabi.Gui/MainWindow.xaml.cs | using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace WalletWasabi.Gui
{
internal class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
this.AttachDevTools();
//Renderer.DrawFps = true;
//Renderer.DrawDirtyRects = Renderer.DrawFps = true;
}
private vo... | using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace WalletWasabi.Gui
{
internal class MainWindow : Window
{
public MainWindow()
{
this.InitializeComponent();
this.AttachDevTools();
//Renderer.DrawFps = true;
//Renderer.DrawDirtyRects = Renderer.DrawFps = true;
}
priva... | mit | C# |
8367e58500937241b0a4738216b35e8c8757efb1 | Rename tests to reflect recent naming changes. | hahmed/octokit.net,shana/octokit.net,M-Zuber/octokit.net,SamTheDev/octokit.net,forki/octokit.net,shiftkey/octokit.net,gabrielweyer/octokit.net,cH40z-Lord/octokit.net,ivandrofly/octokit.net,chunkychode/octokit.net,yonglehou/octokit.net,takumikub/octokit.net,khellang/octokit.net,ChrisMissal/octokit.net,daukantas/octokit.... | Nocto.Tests.Integration/UsersEndpointTests.cs | Nocto.Tests.Integration/UsersEndpointTests.cs | using System;
using System.Threading.Tasks;
using Xunit;
namespace Nocto.Tests.Integration
{
public class UsersEndpointTests
{
public class TheGetMethod
{
[Fact]
public async Task ReturnsSpecifiedUser()
{
var github = new GitHubClient { Login... | using System;
using System.Threading.Tasks;
using Xunit;
namespace Nocto.Tests.Integration
{
public class UsersEndpointTests
{
public class TheGetUserAsyncMethod
{
[Fact]
public async Task ReturnsSpecifiedUser()
{
var github = new GitHubClien... | mit | C# |
d8f193a544ae7dd01e892b8cba3ac41c66aa3517 | Fix license | ppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ppy/osu-framework,Tom94/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,DrabWeb/osu-framework,DrabWeb/osu-framework,Tom94/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,DrabWeb/osu-fr... | osu.Framework/Allocation/CacheInfo.cs | osu.Framework/Allocation/CacheInfo.cs | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using System;
using osu.Framework.Extensions.TypeExtensions;
namespace osu.Framework.Allocation
{
public struct CacheInfo
{
/// <summary>
... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using osu.Framework.Extensions.TypeExtensions;
namespace osu.Framework.Allocation
{
public struct CacheInfo
{
/// <summary>
/// Th... | mit | C# |
db6a157a902c2e74ece109cde26eb75bbbd2d38c | Update ILocalizationContext.cs | tiksn/TIKSN-Framework | TIKSN.Core/Localization/ILocalizationContext.cs | TIKSN.Core/Localization/ILocalizationContext.cs | using System.Collections.Generic;
using System.Globalization;
namespace TIKSN.Localization
{
public interface ILocalizationContext
{
IReadOnlyCollection<CultureInfo> SupportedCultures { get; }
}
}
| using System.Collections.Generic;
using System.Globalization;
namespace TIKSN.Localization
{
public interface ILocalizationContext
{
IReadOnlyCollection<CultureInfo> SupportedCultures { get; }
}
} | mit | C# |
213a43af220679a9562e0909c6739feddaa961cb | Fix warning CA2208: provide a message to exception | fareloz/AttachToolbar | EngineType.cs | EngineType.cs | using System;
using System.Reflection;
namespace AttachToolbar
{
public enum EngineType
{
[EngineName("Native")]
Native = 1,
[EngineName("Managed")]
Managed = 2,
[EngineName("Managed/Native")]
Both = 3
}
public static class AttachEngineTypeConverter
... | using System;
using System.Reflection;
namespace AttachToolbar
{
public enum EngineType
{
[EngineName("Native")]
Native = 1,
[EngineName("Managed")]
Managed = 2,
[EngineName("Managed/Native")]
Both = 3
}
public static class AttachEngineTypeConverter
... | mit | C# |
acff802524d2fdffcbc480812da8ed5f7630cbf2 | Add on click omni towers behavior | hay-espacio-en-el-taco/Alerta-Minerva,lordzero0000/Alerta-Minerva | Assets/Scripts/Torres/OmniDirectionalTower.cs | Assets/Scripts/Torres/OmniDirectionalTower.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class OmniDirectionalTower : MonoBehaviour {
public Collider attackObject;
public GameObject spawnPoint;
public float maxScale = 2;
public float Speed = 1;
private GameObject currentWave = null;
private Vect... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class OmniDirectionalTower : MonoBehaviour {
public Collider attackObject;
public GameObject spawnPoint;
public float maxScale = 2;
public float Speed = 1;
private GameObject currentWave = null;
private Vect... | mit | C# |
cd343a7a727c58faa6dc71adb10aa31756ca2867 | Revert "fix(logging): 🐛 try alt AppInsights IKey init" | collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists,collinbarrett/FilterLists | services/SharedKernel/FilterLists.SharedKernel.Logging/HostRunner.cs | services/SharedKernel/FilterLists.SharedKernel.Logging/HostRunner.cs | using System;
using System.Threading.Tasks;
using Microsoft.ApplicationInsights;
using Microsoft.ApplicationInsights.Extensibility;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Serilog;
namespace FilterLists.SharedKernel.Logging
{
public static class HostRunner
{
... | using System;
using System.Threading.Tasks;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Serilog;
namespace FilterLists.SharedKernel.Logging
{
public static class HostRunner
{
public static async Task TryRunWithLogg... | mit | C# |
82b882dbc4b3d7ba8e40055455b2478a46a99dd1 | Remove mikelovesrobots from PlayerOptions | mikelovesrobots/daft-pong,mikelovesrobots/daft-pong | app/Assets/Scripts/PlayerOptions.cs | app/Assets/Scripts/PlayerOptions.cs | using UnityEngine;
using System.Collections;
public class PlayerOptions {
public static Color Color = new Color(122f/255f, 196f/255f, 205f/255f, 9f/255f);
public static string Name = "";
}
| using UnityEngine;
using System.Collections;
public class PlayerOptions {
public static Color Color = new Color(122f/255f, 196f/255f, 205f/255f, 9f/255f);
public static string Name = "mikelovesrobots";
}
| mit | C# |
297c1a033e52794af4362f5562bf6475329526eb | change version | idoku/EChartsSDK,idoku/EChartsSDK,idoku/EChartsSDK | EChartsSDK/ECharts/Properties/AssemblyInfo.cs | EChartsSDK/ECharts/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | mit | C# |
1603c83efc83e1aff53ba0e14cddb09ae9beed1e | refactor to cover more of the machine and be more explanatory | Pondidum/Finite,Pondidum/Finite | Finite.Tests/Acceptance/LightsStateMachine.cs | Finite.Tests/Acceptance/LightsStateMachine.cs | using System.Linq;
using Finite.StateProviders;
using Finite.Tests.Acceptance.States;
using Shouldly;
using Xunit;
namespace Finite.Tests.Acceptance
{
public class LightsStateMachineAcceptanceTest
{
public StateMachine<LightsSwitches> Machine { get; private set; }
public LightsStateMachineAcceptanceTest()
{
... | using System.Linq;
using Finite.StateProviders;
using Finite.Tests.Acceptance.States;
using Shouldly;
using Xunit;
namespace Finite.Tests.Acceptance
{
public class LightsStateMachine
{
[Fact]
public void Configuring_the_machine()
{
var allStates = new State<LightsSwitches>[]
{
new LightOff(),
ne... | lgpl-2.1 | C# |
054c8c5612e176bf0eec9abf36adc327dcf4b580 | Update Constants.cs | maikebing/GitLab.VisualStudio | src/GitLab.VisualStudio/Constants.cs | src/GitLab.VisualStudio/Constants.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GitLab.VisualStudio
{
static class PackageGuids
{
public const string guidGitLabPkgString = "54803a44-49e0-4935-bba4-7d7d91682273";
public const string guidO... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GitLab.VisualStudio
{
static class PackageGuids
{
public const string guidGitLabPkgString = "54803a44-49e0-4935-bba4-7d7d91682273";
public const string guidO... | mit | C# |
99220420abf0f0bbae55a3e5497537eeb036d1e0 | update version number | klnkr/EnsageSharp | AutoDeward/AutoDeward/Properties/AssemblyInfo.cs | AutoDeward/AutoDeward/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("Au... | 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("Au... | mit | C# |
fbe8980cbe52b815dd160518078e8e5e9e59ec1d | rename node to key | xirqlz/blueprint41 | Blueprint41/Neo4j/Refactoring/IRefactorEntity.cs | Blueprint41/Neo4j/Refactoring/IRefactorEntity.cs | using System;
using System.Dynamic;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using Blueprint41.Dynamic;
namespace Blueprint41.Neo4j.Refactoring
{
public interface IRefactorEntity
{
/// <summary>
///
/// </summary>
... | using System;
using System.Dynamic;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using Blueprint41.Dynamic;
namespace Blueprint41.Neo4j.Refactoring
{
public interface IRefactorEntity
{
/// <summary>
///
/// </summary>
... | mit | C# |
4b1a293eb5652a915e39832fcfcdac79ce756915 | Fix #57 | secana/PeNet | src/PEditor/TabItems/Imports.xaml.cs | src/PEditor/TabItems/Imports.xaml.cs | using System.Collections.Generic;
using System.Linq;
using System.Windows.Controls;
using PeNet;
namespace PEditor.TabItems
{
/// <summary>
/// Interaction logic for Imports.xaml
/// </summary>
public partial class Imports : UserControl
{
private PeFile _peFile;
public Imports()
... | using System.Collections.Generic;
using System.Linq;
using System.Windows.Controls;
using PeNet;
namespace PEditor.TabItems
{
/// <summary>
/// Interaction logic for Imports.xaml
/// </summary>
public partial class Imports : UserControl
{
private PeFile _peFile;
public Imports()
... | apache-2.0 | C# |
01ca9ea40599dd478cbb352465e8c81af3bb6435 | Remove specific references to .sln files. | AmadeusW/SourceBrowser,CodeConnect/SourceBrowser,AmadeusW/SourceBrowser,AmadeusW/SourceBrowser,CodeConnect/SourceBrowser | src/SourceBrowser.Samples/Program.cs | src/SourceBrowser.Samples/Program.cs | using System;
using System.IO;
using SourceBrowser.Generator;
namespace SourceBrowser.Samples
{
class Program
{
static void Main(string[] args)
{
// Combined with, or replaced by, provided paths to create absolute paths
string userProfilePath = Environment.GetFolderPath... | using System;
using System.IO;
using SourceBrowser.Generator;
namespace SourceBrowser.Samples
{
class Program
{
static void Main(string[] args)
{
// Combined with, or replaced by, provided paths to create absolute paths
string userProfilePath = Environment.GetFolderPath... | mit | C# |
a7c15f3d0de12a82c7dade3c8ef88770dee81aef | remove redundant teardown handling from CurrentScenario | modulexcite/xbehave.net,hitesh97/xbehave.net,hitesh97/xbehave.net,adamralph/xbehave.net,modulexcite/xbehave.net,mvalipour/xbehave.net,xbehave/xbehave.net,mvalipour/xbehave.net | src/Xbehave.2/Sdk/CurrentScenario.cs | src/Xbehave.2/Sdk/CurrentScenario.cs | // <copyright file="CurrentScenario.cs" company="xBehave.net contributors">
// Copyright (c) xBehave.net contributors. All rights reserved.
// </copyright>
namespace Xbehave.Sdk
{
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
public static class CurrentScena... | // <copyright file="CurrentScenario.cs" company="xBehave.net contributors">
// Copyright (c) xBehave.net contributors. All rights reserved.
// </copyright>
namespace Xbehave.Sdk
{
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
public static class CurrentScena... | mit | C# |
0d0179cb476450b4c580efb95f5c6b785270e3e1 | Use constants in upgrade migration | abryukhov/Umbraco-CMS,madsoulswe/Umbraco-CMS,abjerner/Umbraco-CMS,marcemarc/Umbraco-CMS,dawoe/Umbraco-CMS,abjerner/Umbraco-CMS,rasmuseeg/Umbraco-CMS,WebCentrum/Umbraco-CMS,tcmorris/Umbraco-CMS,tompipe/Umbraco-CMS,arknu/Umbraco-CMS,dawoe/Umbraco-CMS,robertjf/Umbraco-CMS,NikRimington/Umbraco-CMS,KevinJump/Umbraco-CMS,mar... | src/Umbraco.Core/Persistence/Migrations/Upgrades/TargetVersionSevenFourteenZero/UpdateMemberGroupPickerData.cs | src/Umbraco.Core/Persistence/Migrations/Upgrades/TargetVersionSevenFourteenZero/UpdateMemberGroupPickerData.cs | using Umbraco.Core.Logging;
using Umbraco.Core.Persistence.SqlSyntax;
namespace Umbraco.Core.Persistence.Migrations.Upgrades.TargetVersionSevenFourteenZero
{
/// <summary>
/// Migrates member group picker properties from NVarchar to NText. See https://github.com/umbraco/Umbraco-CMS/issues/3268.
/// </summ... | using Umbraco.Core.Logging;
using Umbraco.Core.Persistence.SqlSyntax;
namespace Umbraco.Core.Persistence.Migrations.Upgrades.TargetVersionSevenFourteenZero
{
/// <summary>
/// Migrates member group picker properties from NVarchar to NText. See https://github.com/umbraco/Umbraco-CMS/issues/3268.
/// </summ... | mit | C# |
33cefc3273b5510a83a3af4368923142babd5334 | Use .NET 6. | FacilityApi/FacilityJavaScript,FacilityApi/FacilityJavaScript,FacilityApi/FacilityCSharp,FacilityApi/Facility,FacilityApi/FacilityJavaScript | tools/Build/Build.cs | tools/Build/Build.cs | using Faithlife.Build;
using static Faithlife.Build.BuildUtility;
using static Faithlife.Build.DotNetRunner;
return BuildRunner.Execute(args, build =>
{
var codegen = "fsdgen___";
var gitLogin = new GitLoginInfo("FacilityApiBot", Environment.GetEnvironmentVariable("BUILD_BOT_PASSWORD") ?? "");
var dotNetBuildSett... | using Faithlife.Build;
using static Faithlife.Build.BuildUtility;
using static Faithlife.Build.DotNetRunner;
return BuildRunner.Execute(args, build =>
{
var codegen = "fsdgen___";
var gitLogin = new GitLoginInfo("FacilityApiBot", Environment.GetEnvironmentVariable("BUILD_BOT_PASSWORD") ?? "");
var dotNetBuildSett... | mit | C# |
b33411e3345ec0cd25c32749a172c2cdaacc7096 | Add missing using for UWP | thomasgalliker/ValueConverters.NET | ValueConverters.Shared/ValueConverterGroup.cs | ValueConverters.Shared/ValueConverterGroup.cs | using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
#if (NETFX || WINDOWS_PHONE)
using System.Windows;
using System.Windows.Data;
using System.Windows.Markup;
#elif (NETFX_CORE)
using Windows.UI.Xaml;
using Windows.UI.Xaml.Data;
#elif (XAMARIN)
using Xamarin.Forms;
#endif
n... | using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
#if (NETFX || WINDOWS_PHONE)
using System.Windows.Data;
using System.Windows.Markup;
#elif (NETFX_CORE)
using Windows.UI.Xaml;
using Windows.UI.Xaml.Markup;
#elif (XAMARIN)
using Xamarin.Forms;
#endif
namespace ValueConver... | mit | C# |
ddf765ac95b916b30285de5b94ce0909ea5e3843 | add some basic details about bank transactions | arrowflex/FreeAgent | src/FreeAgent/Model/BankTransactionExplanation.cs | src/FreeAgent/Model/BankTransactionExplanation.cs | using System;
using System.Collections.Generic;
namespace FreeAgent.Model
{
public class BankTransactionExplanation : IUrl
{
public Uri Url { get; set; }
public Uri BankAccount { get; set; } //TODO - accoutn or transaction when creating
public Uri BankTransaction { get; set; }
publ... | using System;
using System.Collections.Generic;
namespace FreeAgent.Model
{
public class BankTransactionExplanation : IUrl
{
public Uri Url { get; set; }
}
public class BankTransactionExplanationWrapper
{
public BankTransactionExplanation BankTransactionExplanation { get; set; }
public List<... | apache-2.0 | C# |
12ca870b74e3883ccc3396e32e160d239f419193 | Fix osu!catch relax mod | UselessToucan/osu,peppy/osu,smoogipoo/osu,ppy/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,smoogipoo/osu,smoogipooo/osu,peppy/osu-new,smoogipoo/osu,ppy/osu,ppy/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu | osu.Game.Rulesets.Catch/Mods/CatchModRelax.cs | osu.Game.Rulesets.Catch/Mods/CatchModRelax.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.Graphics;
using osu.Framework.Input;
using osu.Framework.Input.Bindings;
using osu.Framework.Input.Events;
using osu.Game.Rulesets.Catch.Objects;
usi... | // 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.Graphics;
using osu.Framework.Input;
using osu.Framework.Input.Bindings;
using osu.Framework.Input.Events;
using osu.Game.Rulesets.Catch.Objects;
usi... | mit | C# |
62f8eadbef9c6a395efd42fa6c3d09a4668e1696 | Update cfg to multiboot2 | zarlo/Cosmos,CosmosOS/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos,CosmosOS/Cosmos,zarlo/Cosmos | source/Cosmos.Build.Tasks/CreateGrubConfig.cs | source/Cosmos.Build.Tasks/CreateGrubConfig.cs | using System.Diagnostics;
using System.IO;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
namespace Cosmos.Build.Tasks
{
public class CreateGrubConfig: Task
{
[Required]
public string TargetDirectory { get; set; }
[Required]
public string BinName { get; set;... | using System.Diagnostics;
using System.IO;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
namespace Cosmos.Build.Tasks
{
public class CreateGrubConfig: Task
{
[Required]
public string TargetDirectory { get; set; }
[Required]
public string BinName { get; set;... | bsd-3-clause | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.