|
| 1 | +<!-- |
| 2 | + Copyright (c) 2025 ADBC Drivers Contributors |
| 3 | +
|
| 4 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + you may not use this file except in compliance with the License. |
| 6 | + You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | + Unless required by applicable law or agreed to in writing, software |
| 11 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + See the License for the specific language governing permissions and |
| 14 | + limitations under the License. |
| 15 | +--> |
| 16 | + |
| 17 | + |
| 18 | +<Project> |
| 19 | + |
| 20 | + <!-- Common repo directories --> |
| 21 | + <PropertyGroup> |
| 22 | + <RepoRoot>$(MSBuildThisFileDirectory)../</RepoRoot> |
| 23 | + <CSharpDir>$(MSBuildThisFileDirectory)</CSharpDir> |
| 24 | + <BaseOutputPath>$(CSharpDir)/artifacts/$(MSBuildProjectName)</BaseOutputPath> |
| 25 | + </PropertyGroup> |
| 26 | + |
| 27 | + <!-- AssemblyInfo properties --> |
| 28 | + <PropertyGroup> |
| 29 | + <Product>ADBC Driver for BigQuery</Product> |
| 30 | + <Copyright>Copyright 2025 ADBC Drivers Contributors</Copyright> |
| 31 | + <VersionPrefix>0.21.0</VersionPrefix> |
| 32 | + <VersionSuffix>SNAPSHOT</VersionSuffix> |
| 33 | + </PropertyGroup> |
| 34 | + |
| 35 | + <PropertyGroup> |
| 36 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 37 | + <LangVersion>latest</LangVersion> |
| 38 | + <SignAssembly>true</SignAssembly> |
| 39 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 40 | + <Nullable>enable</Nullable> |
| 41 | + <ImplicitUsings>disable</ImplicitUsings> |
| 42 | + <IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows> |
| 43 | + </PropertyGroup> |
| 44 | + |
| 45 | + <ItemGroup Condition="!$([MSBuild]::IsTargetFrameworkCompatible($(TargetFramework), 'net8.0'))"> |
| 46 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/> |
| 47 | + </ItemGroup> |
| 48 | + |
| 49 | +</Project> |
0 commit comments