Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] test switching from build.ps1 to build.cmd to solve #60 #62

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -17,7 +17,7 @@ environment:
secure: IulXujun1RiFyQC2SrK5F/2MtGblamfSjQlGd62zphUlEV7TttNKJErPq6plSCD1

build_script:
- ps: ./build.ps1
- cmd: ./build.cmd

nuget:
disable_publish_on_pr: true
Expand Down
1 change: 1 addition & 0 deletions build.cmd
@@ -0,0 +1 @@
@dotnet run --project tools/targets --no-launch-profile -- %*
1 change: 0 additions & 1 deletion build.ps1

This file was deleted.

1 change: 1 addition & 0 deletions tools/targets/Targets.csproj
Expand Up @@ -10,6 +10,7 @@
</ItemGroup>
-->
<ItemGroup>
<PackageReference Include="ThisPackageDoesNotExist" Version="1.0.0"/>
<PackageReference Include="Bullseye" Version="1.1.0-rc.2"/>
<PackageReference Include="SimpleExec" Version="2.2.0"/>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta008" PrivateAssets="All"/>
Expand Down