Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
9b2a21c
Support artifacts output format
dsplaisted Dec 16, 2022
deb72ce
Update tests for artifacts output format
dsplaisted Dec 16, 2022
6c2ccc7
Update publish tests for new output path format
dsplaisted Jan 6, 2023
967c5c8
Revert removing TargetFramework from calls to GetOutputDirectory
dsplaisted Jan 6, 2023
f8defcb
Fix package output path, don't check if TargetFramework is a global p…
dsplaisted Jan 10, 2023
a303e46
Fix handling of RuntimeIdentifier for blazor wasm and artifacts output
dsplaisted Jan 11, 2023
1b10d4c
Fix tests
dsplaisted Jan 11, 2023
52287bb
Update blazor wasm baselines
dsplaisted Jan 11, 2023
3c56e27
Update tests
dsplaisted Jan 11, 2023
cc0cbfc
Update tests
dsplaisted Jan 12, 2023
e3c18e4
Fix tests
dsplaisted Jan 12, 2023
caa24c4
Fix test
dsplaisted Jan 12, 2023
aeb1caa
Switch from artifacts to bin folder for new format, rename properties
dsplaisted Jan 27, 2023
14d554d
Add support for RootOutputPath
dsplaisted Jan 27, 2023
ea679fa
Don't default to standard output paths based on target framework
dsplaisted Jan 27, 2023
8eb2f36
Revert blazor wasm baseline update
dsplaisted Jan 31, 2023
73d8d6a
Fix tests
dsplaisted Jan 31, 2023
53cc787
Fix tests
dsplaisted Jan 31, 2023
e772177
Fix path casing in test
dsplaisted Jan 31, 2023
498f932
Update to latest version of output path design proposal
dsplaisted Feb 24, 2023
6838534
Update Artifacts output tests
dsplaisted Feb 28, 2023
581a780
Fix test code null reference
dsplaisted Feb 28, 2023
57da37a
Fix test issues
dsplaisted Mar 1, 2023
c747974
Fix tests
dsplaisted Mar 1, 2023
51265a5
Fix publish path calculation for tests
dsplaisted Mar 1, 2023
11d5b6e
Implement rest of design, fix bugs, add tests
dsplaisted Mar 9, 2023
ab17774
Apply feedback, fix bugs, add test
dsplaisted Mar 9, 2023
5595c27
Remove duplication in ArtifactsPath logic
dsplaisted Mar 24, 2023
3816470
Add telemetry for how artifacts paths are used
dsplaisted Mar 24, 2023
b9b67fb
Update telemetry tests
dsplaisted Mar 24, 2023
b07548f
Consolidate TestSolution with TestAssetsManager.CreateTestProjects
dsplaisted Mar 30, 2023
c2d6049
Merge upstream changes
dsplaisted Mar 31, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix path casing in test
  • Loading branch information
dsplaisted committed Mar 23, 2023
commit e7721773560efe935a927cf9ad80213c67feb51f
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void Build_Works_WithLibraryUsingHintPath()
reference.Name = "Reference";
reference.Add(new XElement(
"HintPath",
Path.Combine("..", "razorclasslibrary", "bin", "debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll")));
Path.Combine("..", "razorclasslibrary", "bin", "Debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll")));
}
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public void Publish_Works_WithLibraryUsingHintPath()
reference.Name = "Reference";
reference.Add(new XElement(
"HintPath",
Path.Combine("..", "razorclasslibrary", "bin", "debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll")));
Path.Combine("..", "razorclasslibrary", "bin", "Debug", ToolsetInfo.CurrentTargetFramework, "RazorClassLibrary.dll")));
}
});

Expand Down