FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Cocoar.FileSystem/src/Directory.Build.props at develop · cocoar-dev/Cocoar.FileSystem · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
cocoar-dev
/
Cocoar.FileSystem
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Cocoar.FileSystem
/
src
/
Directory.Build.props
Copy path
More file actions
More file actions
Latest commit
History
History
History
72 lines (63 loc) · 3.18 KB
Breadcrumbs
Cocoar.FileSystem
/
src
/
Directory.Build.props
Copy path
File metadata and controls
72 lines (63 loc) · 3.18 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<
Project
>
<!--
===== GLOBAL BUILD SETTINGS =====
-->
<
PropertyGroup
>
<
LangVersion
>latest</
LangVersion
>
<
ImplicitUsings
>enable</
ImplicitUsings
>
<
Nullable
>enable</
Nullable
>
<
TreatWarningsAsErrors
>true</
TreatWarningsAsErrors
>
<
WarningsNotAsErrors
>NU1903;NU1701</
WarningsNotAsErrors
>
<
GenerateDocumentationFile
>true</
GenerateDocumentationFile
>
<
NoWarn
>$(NoWarn);CS1591</
NoWarn
>
<!--
Missing XML comments
-->
</
PropertyGroup
>
<!--
===== CI/CD BUILD OPTIMIZATIONS =====
-->
<
PropertyGroup
>
<
ContinuousIntegrationBuild
Condition
=
"
'$(CI)' == 'true'
"
>true</
ContinuousIntegrationBuild
>
<
Deterministic
>true</
Deterministic
>
<
DebugType
>portable</
DebugType
>
<
EmbedUntrackedSources
>true</
EmbedUntrackedSources
>
</
PropertyGroup
>
<!--
===== PACKAGE METADATA =====
-->
<
PropertyGroup
>
<
Authors
>Bernhard Windisch</
Authors
>
<
Company
>COCOAR e.U.</
Company
>
<
Product
>Cocoar.FileSystem</
Product
>
<
Copyright
>Copyright © COCOAR $([System.DateTime]::Now.Year)</
Copyright
>
<
PackageLicenseExpression
>Apache-2.0</
PackageLicenseExpression
>
<
PackageRequireLicenseAcceptance
>false</
PackageRequireLicenseAcceptance
>
<
PackageProjectUrl
>https://cocoar.dev</
PackageProjectUrl
>
<
RepositoryUrl
>https://github.com/cocoar-dev/Cocoar.FileSystem</
RepositoryUrl
>
<
RepositoryType
>git</
RepositoryType
>
<
PackageReadmeFile
>README.md</
PackageReadmeFile
>
<
PackageTags
>filesystem;file-monitoring;filesystemwatcher;resilient;dotnet;csharp;cross-platform;file-watcher;cocoar</
PackageTags
>
<
PackageReleaseNotes
>Full release notes: https://github.com/cocoar-dev/Cocoar.FileSystem/blob/develop/CHANGELOG.md</
PackageReleaseNotes
>
<
Description
>Production-ready file system utilities for .NET with automatic error recovery and multi-platform support.</
Description
>
</
PropertyGroup
>
<!--
===== SOURCE LINK (for debugging) =====
-->
<
PropertyGroup
Condition
=
"
'$(GITHUB_ACTIONS)' == 'true'
"
>
<
PublishRepositoryUrl
>true</
PublishRepositoryUrl
>
<
IncludeSymbols
>true</
IncludeSymbols
>
<
SymbolPackageFormat
>snupkg</
SymbolPackageFormat
>
</
PropertyGroup
>
<!--
===== ANALYZERS =====
-->
<
PropertyGroup
>
<
EnableNETAnalyzers
>true</
EnableNETAnalyzers
>
<
AnalysisLevel
>latest-recommended</
AnalysisLevel
>
<
EnforceCodeStyleInBuild
>true</
EnforceCodeStyleInBuild
>
</
PropertyGroup
>
<!--
===== PACKAGE REFERENCES (Global) =====
-->
<
ItemGroup
Condition
=
"
'$(IsPackable)' == 'true'
"
>
<
None
Include
=
"
$(MSBuildThisFileDirectory)..\README.md
"
Pack
=
"
true
"
PackagePath
=
"
README.md
"
/>
<
None
Include
=
"
$(MSBuildThisFileDirectory)..\LICENSE
"
Pack
=
"
true
"
PackagePath
=
"
LICENSE
"
/>
<
None
Include
=
"
$(MSBuildThisFileDirectory)..\CHANGELOG.md
"
Pack
=
"
true
"
PackagePath
=
"
CHANGELOG.md
"
/>
</
ItemGroup
>
<!--
===== TOOLING PACKAGES (SourceLink) =====
-->
<
ItemGroup
>
<
PackageReference
Include
=
"
Microsoft.SourceLink.GitHub
"
PrivateAssets
=
"
All
"
/>
</
ItemGroup
>
<!--
===== PERFORMANCE OPTIMIZATIONS =====
-->
<
PropertyGroup
Condition
=
"
'$(Configuration)' == 'Release'
"
>
<
Optimize
>true</
Optimize
>
<
DebugType
>portable</
DebugType
>
<
DebugSymbols
>true</
DebugSymbols
>
</
PropertyGroup
>
</
Project
>
Back
|
FazBrowse Home
|
New Git URL