forked from GleamTech/FileUltimate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAspNetCoreCS.csproj
40 lines (34 loc) · 1.42 KB
/
AspNetCoreCS.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>GleamTech.FileUltimateExamples.AspNetCoreCS</AssemblyName>
<RootNamespace>GleamTech.FileUltimateExamples.AspNetCoreCS</RootNamespace>
<!--disable NETSDK1138 outdated SDK warning-->
<CheckEolTargetFramework>false</CheckEolTargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GleamTech.Common" Version="6.4.0" />
<PackageReference Include="GleamTech.FileUltimate" Version="9.4.0" />
</ItemGroup>
<ItemGroup>
<!-- These package references are added because GleamTech DLL's are not added via PackageReference so dependencies needs to be resolved manually -->
<!-- For GleamTech.Common -->
<PackageReference Include="System.Runtime.Caching">
<Version>6.0.1</Version>
</PackageReference>
<PackageReference Include="System.Security.Principal.Windows">
<Version>5.0.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.Win32.Registry">
<Version>5.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<_CustomFiles Include="Controllers\**\*" />
<_CustomFiles Include="Views\**\*" />
<_CustomFiles Include="Descriptions\**\*" />
<DotnetPublishFiles Include="@(_CustomFiles)">
<DestinationRelativePath>%(Identity)</DestinationRelativePath>
</DotnetPublishFiles>
</ItemGroup>
</Project>