<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net8.0-windows</TargetFramework> <EnableDefaultCompileItems>false</EnableDefaultCompileItems> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> <BaseOutputPath>..\</BaseOutputPath> <AppendTargetFrameworkToOutputPath>output</AppendTargetFrameworkToOutputPath> <UseWindowsForms>true</UseWindowsForms> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Platforms>AnyCPU;x64</Platforms> </PropertyGroup> <ItemGroup> <Compile Include="AccountForm.cs" /> <Compile Include="AccountForm.Designer.cs" /> <Compile Include="Common\GlobalConfig.cs" /> <Compile Include="Common\IconDict.cs" /> <Compile Include="Common\MyConfig.cs" /> <Compile Include="Logic\BaseLogic.cs" /> <Compile Include="Logic\Logger.cs" /> <Compile Include="Logic\Sys\SysItemLogic.cs" /> <Compile Include="Logic\Sys\SysItemsDetailLogic.cs" /> <Compile Include="Logic\Sys\SysLogLogic.cs" /> <Compile Include="Logic\Sys\SysOrganizeLogic.cs" /> <Compile Include="Logic\Sys\SysPermissionLogic.cs" /> <Compile Include="Logic\Sys\SysRoleAuthorizeLogic.cs" /> <Compile Include="Logic\Sys\SysRoleLogic.cs" /> <Compile Include="Logic\Sys\SysUserLogic.cs" /> <Compile Include="Logic\Sys\SysUserLogOnLogic.cs" /> <Compile Include="Logic\Sys\SysUserRoleRelationLogic.cs" /> <Compile Include="Models\Base\BaseModelEntity.cs" /> <Compile Include="Models\Base\CodeGenerator.cs" /> <Compile Include="Models\Base\MenuControlAttribute.cs" /> <Compile Include="Models\DTO\Parms\AuthorParms.cs" /> <Compile Include="Models\DTO\Parms\FileUploadParms.cs" /> <Compile Include="Models\DTO\Parms\ItemDetailIndexParms.cs" /> <Compile Include="Models\DTO\Parms\KeyValue.cs" /> <Compile Include="Models\DTO\Parms\LogDeleteParms.cs" /> <Compile Include="Models\DTO\Parms\LogIndexParms.cs" /> <Compile Include="Models\DTO\Parms\LongPrimaryKeyParms.cs" /> <Compile Include="Models\DTO\Parms\ModifyPasswordParms.cs" /> <Compile Include="Models\DTO\Parms\RoleDeleteParms.cs" /> <Compile Include="Models\DTO\Parms\SearchParms.cs" /> <Compile Include="Models\DTO\Parms\StrPrimaryKeyParms.cs" /> <Compile Include="Models\DTO\Parms\UserDeleteParms.cs" /> <Compile Include="Models\DTO\Parms\UserLoginParms.cs" /> <Compile Include="Models\Enum\ModuleType.cs" /> <Compile Include="Models\Sys\SysItem.cs" /> <Compile Include="Models\Sys\SysItemDetail.cs" /> <Compile Include="Models\Sys\SysLog.cs" /> <Compile Include="Models\Sys\SysOrganize.cs" /> <Compile Include="Models\Sys\SysPermission.cs" /> <Compile Include="Models\Sys\SysRole.cs" /> <Compile Include="Models\Sys\SysRoleAuthorize.cs" /> <Compile Include="Models\Sys\SysUser.cs" /> <Compile Include="Models\Sys\SysUserLogOn.cs" /> <Compile Include="Models\Sys\SysUserRoleRelation.cs" /> <Compile Include="Properties\Resources.Designer.cs" /> <Compile Include="RBACWindow.cs" /> <Compile Include="RBACWindow.Designer.cs" /> <Compile Include="Utility\Extension\ExtMethods.cs" /> <Compile Include="Utility\Extension\MyEnvironment.cs" /> <Compile Include="Utility\Other\DESHelper.cs" /> <Compile Include="Utility\Other\FormHelper.cs" /> <Compile Include="Utility\Other\JsonHelper.cs" /> <Compile Include="Utility\Other\MD5Helper.cs" /> <Compile Include="Utility\Other\PanelScrollHelper.cs" /> <Compile Include="Utility\Other\ScreenUtils.cs" /> <Compile Include="Utility\Other\SnowFlakeHelper.cs" /> <Compile Include="Utility\Other\StringHelper.cs" /> <Compile Include="Utility\Other\TreeSelect.cs" /> <Compile Include="Utility\Other\UIUtils.cs" /> <Compile Include="Utility\Other\UUID.cs" /> <Compile Include="Utility\Other\ZTreeNode.cs" /> <Compile Include="Utility\PopupTool\GripBounds.cs" /> <Compile Include="Utility\PopupTool\Popup.cs" /> <Compile Include="Utility\PopupTool\UnsafeMethods.cs" /> <Compile Include="Views\DefaultPage.cs" /> <Compile Include="Views\DefaultPage.Designer.cs" /> <Compile Include="Views\EmptyPage.cs" /> <Compile Include="Views\EmptyPage.Designer.cs" /> <Compile Include="Views\MyPage.cs" /> <Compile Include="Views\Sys\BaseSubForm.cs" /> <Compile Include="Views\Sys\BaseSubForm.Designer.cs" /> <Compile Include="Views\Sys\Organize\AddOrganizeForm.cs" /> <Compile Include="Views\Sys\Organize\AddOrganizeForm.Designer.cs" /> <Compile Include="Views\Sys\Organize\OrganizePage.cs" /> <Compile Include="Views\Sys\Organize\OrganizePage.Designer.cs" /> <Compile Include="Views\Sys\Permission\AddPermissionForm.cs" /> <Compile Include="Views\Sys\Permission\AddPermissionForm.Designer.cs" /> <Compile Include="Views\Sys\Permission\IconForm.cs" /> <Compile Include="Views\Sys\Permission\IconForm.Designer.cs" /> <Compile Include="Views\Sys\Permission\PermissionPage.cs" /> <Compile Include="Views\Sys\Permission\PermissionPage.Designer.cs" /> <Compile Include="Views\Sys\Role\AddRoleForm.cs" /> <Compile Include="Views\Sys\Role\AddRoleForm.Designer.cs" /> <Compile Include="Views\Sys\Role\RoleAuthorizeForm.cs" /> <Compile Include="Views\Sys\Role\RoleAuthorizeForm.Designer.cs" /> <Compile Include="Views\Sys\Role\RolePage.cs" /> <Compile Include="Views\Sys\Role\RolePage.Designer.cs" /> <Compile Include="Views\Sys\User\AddUserForm.cs" /> <Compile Include="Views\Sys\User\AddUserForm.Designer.cs" /> <Compile Include="Views\Sys\User\UserPage.cs" /> <Compile Include="Views\Sys\User\UserPage.Designer.cs" /> </ItemGroup> <ItemGroup> <Content Include="favicon.ico" /> </ItemGroup> <ItemGroup> <PackageReference Include="AntdUI" Version="1.8.9" /> <PackageReference Include="JinianNet.JNTemplate" Version="2.4.2" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> <PackageReference Include="SqlSugarCore" Version="5.1.4.185" /> <PackageReference Include="SunnyUI" Version="3.8.2" /> <PackageReference Include="System.Data.SqlClient" Version="4.9.0" /> <PackageReference Include="System.Data.SQLite" Version="1.0.119" /> <PackageReference Include="System.Drawing.Common" Version="9.0.3" /> </ItemGroup> <!-- 自动生成 --> <ItemGroup> <Compile Update="Page\DefaultPage.cs" /> <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> <ProjectExtensions> <VisualStudio> <UserProperties configs_4config_1json__JsonSchema="" /> </VisualStudio> </ProjectExtensions> </Project>