2022-10-14 16:08:54 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
<UserSecretsId>e7f9420f-8be4-4163-bb5a-13bbee6b0b36</UserSecretsId>
|
2022-10-31 17:15:55 +08:00
|
|
|
|
<!--VS編譯CORE3.1出現錯誤-->
|
|
|
|
|
<!--Fixing Error NETSDK1152 after upgrading to .NET 6 https://www.poppastring.com/blog/fixing-error-netsdk1152-after-upgrading-to-net-6-->
|
|
|
|
|
<!--.NET Core 6 Found multiple publish output files with the same relative path https://github.com/dotnet/sdk/issues/22716-->
|
2022-10-31 17:10:50 +08:00
|
|
|
|
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
|
2022-10-14 16:08:54 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-07-23 11:55:00 +08:00
|
|
|
|
<PackageReference Include="Autodesk.Forge" Version="1.9.9" />
|
2024-01-23 14:41:38 +08:00
|
|
|
|
<PackageReference Include="Haukcode.WkHtmlToPdfDotNet" Version="1.5.86" />
|
2022-10-14 16:08:54 +08:00
|
|
|
|
<PackageReference Include="iTextSharp" Version="5.5.13.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.Cors" Version="5.2.7" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.21" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.22" />
|
|
|
|
|
<PackageReference Include="NPOI" Version="2.5.5" />
|
|
|
|
|
<PackageReference Include="Serilog.Extensions.Logging.File" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="6.0.1" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Repository\Repository.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Update="Views\Shared\_Layout.cshtml">
|
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-12-27 18:44:22 +08:00
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
|
|
|
|
|
|
2022-10-14 16:08:54 +08:00
|
|
|
|
|
|
|
|
|
</Project>
|