Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -13,7 +13,7 @@
<mp:PhoneIdentity PhoneProductId="FC4ACA4C-2390-44E2-B85C-B7763D87C6AB" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

<Properties>
<DisplayName>ProjectTemplateExperiment.Tests.Uwp</DisplayName>
<DisplayName>ProjectTemplate.Tests.Uwp</DisplayName>
<PublisherDisplayName>CommunityToolkit</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@

<PropertyGroup>
<ProjectGuid>{7134BD2E-0A74-4345-868A-E425FC452A89}</ProjectGuid>
<RootNamespace>ProjectTemplateExperiment.Tests</RootNamespace>
<AssemblyName>ProjectTemplateExperiment.Tests.Uwp</AssemblyName>
<RootNamespace>ProjectTemplateTests</RootNamespace>
<AssemblyName>ProjectTemplate.Tests.Uwp</AssemblyName>
<UnitTestPlatformVersion Condition="'$(UnitTestPlatformVersion)' == ''">$(VisualStudioVersion)</UnitTestPlatformVersion>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Version="1.0.0.0" />

<Properties>
<DisplayName>ProjectTemplateExperiment.Tests.WinAppSdk</DisplayName>
<DisplayName>ProjectTemplate.Tests.WinAppSdk</DisplayName>
<PublisherDisplayName>CommunityToolkit</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<Import Project="$(ToolingDirectory)\ProjectHeads\Tests.Head.WinAppSdk.props" />

<PropertyGroup>
<RootNamespace>ProjectTemplateExperiment.Tests</RootNamespace>
<AssemblyName>ProjectTemplateExperiment.Tests.WinAppSdk</AssemblyName>
<RootNamespace>ProjectTemplateTests</RootNamespace>
<AssemblyName>ProjectTemplate.Tests.WinAppSdk</AssemblyName>
</PropertyGroup>

<!-- Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging
Expand Down
4 changes: 2 additions & 2 deletions ProjectHeads/SingleComponent/Uwp/ProjectTemplate.Uwp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<Import Project="$(ToolingDirectory)\ProjectHeads\App.Head.Uwp.props" />

<PropertyGroup>
<RootNamespace>ProjectTemplateExperiment.Samples</RootNamespace>
<AssemblyName>ProjectTemplateExperiment.Samples.Uwp</AssemblyName>
<RootNamespace>ProjectTemplate.Samples</RootNamespace>
<AssemblyName>ProjectTemplate.Samples.Uwp</AssemblyName>
<ProjectGuid>{E25BF6D0-24D6-459C-A180-1E9405D59F87}</ProjectGuid>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion ProjectTemplate/tests/ExampleProjectTemplateTestClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using CommunityToolkit.Tests;
using CommunityToolkit.WinUI.Controls;

namespace ProjectTemplateExperiment.Tests;
namespace ProjectTemplateTests;

[TestClass]
public partial class ExampleProjectTemplateTestClass : VisualUITestBase
Expand Down
2 changes: 1 addition & 1 deletion ProjectTemplate/tests/ExampleProjectTemplateTestPage.xaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- 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. -->
<Page x:Class="ProjectTemplateExperiment.Tests.ExampleProjectTemplateTestPage"
<Page x:Class="ProjectTemplateTests.ExampleProjectTemplateTestPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="using:CommunityToolkit.WinUI.Controls"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace ProjectTemplateExperiment.Tests;
namespace ProjectTemplateTests;

/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
Expand Down
2 changes: 1 addition & 1 deletion ProjectTemplate/tests/ProjectTemplate.Tests.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<SharedGUID>19AC7A6A-B001-45AA-ACBE-0536F688DB74</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>ProjectTemplateExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>ProjectTemplateTests</Import_RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)ExampleProjectTemplateTestClass.cs" />
Expand Down
Loading