-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
29 lines (26 loc) · 1.06 KB
/
Directory.Build.props
File metadata and controls
29 lines (26 loc) · 1.06 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
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>0.0.0-alpha.0</Version>
<Authors>eventstorage</Authors>
<Company>eventstorage</Company>
<PackageTags>
EventSourcing;EventStorage;Messaging;AzureSql;Postgres;Event-Driven;SqlServer;
Message-Broker;Transactional-Outbox;
</PackageTags>
<Description>
Asynchronous event storage as a queue and transactional-outbox library.
</Description>
<PackageProjectUrl>https://github.com/eventstorage/dispatch</PackageProjectUrl>
<!-- <PackageIcon>github.png</PackageIcon> -->
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/eventstorage/dispatch.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<!-- <None Include="..\.assets\github.png" Pack="true" PackagePath="\"/> -->
<None Include="..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\LICENSE" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>