Skip to content

Commit 73d3c69

Browse files
committed
Added build file that can be used with GitHubFlowVersion to Rebuild the .sln file with Release|AnyCPU
1 parent da153d5 commit 73d3c69

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Build.proj

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<ProjectFiles Include="$(MSBuildProjectDirectory)\*.sln">
5+
<Properties>Configuration=Release;Platform=Any CPU</Properties>
6+
</ProjectFiles>
7+
</ItemGroup>
8+
<Target Name="Build">
9+
<MSBuild Projects="@(ProjectFiles)" Targets="Rebuild" />
10+
</Target>
11+
</Project>

0 commit comments

Comments
 (0)