-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
43 lines (38 loc) · 1.58 KB
/
Directory.Build.props
File metadata and controls
43 lines (38 loc) · 1.58 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
<Project>
<!-- Stop inheriting from parent Directory.Build.props -->
<!-- This submodule is an independent project with its own settings -->
<PropertyGroup>
<!-- Reset target framework - each project defines its own -->
<TargetFramework></TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<Version>0.3.1</Version>
</PropertyGroup>
<PropertyGroup>
<Authors>iyulab</Authors>
<Company>iyulab</Company>
<Product>TokenMeter</Product>
<Copyright>Copyright (c) iyulab</Copyright>
<RepositoryUrl>https://github.com/iyulab/TokenMeter</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- Source Link + Symbol Package -->
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup Condition="Exists('$(MSBuildThisFileDirectory)../../local-packages')">
<RestoreAdditionalProjectSources>
$(RestoreAdditionalProjectSources);$(MSBuildThisFileDirectory)../../local-packages
</RestoreAdditionalProjectSources>
</PropertyGroup>
</Project>