-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypedSignalR.Client.TypeScript.csproj
More file actions
46 lines (38 loc) · 1.78 KB
/
Copy pathTypedSignalR.Client.TypeScript.csproj
File metadata and controls
46 lines (38 loc) · 1.78 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
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<!-- NuGet -->
<PackageId>TypedSignalR.Client.TypeScript</PackageId>
<AssemblyName>TypedSignalR.Client.TypeScript</AssemblyName>
<Title>TypedSignalR.Client.TypeScript</Title>
<Description>TypedSignalR.Client.TypeScript is a library/CLI tool that analyzes SignalR hub and receiver type definitions written in C# and generates TypeScript source code to provide strongly typed SignalR clients.</Description>
<Authors>nenoNaninu</Authors>
<RepositoryUrl>https://github.com/nenoNaninu/TypedSignalR.Client.TypeScript</RepositoryUrl>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<Copyright>(c) nenoNaninu</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.4.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.2" />
<PackageReference Include="Tapper" Version="1.8.3" />
</ItemGroup>
<ItemGroup>
<None Update="Templates\ApiTemplate.tt">
<Generator>TextTemplatingFilePreprocessor</Generator>
<LastGenOutput>ApiTemplate.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Compile Update="Templates\ApiTemplate.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>ApiTemplate.tt</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
</Project>