-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathSynapse.Api.Application.csproj
55 lines (50 loc) · 2.32 KB
/
Synapse.Api.Application.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<NeutralLanguage>en</NeutralLanguage>
<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 application</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 Synapse API commands, queries and services</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="IdentityServer4" Version="4.1.2" NoWarn="NU1902" />
<PackageReference Include="IdentityServer4.Storage" Version="4.1.2" NoWarn="NU1902" />
<PackageReference Include="Polly" Version="8.5.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\core\Synapse.Core.Infrastructure\Synapse.Core.Infrastructure.csproj" />
<ProjectReference Include="..\Synapse.Api.Client.Core\Synapse.Api.Client.Core.csproj" />
</ItemGroup>
</Project>