-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathInfinityFlow.Aspire.Temporal.csproj
More file actions
41 lines (40 loc) · 1.91 KB
/
InfinityFlow.Aspire.Temporal.csproj
File metadata and controls
41 lines (40 loc) · 1.91 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageIcon>packageIcon.png</PackageIcon>
<IsPackable>true</IsPackable>
<EnablePackageValidation>true</EnablePackageValidation>
<PackageId>InfinityFlow.Aspire.Temporal</PackageId>
<PackageVersion>1.0.0</PackageVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageTags>dotnet;aspire;temporal</PackageTags>
<Description>Aspire extension to start the temporal cli dev server as an container or executable resource. Only container is well-supported currently.</Description>
<RepositoryUrl>https://github.com/InfinityFlowApp/aspire-temporal-server</RepositoryUrl>
<Authors>InfinityFlow</Authors>
<Copyright>Copyright ©️ InfinityFlow</Copyright>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="InfinityFlow.Aspire.Temporal.Tests" />
</ItemGroup>
<ItemGroup>
<!-- Assets -->
<None Pack="true" PackagePath="" Include="assets/packageIcon.png" />
<None Pack="true" PackagePath="" Include="assets/README.md" />
<None Pack="true" PackagePath="" Include="assets/LICENSE" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.203" PrivateAssets="All" />
<PackageReference Include="Aspire.Hosting.AppHost" Version="13.2.3" />
</ItemGroup>
</Project>