-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypedSignalR.Client.TypeScript.Analyzer.csproj
More file actions
44 lines (38 loc) · 2.2 KB
/
Copy pathTypedSignalR.Client.TypeScript.Analyzer.csproj
File metadata and controls
44 lines (38 loc) · 2.2 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>10</LangVersion>
<IsPackable>true</IsPackable>
<IsRoslynComponent>true</IsRoslynComponent>
<IncludeBuildOutput>false</IncludeBuildOutput>
<DevelopmentDependency>true</DevelopmentDependency>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<!-- NuGet -->
<PackageId>TypedSignalR.Client.TypeScript.Analyzer</PackageId>
<AssemblyName>TypedSignalR.Client.TypeScript.Analyzer</AssemblyName>
<Title>TypedSignalR.Client.TypeScript.Analyzer</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>
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers\dotnet\cs" Visible="false" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.4.0" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\TypedSignalR.Client.TypeScript\RoslynExtensions.cs" LinkBase="" />
<Compile Include="..\TypedSignalR.Client.TypeScript\SpecialSymbols.cs" LinkBase="" />
<Compile Include="..\TypedSignalR.Client.TypeScript\Utils.cs" LinkBase="" />
</ItemGroup>
</Project>