-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathSynapse.Api.Http.csproj
56 lines (51 loc) · 2.35 KB
/
Synapse.Api.Http.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<NeutralLanguage>en</NeutralLanguage>
<OutputType>Library</OutputType>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionSuffix>alpha5.8</VersionSuffix>
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
<FileVersion>$(VersionPrefix)</FileVersion>
<Authors>The Synapse Authors</Authors>
<Company>Cloud Native Computing Foundation</Company>
<Copyright>Copyright © 2024-Present The Synapse Authors. All Rights Reserved.</Copyright>
<RepositoryUrl>https://github.com/serverlessworkflow/synapse</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/serverlessworkflow/synapse</PackageProjectUrl>
<PackageTags>synapse api http</PackageTags>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageIcon>transparent_logomark_256.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>Contains the services and controllers used by Synapse HTTP API</Description>
<AssemblyInformationalVersion>$(VersionPrefix)-$(VersionSuffix)</AssemblyInformationalVersion>
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
<FileVersion>$(VersionPrefix).0</FileVersion>
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\..\assets\images\transparent_logomark_256.png" Link="transparent_logomark_256.png">
<PackagePath>\</PackagePath>
<Pack>True</Pack>
</None>
<None Include="..\..\..\README.md">
<PackagePath>\</PackagePath>
<Pack>True</Pack>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Neuroglia.Mediation.AspNetCore" Version="4.18.1" />
<PackageReference Include="Neuroglia.Security.AspNetCore" Version="4.18.1" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="7.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Synapse.Api.Client.Core\Synapse.Api.Client.Core.csproj" />
<ProjectReference Include="..\Synapse.Api.Application\Synapse.Api.Application.csproj" />
</ItemGroup>
</Project>