|
| 1 | +<Project> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot> |
| 5 | + <LangVersion>12.0</LangVersion> |
| 6 | + <GitHubOrganization>apache</GitHubOrganization> |
| 7 | + <GitHubProject>lucenenet-codeanalysis-dev</GitHubProject> |
| 8 | + </PropertyGroup> |
| 9 | + |
| 10 | + <PropertyGroup Label="Debug Settings"> |
| 11 | + <DebugType>full</DebugType> |
| 12 | + </PropertyGroup> |
| 13 | + |
| 14 | + <PropertyGroup Label="Version Settings"> |
| 15 | + <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> |
| 16 | + </PropertyGroup> |
| 17 | + |
| 18 | + <PropertyGroup Label="Nerdbank.GitVersioning Settings"> |
| 19 | + <NBGV_EmitThisAssemblyClass>false</NBGV_EmitThisAssemblyClass> |
| 20 | + </PropertyGroup> |
| 21 | + |
| 22 | + <PropertyGroup Label="NuGet Package Defaults"> |
| 23 | + <IsPackable>false</IsPackable> |
| 24 | + </PropertyGroup> |
| 25 | + |
| 26 | + <PropertyGroup Label="Assembly Signing"> |
| 27 | + <AssemblyOriginatorKeyFile>$(RepositoryRoot)Lucene.Net.snk</AssemblyOriginatorKeyFile> |
| 28 | + <PublicKey>002400000480000094000000060200000024000052534131000400000100010075a07ce602f88ef263c7db8cb342c58ebd49ecdcc210fac874260b0213fb929ac3dcaf4f5b39744b800f99073eca72aebfac5f7284e1d5f2c82012a804a140f06d7d043d83e830cdb606a04da2ad5374cc92c0a49508437802fb4f8fb80a05e59f80afb99f4ccd0dfe44065743543c4b053b669509d29d332cd32a0cb1e97e84</PublicKey> |
| 29 | + <SignAssembly>true</SignAssembly> |
| 30 | + </PropertyGroup> |
| 31 | + |
| 32 | + <PropertyGroup Label="Assembly Publishing"> |
| 33 | + <IsPublishable>false</IsPublishable> |
| 34 | + <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
| 35 | + </PropertyGroup> |
| 36 | + |
| 37 | + <PropertyGroup Label="Copyright Info"> |
| 38 | + <Product>Lucene.Net</Product> |
| 39 | + <Company>The Apache Software Foundation</Company> |
| 40 | + <CurrentYear Condition=" '$(CurrentYear)' == '' ">$([System.DateTime]::UtcNow.Year.ToString())</CurrentYear> |
| 41 | + <BeginCopyrightYear>2025</BeginCopyrightYear> |
| 42 | + <CopyrightYearRange>$(BeginCopyrightYear) - $(CurrentYear)</CopyrightYearRange> |
| 43 | + <CopyrightYearRange Condition=" '$(BeginCopyrightYear)' == '$(CurrentYear)' ">$(CurrentYear)</CopyrightYearRange> |
| 44 | + <Copyright>Copyright © $(CopyrightYearRange) $(Company)</Copyright> |
| 45 | + </PropertyGroup> |
| 46 | + |
| 47 | + <PropertyGroup Label="SourceLink Settings: https://github.com/dotnet/sourcelink/blob/main/README.md"> |
| 48 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 49 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 50 | + </PropertyGroup> |
| 51 | + |
| 52 | + <PropertyGroup Condition=" '$(BUILD_REPOSITORY_PROVIDER)' == 'GitHub' Or '$(BUILD_REPOSITORY_PROVIDER)' == 'TfsGit' " Label="Deterministic builds: https://github.com/clairernovotny/DeterministicBuilds#readme"> |
| 53 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 54 | + </PropertyGroup> |
| 55 | + |
| 56 | + <PropertyGroup Label="Fake Folder Projects" Condition="'$(MSBuildProjectExtension)' == '.folderproj'"> |
| 57 | + <!-- Required, but irrelevant --> |
| 58 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 59 | + |
| 60 | + <!-- Redirect output so it doesn't end up in the main folder. --> |
| 61 | + <BaseOutputPath>$(MSBuildThisFileDirectory)..\_artifacts\noop\$(MSBuildProjectName)\bin\</BaseOutputPath> |
| 62 | + <BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)..\_artifacts\noop\$(MSBuildProjectName)\obj\</BaseIntermediateOutputPath> |
| 63 | + <OutputPath>$(BaseOutputPath)</OutputPath> |
| 64 | + <IntermediateOutputPath>$(BaseIntermediateOutputPath)</IntermediateOutputPath> |
| 65 | + |
| 66 | + <!-- Do not run on solution builds --> |
| 67 | + <OutputType>None</OutputType> |
| 68 | + <BuildProjectReferences>false</BuildProjectReferences> |
| 69 | + <SkipBuild>true</SkipBuild> |
| 70 | + <SkipGitVersioning>true</SkipGitVersioning> |
| 71 | + </PropertyGroup> |
| 72 | + |
| 73 | +</Project> |
0 commit comments