HHECS.WinClient.csproj
3.32 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<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>
<BaseOutputPath>bin\Debug\</BaseOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;Core</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;Core</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Remove="Readme.txt" />
</ItemGroup>
<ItemGroup>
<Content Include="favicon.ico" />
<Content Include="Readme.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Include="C:\Users\dell\.nuget\packages\nlog.schema\4.7.13\contentFiles\any\any\NLog.xsd">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="HHECS.BllModel" Version="2.1.0" />
<PackageReference Include="HHECS.Communication" Version="2.6.2-beta.1" />
<PackageReference Include="NLog" Version="4.7.13" />
<PackageReference Include="NLog.Config" Version="4.7.13" />
<PackageReference Include="NLog.Schema" Version="4.7.13" />
<PackageReference Include="PropertyChanged.Fody" Version="3.4.0" />
</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>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="App.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="C:\Users\LiuFu\.nuget\packages\nlog.config\4.7.13\contentFiles\any\any\NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="NLog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>