This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// <copyright file="GlobalUsings.cs" company="PlaceholderCompany"> | |
// Copyright (c) PlaceholderCompany. All rights reserved. | |
// </copyright> | |
global using System; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TITLE main.asm | |
.686P | |
.XMM | |
include listing.inc | |
.model flat | |
INCLUDELIB LIBCMT | |
INCLUDELIB OLDNAMES | |
PUBLIC _memcpy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright (c) 2014-2020, Els_kom org. | |
// https://github.com/Elskom/ | |
// All rights reserved. | |
// license: MIT, see LICENSE for more details. | |
namespace Els_kom.Controls | |
{ | |
using System; | |
using System.ComponentModel; | |
using System.Diagnostics; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CSC : warning CA1824: Mark assemblies with NeutralResourcesLanguageAttribute [C:\packages\XmlAbstraction\src\XmlAbstraction\src\XmlAbstraction.csproj] | |
CSC : warning CA1824: Mark assemblies with NeutralResourcesLanguageAttribute [C:\packages\XmlAbstraction\src\XmlAbstraction\src\XmlAbstraction.csproj] | |
CSC : warning CA1824: Mark assemblies with NeutralResourcesLanguageAttribute [C:\packages\XmlAbstraction\src\XmlAbstraction\src\XmlAbstraction.csproj] | |
CSC : warning CA1824: Mark assemblies with NeutralResourcesLanguageAttribute [C:\packages\XmlAbstraction\src\XmlAbstraction\src\XmlAbstraction.csproj] | |
CSC : warning CA1824: Mark assemblies with NeutralResourcesLanguageAttribute [C:\packages\XmlAbstraction\src\XmlAbstraction\src\XmlAbstraction.csproj] | |
CSC : warning CA1824: Mark assemblies with NeutralResourcesLanguageAttribute [C:\packages\XmlAbstraction\src\XmlAbstraction\src\XmlAbstraction.csproj] | |
C:\Users\User\.nuget\packages\coverlet.msbuild\2.8.1\build\coverlet.msbuild.targets(7,5): warning : [coverlet] BadImag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace TestImageZooming | |
{ | |
using System; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Windows.Forms; | |
using Microsoft.CodeAnalysis.CSharp.Scripting; | |
using Microsoft.CodeAnalysis.Scripting; | |
internal static class Program |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void Menu_ConvertBMP() | |
{ | |
byte[] data = FileUtil.OpenFile(out string fileName, FileFilters.BMP); | |
if (data == null) | |
return; | |
string ename = fileName.Substring(0, 5); | |
// first things first generate some stuff. | |
List<byte> fileHeader = new List<byte>(); | |
fileHeader.AddRange(BitConverter.GetBytes((short)0x1234)); | |
fileHeader.AddRange(BitConverter.GetBytes((short)1)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace GitBuildInfo | |
{ | |
/// <summary> | |
/// A MSBuild task that generates the msbuild information for an assembly. | |
/// | |
/// Note: use in the BeforeBuild target. | |
/// </summary> | |
public class GitBuildInfoGenericTask : GitBuildInfoTask | |
{ | |
/// <inheritdoc/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> | |
<PropertyGroup> | |
<TargetFrameworks>net472;netcoreapp3.0</TargetFrameworks> | |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
<ProjectGuid>{F0EE9988-DA2A-431C-9EDB-4F1A505D3030}</ProjectGuid> | |
<OutputType>WinExe</OutputType> | |
<RootNamespace>ErrorLogLister</RootNamespace> | |
<AssemblyName>ErrorLogLister</AssemblyName> |
NewerOlder