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

Add documentation for [DeploymentItem] attribute #1581

Merged
merged 27 commits into from
Feb 10, 2023
Merged
Changes from 24 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e5b5740
add tests
engyebrahim Dec 13, 2022
ba6500d
Revert "add tests"
engyebrahim Dec 13, 2022
d17a9f0
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Dec 13, 2022
2fa3202
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Dec 19, 2022
403fb59
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Dec 21, 2022
d3726f4
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Jan 2, 2023
407efd9
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Jan 4, 2023
9daa7fb
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Jan 9, 2023
405d426
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Jan 10, 2023
6685113
Merge remote-tracking branch 'microsoft/main'
engyebrahim Jan 11, 2023
cd5cff9
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Jan 16, 2023
94ba876
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Jan 19, 2023
e798040
update doc
engyebrahim Jan 19, 2023
da1ea53
update the msg
engyebrahim Jan 19, 2023
1fffc7d
fix
engyebrahim Jan 19, 2023
a9ec5b8
fix
engyebrahim Jan 20, 2023
5362a00
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Jan 25, 2023
3c2ec83
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Feb 2, 2023
f79a8f2
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Feb 2, 2023
95ec1e3
fix
engyebrahim Jan 19, 2023
469725c
fix
engyebrahim Jan 20, 2023
9854250
Merge branch 'main' of https://github.com/engyebrahim/testfx
engyebrahim Feb 2, 2023
481e067
Merge branch 'main' of https://github.com/microsoft/testfx
engyebrahim Feb 6, 2023
97829c3
update doc for deploymentItem
engyebrahim Feb 6, 2023
910b7c4
applied pr comment
engyebrahim Feb 7, 2023
0743573
used see tag
engyebrahim Feb 10, 2023
a543a89
fix as the property doesn't exist in all target frameworks
engyebrahim Feb 10, 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
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
namespace Microsoft.VisualStudio.TestTools.UnitTesting;

/// <summary>
/// Used to specify deployment item (file or directory) for per-test deployment.
/// Used to specify deployment item (file or directory) for copying files or folders specified as deployment items to the deployment directory.
/// Deployment directory is where all the deployment items are present along with TestSource dll.
/// Can be specified on test class or test method.
/// Can have multiple instances of the attribute to specify more than one item.
/// The item path can be absolute or relative, if relative, it is relative to RunConfig.RelativePathRoot.
Expand Down