HHECS.WinClient.csproj
1.97 KB
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
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows7.0</TargetFramework>
<UseWPF>true</UseWPF>
<AssemblyName>HHECS.WinClient</AssemblyName>
<RootNamespace>HHECS.WinClient</RootNamespace>
<Version>1.0.0.0</Version>
<Configurations>Debug;Release</Configurations>
<Copyright>Copyright © LiuFu 2018-2020</Copyright>
<FileVersion>1.0.0.0</FileVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<LangVersion>latest</LangVersion>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<ApplicationIcon>favicon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;Core</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;Core</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Content Include="favicon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HHECS.BllModel" Version="1.1.3" />
<PackageReference Include="NLog" Version="5.0.1" />
<PackageReference Include="NLog.Schema" Version="5.0.1" />
<PackageReference Include="PropertyChanged.Fody" Version="3.4.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HHECS.Application\HHECS.Application.csproj" />
<ProjectReference Include="..\HHECS.Dal\HHECS.Dal.csproj" />
<ProjectReference Include="..\HHECS.Executor\HHECS.Executor.csproj" />
<ProjectReference Include="..\HHECS.Infrastructure\HHECS.Infrastructure.csproj" />
<ProjectReference Include="..\HHECS.Model\HHECS.Model.csproj" />
<ProjectReference Include="..\HHECS.WinCommon\HHECS.WinCommon.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="C:\Users\LiuFu\.nuget\packages\nlog.config\4.7.13\contentFiles\any\any\NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>