-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
33 lines (30 loc) · 1.69 KB
/
Copy pathDirectory.Build.props
File metadata and controls
33 lines (30 loc) · 1.69 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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<IsPackable>false</IsPackable>
</PropertyGroup>
<!-- Package metadata (applied to packable projects) -->
<PropertyGroup>
<!-- Version is computed by MinVer from git tags (v*); see Directory.Build.targets -->
<MinVerTagPrefix>v</MinVerTagPrefix>
<MinVerDefaultPreReleaseIdentifiers>preview.0</MinVerDefaultPreReleaseIdentifiers>
<Authors>RemoteService.Net contributors</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/matengo/RemoteService.Net</PackageProjectUrl>
<RepositoryUrl>https://github.com/matengo/RemoteService.Net</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>blazor;webassembly;rpc;source-generator;minimal-api</PackageTags>
<Description>Typed RPC layer for Blazor Web Apps with global InteractiveWebAssembly render mode. Define a C# service interface once: on the server it is called in-process, in the browser a source-generated HTTP proxy calls auto-mapped Minimal API endpoints.</Description>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>