forked from AnyStatus/AnyStatus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnyStatus.API.csproj
More file actions
30 lines (27 loc) · 1.29 KB
/
Copy pathAnyStatus.API.csproj
File metadata and controls
30 lines (27 loc) · 1.29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>AnyStatus.API</PackageId>
<LangVersion>9.0</LangVersion>
<Version>1.0.0</Version>
<PackageVersion>1.0.0</PackageVersion>
<Authors>AnyStatus</Authors>
<AssemblyTitle>AnyStatus API</AssemblyTitle>
<Description>A library for developing plug-ins and extensions for AnyStatus</Description>
<PackageTags>AnyStatus SDK API</PackageTags>
<RepositoryUrl>https://github.com/AnyStatus/AnyStatus</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://www.anystat.us</PackageProjectUrl>
<PackageIconUrl>http://www.anystat.us/assets/images/logo_128px.png</PackageIconUrl>
<Copyright>Copyright © Alon Amsalem</Copyright>
<TargetFramework>netstandard2.0</TargetFramework>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="mediatr" Version="8.0.0" />
<PackageReference Include="AutoMapper" Version="15.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
</ItemGroup>
</Project>