mirror of https://github.com/AMT-Cheif/Stylet.git
46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<RootNamespace>StyletIntegrationTests</RootNamespace>
|
|
<AssemblyName>StyletIntegrationTests</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<CodeAnalysisRuleSet />
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<CodeAnalysisRuleSet />
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Stylet.Core\Stylet.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ApplicationDefinition Include="..\StyletIntegrationTests\App.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</ApplicationDefinition>
|
|
|
|
<Compile Include="..\StyletIntegrationTests\**\*.cs" />
|
|
|
|
<Page Include="..\StyletIntegrationTests\ShellView.xaml" Link="ShellView.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="..\StyletIntegrationTests\ShowDialogAndDialogResult\DialogView.xaml" Link="ShowDialogAndDialogResult\DialogView.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="..\StyletIntegrationTests\WindowLifecycle\WindowView.xaml" Link="WindowLifecycle\WindowView.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
</ItemGroup>
|
|
|
|
</Project> |