Skip to content
This repository was archived by the owner on Feb 10, 2024. It is now read-only.

Commit aec639f

Browse files
Removed test harness web project and updated post build commands to only work on my PC
1 parent ba414fb commit aec639f

File tree

2 files changed

+6
-27
lines changed

2 files changed

+6
-27
lines changed

Our.Umbraco.DocTypeGridEditor.sln

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{CEE996
1212
.nuget\NuGet.targets = .nuget\NuGet.targets
1313
EndProjectSection
1414
EndProject
15-
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "UmbracoCms.7.2.2", "http://localhost:57740", "{4243FDA2-F71E-4A8E-92B0-8021D5C62E64}"
16-
ProjectSection(WebsiteProperties) = preProject
17-
UseIISExpress = "true"
18-
TargetFrameworkMoniker = ".NETFramework,Version%3Dv4.5"
19-
Debug.AspNetCompiler.VirtualPath = "/localhost_57740"
20-
Debug.AspNetCompiler.PhysicalPath = "..\..\..\Sandbox\Umbraco\UmbracoCms.7.2.2\"
21-
Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\localhost_57740\"
22-
Debug.AspNetCompiler.Updateable = "true"
23-
Debug.AspNetCompiler.ForceOverwrite = "true"
24-
Debug.AspNetCompiler.FixedNames = "false"
25-
Debug.AspNetCompiler.Debug = "True"
26-
Release.AspNetCompiler.VirtualPath = "/localhost_57740"
27-
Release.AspNetCompiler.PhysicalPath = "..\..\..\Sandbox\Umbraco\UmbracoCms.7.2.2\"
28-
Release.AspNetCompiler.TargetPath = "PrecompiledWeb\localhost_57740\"
29-
Release.AspNetCompiler.Updateable = "true"
30-
Release.AspNetCompiler.ForceOverwrite = "true"
31-
Release.AspNetCompiler.FixedNames = "false"
32-
Release.AspNetCompiler.Debug = "False"
33-
SlnRelativePath = "..\..\..\Sandbox\Umbraco\UmbracoCms.7.2.2\"
34-
EndProjectSection
35-
EndProject
3615
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Package", "Package", "{D588B45D-9E67-4136-8271-2B8724C8165F}"
3716
ProjectSection(SolutionItems) = preProject
3817
Package.build.cmd = Package.build.cmd
@@ -51,8 +30,6 @@ Global
5130
{4BD1DB40-1B39-4966-8740-D6A39D658598}.Debug|Any CPU.Build.0 = Debug|Any CPU
5231
{4BD1DB40-1B39-4966-8740-D6A39D658598}.Release|Any CPU.ActiveCfg = Release|Any CPU
5332
{4BD1DB40-1B39-4966-8740-D6A39D658598}.Release|Any CPU.Build.0 = Release|Any CPU
54-
{4243FDA2-F71E-4A8E-92B0-8021D5C62E64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
55-
{4243FDA2-F71E-4A8E-92B0-8021D5C62E64}.Release|Any CPU.ActiveCfg = Debug|Any CPU
5633
EndGlobalSection
5734
GlobalSection(SolutionProperties) = preSolution
5835
HideSolutionNode = FALSE

Src/Our.Umbraco.DocTypeGridEditor/Our.Umbraco.DocTypeGridEditor.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -228,10 +228,12 @@
228228
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
229229
</Target>
230230
<PropertyGroup>
231-
<PostBuildEvent>IF NOT "$(SolutionDir)" == "*Undefined*" (
232-
xcopy /s /y "$(TargetPath)" "C:\Users\Matt\Work\Sandbox\Umbraco\UmbracoCms.7.2.2\bin"
233-
xcopy /s /y "$(TargetDir)$(ProjectName).pdb" "C:\Users\Matt\Work\Sandbox\Umbraco\UmbracoCms.7.2.2\bin"
234-
xcopy /s /y "$(ProjectDir)Web\UI\*.*" "C:\Users\Matt\Work\Sandbox\Umbraco\UmbracoCms.7.2.2"
231+
<PostBuildEvent>IF %25ComputerName%25 == MBP13-PC-BC (
232+
IF NOT "$(SolutionDir)" == "*Undefined*" (
233+
xcopy /s /y "$(TargetPath)" "C:\Users\Matt\Work\Sandbox\Umbraco\UmbracoCms.7.2.2\bin"
234+
xcopy /s /y "$(TargetDir)$(ProjectName).pdb" "C:\Users\Matt\Work\Sandbox\Umbraco\UmbracoCms.7.2.2\bin"
235+
xcopy /s /y "$(ProjectDir)Web\UI\*.*" "C:\Users\Matt\Work\Sandbox\Umbraco\UmbracoCms.7.2.2"
236+
)
235237
)</PostBuildEvent>
236238
</PropertyGroup>
237239
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

0 commit comments

Comments
 (0)