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
; **git-specific | |
::gs::git status | |
::gl::git ll | |
::glo::git log --oneline | |
::gsh::git show | |
::gtg::git tag -a | |
::gd::git diff | |
::gdt::git difftool | |
::gmt::git mergetool |
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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"profiles": | |
{ | |
"defaults": | |
{ | |
"colorScheme": "Dracula", |
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
[diff] | |
tool = vsdiffmerge | |
[merge] | |
tool = vsdiffmerge | |
[mergetool "vscode"] | |
cmd = code --wait $MERGED | |
[difftool "vscode"] | |
cmd = code --wait --diff $LOCAL $REMOTE | |
[difftool] | |
prompt = true |
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
<?xml version="1.0" encoding="utf-8"?> | |
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<ItemGroup> | |
<PackageReference Include="Jarvis.All" Version="1.0.0" PrivateAssets="All" /> | |
</ItemGroup> | |
</Project> |
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"> | |
<PropertyGroup> | |
<TargetFramework>netstandard2.0</TargetFramework> | |
</PropertyGroup> | |
</Project> |
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
<?xml version="1.0" encoding="utf-8" ?> | |
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<UsingTask TaskName="RemoveRuntimeNode" AssemblyFile="$([MSBuild]::ValueOrDefault('$(XeinaemmSdkPath)', '$(MSBuildThisFileDirectory)..\lib\netstandard2.0\Xeinaemm.Sdk.dll'))" /> | |
<Target Name="RemoveConfigRuntimeNode" BeforeTargets="ResolveAssemblyReferences" Condition="Exists('$(MSBuildProjectDirectory)\Web.config')"> | |
<RemoveRuntimeNode ConfigFilePath="$(MSBuildProjectDirectory)\Web.config" /> | |
</Target> | |
</Project> |
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
using System.IO; | |
using System.Linq; | |
using System.Xml.Linq; | |
using Microsoft.Build.Utilities; | |
public class RemoveRuntimeNode : Task | |
{ | |
public string ConfigFilePath { get; set; } | |
public override bool Execute() |
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.csproj | |
lib | |
$(TargetFramework) | |
project.dll | |
Sdk | |
Sdk.props | |
Sdk.targets | |
*.cs |
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
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.0.52" /> |
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
<?xml version="1.0" encoding="utf-8" ?> | |
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<Target Name="PackNugets" AfterTargets="AfterBuild"> | |
<Exec Command="dotnet pack "$(MSBuildProjectDirectory)" --no-build -o C:\NugetSource -c $(Configuration)"/> | |
</Target> | |
</Project> |
NewerOlder