yangyin
2025-02-28 baa80d650adebcce70f1113cc1020c6039c159a0
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <OutputType>Library</OutputType>
    <TargetFramework>net8.0-windows7.0</TargetFramework>
    <UseWindowsForms>true</UseWindowsForms>
    <ApplicationIcon>logo.ico</ApplicationIcon>
    <SignAssembly>false</SignAssembly>
    <AssemblyOriginatorKeyFile>wenskin.pfx</AssemblyOriginatorKeyFile>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <LangVersion>12.0</LangVersion>
    <AssemblyVersion>8.0.0.0</AssemblyVersion>
    <Deterministic>false</Deterministic>
    <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
    <Version>8.1.0.0</Version>
    <FileVersion>8.0.0.0</FileVersion>
  </PropertyGroup>
 
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <DefineConstants>TRACE;DEBUG;NetCore</DefineConstants>
  </PropertyGroup>
 
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
    <DefineConstants>TRACE;NetCore</DefineConstants>
  </PropertyGroup>
 
  <ItemGroup Condition="'$(TargetFramework)' == 'net40' OR '$(TargetFramework)' == 'net45' OR '$(TargetFramework)' == 'net46'">
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Data" />
    <Reference Include="System.Data.Linq" />
    <Reference Include="System.Design" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Numerics" />
    <Reference Include="System.Runtime.Serialization" />
    <Reference Include="System.Web.DynamicData.Design" />
    <Reference Include="System.Web.Extensions.Design" />
    <Reference Include="System.Windows.Forms" />
    <Reference Include="System.Xml" />
    <Reference Include="System.Xml.Linq" />
  </ItemGroup>
 
  <ItemGroup>
    <Compile Remove="SQL\**" />
    <EmbeddedResource Remove="SQL\**" />
    <None Remove="SQL\**" />
  </ItemGroup>
 
  <ItemGroup>
    <None Remove="License.txt" />
  </ItemGroup>
 
  <ItemGroup>
    <Content Include="License.txt" />
  </ItemGroup>
 
  <ItemGroup>
    <Compile Update="Controls\UControl\UControl.cs" />
    <Compile Update="Design\EditForm\MultilineTextEditForm.cs" />
    <Compile Update="Microsoft.Windows.Forms\Controls\UIUserControl\UIUserControl.0.cs" />
    <Compile Update="Microsoft.Windows.Forms\Controls\UIUserControl\UIUserControl.1.Layout.cs" />
    <Compile Update="Microsoft.Windows.Forms\Controls\UIUserControl\UIUserControl.2.Behaviour.cs" />
    <Compile Update="Microsoft.Windows.Forms\Controls\UIUserControl\UIUserControl.3.Appearance.cs" />
    <Compile Update="Microsoft.Windows.Forms\Controls\UIUserControl\UIUserControl.4.Render.cs" />
    <Compile Update="Microsoft.Windows.Forms\Controls\UIUserControl\UIUserControl.5.WndProc.cs" />
    <Compile Update="Microsoft.Windows.Forms\Controls\UIUserControl\UIUserControl.6.Events.cs" />
    <Compile Update="Microsoft.Windows.Forms\Controls\UIUserControl\UIUserControl.7.Dispose.cs" />
    <Compile Update="Properties\Resources.Designer.cs">
      <DesignTime>True</DesignTime>
      <AutoGen>True</AutoGen>
      <DependentUpon>Resources.resx</DependentUpon>
    </Compile>
    <Compile Update="WenJsonConfig\WenConfigForm.cs">
      <SubType>Form</SubType>
    </Compile>
  </ItemGroup>
 
  <ItemGroup>
    <EmbeddedResource Update="Properties\Resources.resx">
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
  </ItemGroup>
 
  <ItemGroup>
    <Folder Include="Controls\ButtonSystem\" />
  </ItemGroup>
 
  <ItemGroup>
    <None Include="Microsoft.Drawing\Microsoft.Drawing.csproj" />
    <None Include="Microsoft.Win32\Microsoft.Win32.csproj" />
    <None Include="Microsoft.Windows.Forms\Microsoft.Windows.Forms.csproj" />
    <None Include="Microsoft\Microsoft.csproj" />
  </ItemGroup>
 
 
</Project>