Skip to content

Commit 2ecd952

Browse files
regenerated bindings (#1813)
* regenerated bindings * regenerated bindings after rebase * Directory.Build.props: support C# 10.0
1 parent 24d1a84 commit 2ecd952

File tree

13 files changed

+1083
-1005
lines changed

13 files changed

+1083
-1005
lines changed

Directory.Build.props

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,58 @@
1-
<Project>
2-
<Import Project="build/config.props" />
3-
4-
<PropertyGroup>
5-
<RootDir>$(MSBuildThisFileDirectory)</RootDir>
6-
<Platforms>x86;x64</Platforms>
7-
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
8-
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
9-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
10-
<RepositoryUrl>https://github.com/mono/CppSharp</RepositoryUrl>
11-
<RepositoryCommit>$(GITHUB_SHA)</RepositoryCommit>
12-
<Authors>João Matos, Dimitar Dobrev, Jose Torres</Authors>
13-
<Copyright>João Matos, Dimitar Dobrev</Copyright>
14-
<Version>$(NBGV_Version)</Version>
15-
<AssemblyVersion>$(NBGV_AssemblyVersion)</AssemblyVersion>
16-
<AssemblyFileVersion>$(NBGV_AssemblyFileVersion)</AssemblyFileVersion>
17-
<AssemblyInformationalVersion>$(NBGV_AssemblyInformationalVersion)</AssemblyInformationalVersion>
18-
<IsPackable>false</IsPackable>
19-
<BuildDir>$(RootDir)build\</BuildDir>
20-
<ObjDir>$(BuildDir)obj\</ObjDir>
21-
<GenDir>$(BuildDir)gen\</GenDir>
22-
<SrcDir>$(RootDir)src\</SrcDir>
23-
<GlobalTargetFramework>$(TargetFramework)</GlobalTargetFramework>
24-
<BaseIntermediateOutputPath>$(ObjDir)$(MSBuildProjectName)\</BaseIntermediateOutputPath>
25-
<BaseOutputPath>$(RootDir)bin\</BaseOutputPath>
26-
<OutputPath>$(BaseOutputPath)$(Configuration)_$(PlatformTarget)\</OutputPath>
27-
<ActionDir>$(BuildDir)$(PremakeAction)\</ActionDir>
28-
<NativeProjectsDir>$(ActionDir)projects\</NativeProjectsDir>
29-
<PackageDir>$(RootDir)artifacts\package\</PackageDir>
30-
<TargetDir>$(OutputPath)</TargetDir>
31-
<LangVersion>9.0</LangVersion>
32-
<WarningLevel>4</WarningLevel>
33-
<DotNetCmd>dotnet</DotNetCmd>
34-
<GeneratorFileExtension>dll</GeneratorFileExtension>
35-
<DotNetCmd Condition="'$(PlatformTarget)' == 'x86' AND Exists('$(MSBuildProgramFiles32)\dotnet\dotnet.exe')">"$(MSBuildProgramFiles32)\dotnet\dotnet.exe"</DotNetCmd>
36-
<DotNetCmd Condition="'$(PlatformTarget)' == 'x64' AND Exists('$(ProgramW6432)\dotnet\dotnet.exe')">"$(ProgramW6432)\dotnet\dotnet.exe"</DotNetCmd>
37-
<RID Condition="$(IsWindows)">win</RID>
38-
<RID Condition="$(IsLinux)">linux</RID>
39-
<RID Condition="$(IsMacOSX)">osx</RID>
40-
<RID>$(RID)-$(PlatformTarget)</RID>
41-
</PropertyGroup>
42-
43-
<PropertyGroup Condition="'$(CPPSHARP_RELEASE)' != 'true'">
44-
<DebugSymbols>true</DebugSymbols>
45-
<DebugType>full</DebugType>
46-
<Optimize>false</Optimize>
47-
</PropertyGroup>
48-
49-
<PropertyGroup Condition="'$(DotNetCmd)' == 'dotnet' AND $(IsWindows)">
50-
<GeneratorFileExtension>exe</GeneratorFileExtension>
51-
<DotNetCmd></DotNetCmd>
52-
</PropertyGroup>
53-
54-
<Target Name="prepack" DependsOnTargets="Build" Condition="'$(IsPackable)' == 'true' AND '$(Platform)' == 'x64'">
55-
<Copy SourceFiles="$(TargetDir)$(TargetFileName)" DestinationFolder="$(PackageDir)ref\$(GlobalTargetFramework)" Condition="'$(ProduceReferenceAssembly)' == 'true' AND '$(RID)' == 'win-x64'" />
56-
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(PackageDir)runtimes\$(RID)\lib\$(GlobalTargetFramework)" />
57-
</Target>
1+
<Project>
2+
<Import Project="build/config.props" />
3+
4+
<PropertyGroup>
5+
<RootDir>$(MSBuildThisFileDirectory)</RootDir>
6+
<Platforms>x86;x64</Platforms>
7+
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
8+
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
9+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
10+
<RepositoryUrl>https://github.com/mono/CppSharp</RepositoryUrl>
11+
<RepositoryCommit>$(GITHUB_SHA)</RepositoryCommit>
12+
<Authors>João Matos, Dimitar Dobrev, Jose Torres</Authors>
13+
<Copyright>João Matos, Dimitar Dobrev</Copyright>
14+
<Version>$(NBGV_Version)</Version>
15+
<AssemblyVersion>$(NBGV_AssemblyVersion)</AssemblyVersion>
16+
<AssemblyFileVersion>$(NBGV_AssemblyFileVersion)</AssemblyFileVersion>
17+
<AssemblyInformationalVersion>$(NBGV_AssemblyInformationalVersion)</AssemblyInformationalVersion>
18+
<IsPackable>false</IsPackable>
19+
<BuildDir>$(RootDir)build\</BuildDir>
20+
<ObjDir>$(BuildDir)obj\</ObjDir>
21+
<GenDir>$(BuildDir)gen\</GenDir>
22+
<SrcDir>$(RootDir)src\</SrcDir>
23+
<GlobalTargetFramework>$(TargetFramework)</GlobalTargetFramework>
24+
<BaseIntermediateOutputPath>$(ObjDir)$(MSBuildProjectName)\</BaseIntermediateOutputPath>
25+
<BaseOutputPath>$(RootDir)bin\</BaseOutputPath>
26+
<OutputPath>$(BaseOutputPath)$(Configuration)_$(PlatformTarget)\</OutputPath>
27+
<ActionDir>$(BuildDir)$(PremakeAction)\</ActionDir>
28+
<NativeProjectsDir>$(ActionDir)projects\</NativeProjectsDir>
29+
<PackageDir>$(RootDir)artifacts\package\</PackageDir>
30+
<TargetDir>$(OutputPath)</TargetDir>
31+
<LangVersion>10.0</LangVersion>
32+
<WarningLevel>4</WarningLevel>
33+
<DotNetCmd>dotnet</DotNetCmd>
34+
<GeneratorFileExtension>dll</GeneratorFileExtension>
35+
<DotNetCmd Condition="'$(PlatformTarget)' == 'x86' AND Exists('$(MSBuildProgramFiles32)\dotnet\dotnet.exe')">"$(MSBuildProgramFiles32)\dotnet\dotnet.exe"</DotNetCmd>
36+
<DotNetCmd Condition="'$(PlatformTarget)' == 'x64' AND Exists('$(ProgramW6432)\dotnet\dotnet.exe')">"$(ProgramW6432)\dotnet\dotnet.exe"</DotNetCmd>
37+
<RID Condition="$(IsWindows)">win</RID>
38+
<RID Condition="$(IsLinux)">linux</RID>
39+
<RID Condition="$(IsMacOSX)">osx</RID>
40+
<RID>$(RID)-$(PlatformTarget)</RID>
41+
</PropertyGroup>
42+
43+
<PropertyGroup Condition="'$(CPPSHARP_RELEASE)' != 'true'">
44+
<DebugSymbols>true</DebugSymbols>
45+
<DebugType>full</DebugType>
46+
<Optimize>false</Optimize>
47+
</PropertyGroup>
48+
49+
<PropertyGroup Condition="'$(DotNetCmd)' == 'dotnet' AND $(IsWindows)">
50+
<GeneratorFileExtension>exe</GeneratorFileExtension>
51+
<DotNetCmd></DotNetCmd>
52+
</PropertyGroup>
53+
54+
<Target Name="prepack" DependsOnTargets="Build" Condition="'$(IsPackable)' == 'true' AND '$(Platform)' == 'x64'">
55+
<Copy SourceFiles="$(TargetDir)$(TargetFileName)" DestinationFolder="$(PackageDir)ref\$(GlobalTargetFramework)" Condition="'$(ProduceReferenceAssembly)' == 'true' AND '$(RID)' == 'win-x64'" />
56+
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(PackageDir)runtimes\$(RID)\lib\$(GlobalTargetFramework)" />
57+
</Target>
5858
</Project>

0 commit comments

Comments
 (0)