This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<PropertyGroup> | |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
<Platform Condition=" '$(Platform)' == '' ">x86</Platform> | |
<ProductVersion>3.10</ProductVersion> | |
<ProjectGuid>91e4dc15-312a-4e90-bc1c-01de5dc99447</ProjectGuid> | |
<SchemaVersion>2.0</SchemaVersion> | |
<OutputName>CoreConsoleAppSetup</OutputName> | |
<OutputType>Package</OutputType> |
This file contains hidden or 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
// | |
// InterceptionTests.m | |
// | |
// Created by Martin Ullrich on 19.07.13. | |
// Copyright (c) 2013 CSS Computer-Systems-Support GmbH. All rights reserved. | |
// | |
#import "InterceptionTests.h" | |
#import <RootKit/RootKit.h> | |
#import <objc/message.h> |
This file contains hidden or 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"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>netcoreapp1.1</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<GitBranchToReleaseLabelMapping Include="master" ReleaseLabel="rtm" /> | |
<GitBranchToReleaseLabelMapping Include="develop" ReleaseLabel="beta" /> |
This file contains hidden or 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> | |
<ItemGroup> | |
<Solution Include="*.sln" /> | |
<PublishProject Include="XXX.Mvc\XXX.Mvc.csproj" /> | |
<TestProject Include="**\*.Test*.*proj" Exclude="XXX.Tests.Shared\XXX.Tests.Shared.csproj" /> | |
</ItemGroup> | |
<Target Name="Build"> | |
<MSBuild Projects="@(Solution)" Targets="Restore" ContinueOnError="ErrorAndStop" UnloadProjectsOnCompletion="true" UseResultsCache="false" /> | |
<MSBuild Projects="@(PublishProject)" Targets="Publish" Properties="Configuration=Release" ContinueOnError="ErrorAndContinue" /> |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<!-- CONFIGURE the configurations to publish for here --> | |
<PropertyGroup> | |
<ConfigurationsToPublish>Release;CD;UAT;Customer1;Customer2</ConfigurationsToPublish> | |
</PropertyGroup> | |
<!-- CONFIGURE the web projects to publish here. --> | |
<ItemGroup> |
This file contains hidden or 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
<rule name="AutoActivate" appliesTo="Task,User Story,Feature,Bug"> | |
<![CDATA[ | |
if((string)self["System.State"] == "Active") | |
{ | |
string currentParentState = null; | |
var requirementTypeNames = new[] { "User Story", "Feature", "Epic" }; | |
if(self.HasParent() && (currentParentState = (string)self.Parent["System.State"]) != "Active") | |
{ | |
string reason; | |
if (requirementTypeNames.Contains(self.Parent.TypeName)) |
This file contains hidden or 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
#!/usr/bin/env bash | |
DOTNET_CLI_PATH="$(dirname $(which dotnet))/sdk/$(dotnet --version)" | |
export MSBuildExtensionsPath="$DOTNET_CLI_PATH/" | |
export CscToolExe="$DOTNET_CLI_PATH/Roslyn/RunCsc.sh" | |
export MSBuildSDKsPath="$DOTNET_CLI_PATH/Sdks" | |
msbuild /nologo /v:minimal "$@" |
This file contains hidden or 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
#!/bin/bash | |
SOURCE="${BASH_SOURCE[0]}" | |
SRC_DIR="$(cd -P "$(dirname "$SOURCE")"&&pwd)" | |
WORKDIR="/usr/src" | |
IMAGENAME="microsoft/aspnetcore-build" | |
COMMAND="./build.sh" | |
docker pull "$IMAGENAME" | |
docker run --rm -w "$WORKDIR" -v "$SRC_DIR":"$WORKDIR" -- "$IMAGENAME" $COMMAND |
This file contains hidden or 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> | |
<PropertyGroup> | |
<GenerateNuspecDependsOn>AddGitCommitCountToVersion;$(GenerateNuspecDependsOn)</GenerateNuspecDependsOn> | |
<!-- this is only used in NuGet 4.6.0 --> | |
<GetPackageVersionDependsOn>AddGitCommitCountToVersion;$(GetPackageVersionDependsOn)</GetPackageVersionDependsOn> | |
</PropertyGroup> | |
<Target Name="AddGitCommitCountToVersion" | |
BeforeTargets="PrepareForBuild;_GenerateRestoreProjectSpec" | |
Condition=" '$(DisableGitVersionSuffix)' != 'true' "> |
This file contains hidden or 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> | |
<Target Name="PublishProjectIfFrameworkSet" | |
DependsOnTargets="Publish" | |
Condition=" '$(TargetFramework)' != '' " /> | |
<Target Name="PublishProjectForAllRIDsIfTargetFrameworkSet" Condition=" '$(TargetFramework)' != '' and '$(RuntimeIdentifiers)' != '' and '$(RuntimeIdentifier)' == '' "> | |
<ItemGroup> | |
<_PublishRuntimeIdentifier Include="$(RuntimeIdentifiers)" /> | |
</ItemGroup> | |
<MSBuild Projects="$(MSBuildProjectFile)" Targets="PublishAll" Properties="TargetFramework=$(TargetFramework);RuntimeIdentifier=%(_PublishRuntimeIdentifier.Identity)" /> |
OlderNewer