-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathCatel.Examples.WPF.NestedUserControls.csproj
34 lines (29 loc) · 1.47 KB
/
Catel.Examples.WPF.NestedUserControls.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>net8.0-windows</TargetFrameworks>
<AssemblyName>Catel.Examples.WPF.NestedUserControls</AssemblyName>
<RootNamespace>Catel.Examples.NestedUserControls</RootNamespace>
<DefaultLanguage>en-US</DefaultLanguage>
<Nullable>annotations</Nullable>
</PropertyGroup>
<PropertyGroup>
<UseWpf>true</UseWpf>
<UseWindowsForms>true</UseWindowsForms>
<ExtrasEnableImplicitWpfReferences>true</ExtrasEnableImplicitWpfReferences>
<ExtrasEnableImplicitWinFormsReferences>true</ExtrasEnableImplicitWinFormsReferences>
</PropertyGroup>
<PropertyGroup>
<OutputType>WinExe</OutputType>
<StartupObject />
<NoWarn>$(NoWarn);SA1652</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Catel.MVVM" Version="6.0.7" />
<PackageReference Include="Catel.Fody" Version="4.9.0" PrivateAssets="all" />
<PackageReference Include="Fody" Version="6.9.2" PrivateAssets="all" />
<PackageReference Include="LoadAssembliesOnStartup.Fody" Version="4.7.0" PrivateAssets="all" />
<PackageReference Include="ModuleInit.Fody" Version="2.1.1" PrivateAssets="all" />
</ItemGroup>
<Import Project="..\Catel.Examples.Models.Shared\Catel.Examples.Models.Shared.projitems" Label="Shared" />
<Import Project="$(MSBuildProjectDirectory)\..\Directory.build.shared.explicit.props" Condition="Exists('$(MSBuildProjectDirectory)\..\Directory.build.shared.explicit.props')" />
</Project>