|
1234567891011121314151617181920212223242526272829303132333435 |
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>net6.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWPF>true</UseWPF>
- </PropertyGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\BPASmartClient.Business\BPASmartClient.Business.csproj" />
- <ProjectReference Include="..\BPASmartClient.CustomResource\BPASmartClient.CustomResource.csproj" />
- <ProjectReference Include="..\BPASmartClient.Device\BPASmartClient.Device.csproj" />
- </ItemGroup>
-
- <ItemGroup>
- <Compile Update="View\Monitor.xaml.cs">
- <SubType>Code</SubType>
- </Compile>
- <Compile Update="View\ParSet.xaml.cs">
- <SubType>Code</SubType>
- </Compile>
- </ItemGroup>
-
- <ItemGroup>
- <Page Update="View\Monitor.xaml">
- <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
- <SubType>Designer</SubType>
- </Page>
- <Page Update="View\ParSet.xaml">
- <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
- <SubType>Designer</SubType>
- </Page>
- </ItemGroup>
-
- </Project>
|