-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
48 lines (48 loc) · 2.37 KB
/
Copy pathDirectory.Build.props
File metadata and controls
48 lines (48 loc) · 2.37 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
45
46
47
48
<Project>
<PropertyGroup>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
</PropertyGroup>
<PropertyGroup>
<Authors>Robert Lenders</Authors>
<Copyright>Copyright (c) Robert Lenders 2026</Copyright>
<PackageVersion>0.1.0</PackageVersion>
<RepositoryUrl>https://github.com/roboz0r/Mnemonizer</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/roboz0r/Mnemonizer</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<!-- https://fsprojects.github.io/FSharp.Formatting/styling.html -->
<FsDocsLicenseLink>https://github.com/roboz0r/Mnemonizer/License</FsDocsLicenseLink>
<FsDocsReleaseNotesLink>https://github.com/roboz0r/Mnemonizer/RELEASE_NOTES.md</FsDocsReleaseNotesLink>
<FsDocsLogoSource>images/logo.png</FsDocsLogoSource>
<FsDocsLicenseLink>https://github.com/roboz0r/Mnemonizer/blob/master/LICENSE</FsDocsLicenseLink>
<FsDocsReleaseNotesLink>https://github.com/roboz0r/Mnemonizer/blob/master/release-notes.md</FsDocsReleaseNotesLink>
</PropertyGroup>
<PropertyGroup Label="C# Specific Options" Condition="'$(MSBuildProjectExtension)' == '.csproj'">
<LangVersion>latestMajor</LangVersion>
</PropertyGroup>
<PropertyGroup Label="F# Specific Options" Condition="'$(MSBuildProjectExtension)' == '.fsproj'">
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
</PropertyGroup>
<!-- Use lock files -->
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<RestoreLockedMode Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</RestoreLockedMode>
</PropertyGroup>
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup>
<None Include="$(RepoRoot)README.md" Pack="true" PackagePath="/" />
<None Include="$(RepoRoot)LICENSE" Pack="true" PackagePath="/" />
</ItemGroup>
</Project>