-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
51 lines (43 loc) · 2.59 KB
/
Directory.Build.props
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
47
48
49
50
51
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<DebugType Condition="'$(Configuration)' == 'Debug'">full</DebugType>
<DebugType Condition="('$(Configuration)' == 'Release') AND ('$(TargetFrameworkIdentifier)' == '.NETFramework')">pdbonly</DebugType>
<DebugType Condition="('$(Configuration)' == 'Release') AND ('$(TargetFrameworkIdentifier)' != '.NETFramework')">portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources Condition="'$(Configuration)' == 'Release'">true</EmbedUntrackedSources>
<ContinuousIntegrationBuild Condition="'$(Configuration)' == 'Release'">true</ContinuousIntegrationBuild>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/kekyo/Fluorite.git</RepositoryUrl>
<RootNamespace>Fluorite</RootNamespace>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1570;CS1591</NoWarn>
<Product>Fluorite</Product>
<Trademark>Fluorite</Trademark>
<Copyright>Copyright (c) 2021 Kouji Matsui</Copyright>
<Description>Simplest and fully-customizable RPC standalone infrastructure.</Description>
<Company>Kouji Matsui (@kozy_kekyo, @kekyo2)</Company>
<Authors>Kouji Matsui (@kozy_kekyo, @kekyo2)</Authors>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/kekyo/Fluorite.git</PackageProjectUrl>
<PackageIcon>Fluorite.100.png</PackageIcon>
<PackageTags>simple;async;standalone;bidirectional;websocket;json;transport;rpc-server;rpc-client;full-duplex;complementary</PackageTags>
<AllowedOutputExtensionsInPackageBuildOutputFolder>.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<GenerateLibraryLayout>true</GenerateLibraryLayout>
<NoWarn>$(NoWarn);NU1605;NU1701</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RelaxVersioner" Version="2.3.2" PrivateAssets="All" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="All" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>