vue-java-tutorials/CSharp/WPFTutorial/MainApplication/MainApplication.csproj

33 lines
866 B
XML
Raw Normal View History

2025-06-22 20:21:42 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Prism.DryIoc" Version="9.0.537"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ModuleA\ModuleA.csproj"/>
<ProjectReference Include="..\ModuleB\ModuleB.csproj"/>
</ItemGroup>
<ItemGroup>
<Page Update="Views\MainView.xaml">
<Generator>MSBuild:Compile</Generator>
<XamlRuntime>Wpf</XamlRuntime>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>