-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathShesha.Scheduler.csproj
More file actions
59 lines (54 loc) · 2.76 KB
/
Shesha.Scheduler.csproj
File metadata and controls
59 lines (54 loc) · 2.76 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<PackageId>Shesha.Scheduler</PackageId>
<Title>Shesha.Scheduler</Title>
<Authors>Shesha</Authors>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>.\Shesha.Scheduler.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>.\Shesha.Scheduler.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Example\**" />
<EmbeddedResource Remove="Example\**" />
<None Remove="Example\**" />
<None Remove="ConfigMigrations\package20260130_1052.shaconfig" />
<EmbeddedResource Include="ConfigMigrations\package20260130_1052.shaconfig" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Abp" Version="9.0.0" />
<PackageReference Include="Abp.AspNetCore" Version="9.0.0" />
<PackageReference Include="AsyncFixer" Version="1.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Cronos" Version="0.9.0" />
<PackageReference Include="FluentMigrator" Version="5.0.0" />
<PackageReference Include="Hangfire.Core" Version="1.8.6" />
<PackageReference Include="Hangfire.AspNetCore" Version="1.8.6" />
<PackageReference Include="IDisposableAnalyzers" Version="4.0.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="log4net" Version="2.0.15" />
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.1.0" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.13.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Shesha.Application\Shesha.Application.csproj" />
<ProjectReference Include="..\Shesha.Framework\Shesha.Framework.csproj" />
<ProjectReference Include="..\Shesha.NHibernate\Shesha.NHibernate.csproj" />
</ItemGroup>
</Project>