-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Test projects to reference the project with the experiment code Duplicated change with #126 * Update the displayed template name * Increase the namespaces referenced in the example test file This list is based on what's most commonly used in existing toolkit tests. * Make internal classes visible to all test projects For #127 * set type to "solution" as per dotnet/templating#4771 * Add more info about a created solution for a new experiment For #127 * Don't include the labexp template in VS it doesn't work there * Update template/README.md Co-authored-by: Arlo <[email protected]> * Update template/README.md Co-authored-by: Arlo <[email protected]> * Update template/README.md Co-authored-by: Michael Hawker MSFT (XAML Llama) <[email protected]> * Update template/README.md Co-authored-by: Michael Hawker MSFT (XAML Llama) <[email protected]> * Update template/README.md Co-authored-by: Michael Hawker MSFT (XAML Llama) <[email protected]> * Update template/README.md Co-authored-by: Michael Hawker MSFT (XAML Llama) <[email protected]> * Revert "Test projects to reference the project with the experiment code" This reverts commit 5dccf8a. * Update example test to reference the code being developed & to use a naming convention better matched to the wider toolkit convention * increase the number of namespaces included by default in the generated code This is to reduce the effort required to begin work on an experiment. * add placeholders and TODO notes for including links to relevant discussion & issue * update new experiment doc to reflect changes in solution structure Co-authored-by: Arlo <[email protected]> Co-authored-by: Michael Hawker MSFT (XAML Llama) <[email protected]>
- Loading branch information
1 parent
aba0670
commit e6389b0
Showing
7 changed files
with
93 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"unsupportedHosts": [ | ||
{ | ||
"id": "vs" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
using System.Runtime.CompilerServices; | ||
|
||
// These `InternalsVisibleTo` calls are intended to make it easier for | ||
// for any internal code to be testable in all the different test projects | ||
// used with the Labs infrastructure. | ||
[assembly: InternalsVisibleTo("ProjectTemplate.UnitTests.Uwp")] | ||
[assembly: InternalsVisibleTo("ProjectTemplate.UnitTests.WinAppSdk")] | ||
[assembly: InternalsVisibleTo("CommunityToolkit.Labs.UnitTests.Uwp")] | ||
[assembly: InternalsVisibleTo("CommunityToolkit.Labs.UnitTests.WinAppSdk")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters