mirror of https://github.com/mono/CppSharp.git
1 changed files with 57 additions and 57 deletions
@ -1,58 +1,58 @@ |
|||||||
<Project> |
<Project> |
||||||
<Import Project="build/config.props" /> |
<Import Project="build/config.props" /> |
||||||
|
|
||||||
<PropertyGroup> |
<PropertyGroup> |
||||||
<RootDir>$(MSBuildThisFileDirectory)</RootDir> |
<RootDir>$(MSBuildThisFileDirectory)</RootDir> |
||||||
<Platforms>x86;x64</Platforms> |
<Platforms>x86;x64</Platforms> |
||||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> |
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> |
||||||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> |
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> |
||||||
<PackageLicenseExpression>MIT</PackageLicenseExpression> |
<PackageLicenseExpression>MIT</PackageLicenseExpression> |
||||||
<RepositoryUrl>https://github.com/mono/CppSharp</RepositoryUrl> |
<RepositoryUrl>https://github.com/mono/CppSharp</RepositoryUrl> |
||||||
<RepositoryCommit>$(GITHUB_SHA)</RepositoryCommit> |
<RepositoryCommit>$(GITHUB_SHA)</RepositoryCommit> |
||||||
<Authors>João Matos, Dimitar Dobrev, Jose Torres</Authors> |
<Authors>João Matos, Dimitar Dobrev, Jose Torres</Authors> |
||||||
<Copyright>João Matos, Dimitar Dobrev</Copyright> |
<Copyright>João Matos, Dimitar Dobrev</Copyright> |
||||||
<Version>$(NBGV_Version)</Version> |
<Version>$(NBGV_Version)</Version> |
||||||
<AssemblyVersion>$(NBGV_AssemblyVersion)</AssemblyVersion> |
<AssemblyVersion>$(NBGV_AssemblyVersion)</AssemblyVersion> |
||||||
<AssemblyFileVersion>$(NBGV_AssemblyFileVersion)</AssemblyFileVersion> |
<AssemblyFileVersion>$(NBGV_AssemblyFileVersion)</AssemblyFileVersion> |
||||||
<AssemblyInformationalVersion>$(NBGV_AssemblyInformationalVersion)</AssemblyInformationalVersion> |
<AssemblyInformationalVersion>$(NBGV_AssemblyInformationalVersion)</AssemblyInformationalVersion> |
||||||
<IsPackable>false</IsPackable> |
<IsPackable>false</IsPackable> |
||||||
<BuildDir>$(RootDir)build\</BuildDir> |
<BuildDir>$(RootDir)build\</BuildDir> |
||||||
<ObjDir>$(BuildDir)obj\</ObjDir> |
<ObjDir>$(BuildDir)obj\</ObjDir> |
||||||
<GenDir>$(BuildDir)gen\</GenDir> |
<GenDir>$(BuildDir)gen\</GenDir> |
||||||
<SrcDir>$(RootDir)src\</SrcDir> |
<SrcDir>$(RootDir)src\</SrcDir> |
||||||
<GlobalTargetFramework>$(TargetFramework)</GlobalTargetFramework> |
<GlobalTargetFramework>$(TargetFramework)</GlobalTargetFramework> |
||||||
<BaseIntermediateOutputPath>$(ObjDir)$(MSBuildProjectName)\</BaseIntermediateOutputPath> |
<BaseIntermediateOutputPath>$(ObjDir)$(MSBuildProjectName)\</BaseIntermediateOutputPath> |
||||||
<BaseOutputPath>$(RootDir)bin\</BaseOutputPath> |
<BaseOutputPath>$(RootDir)bin\</BaseOutputPath> |
||||||
<OutputPath>$(BaseOutputPath)$(Configuration)_$(PlatformTarget)\</OutputPath> |
<OutputPath>$(BaseOutputPath)$(Configuration)_$(PlatformTarget)\</OutputPath> |
||||||
<ActionDir>$(BuildDir)$(PremakeAction)\</ActionDir> |
<ActionDir>$(BuildDir)$(PremakeAction)\</ActionDir> |
||||||
<NativeProjectsDir>$(ActionDir)projects\</NativeProjectsDir> |
<NativeProjectsDir>$(ActionDir)projects\</NativeProjectsDir> |
||||||
<PackageDir>$(RootDir)artifacts\package\</PackageDir> |
<PackageDir>$(RootDir)artifacts\package\</PackageDir> |
||||||
<TargetDir>$(OutputPath)</TargetDir> |
<TargetDir>$(OutputPath)</TargetDir> |
||||||
<LangVersion>9.0</LangVersion> |
<LangVersion>10.0</LangVersion> |
||||||
<WarningLevel>4</WarningLevel> |
<WarningLevel>4</WarningLevel> |
||||||
<DotNetCmd>dotnet</DotNetCmd> |
<DotNetCmd>dotnet</DotNetCmd> |
||||||
<GeneratorFileExtension>dll</GeneratorFileExtension> |
<GeneratorFileExtension>dll</GeneratorFileExtension> |
||||||
<DotNetCmd Condition="'$(PlatformTarget)' == 'x86' AND Exists('$(MSBuildProgramFiles32)\dotnet\dotnet.exe')">"$(MSBuildProgramFiles32)\dotnet\dotnet.exe"</DotNetCmd> |
<DotNetCmd Condition="'$(PlatformTarget)' == 'x86' AND Exists('$(MSBuildProgramFiles32)\dotnet\dotnet.exe')">"$(MSBuildProgramFiles32)\dotnet\dotnet.exe"</DotNetCmd> |
||||||
<DotNetCmd Condition="'$(PlatformTarget)' == 'x64' AND Exists('$(ProgramW6432)\dotnet\dotnet.exe')">"$(ProgramW6432)\dotnet\dotnet.exe"</DotNetCmd> |
<DotNetCmd Condition="'$(PlatformTarget)' == 'x64' AND Exists('$(ProgramW6432)\dotnet\dotnet.exe')">"$(ProgramW6432)\dotnet\dotnet.exe"</DotNetCmd> |
||||||
<RID Condition="$(IsWindows)">win</RID> |
<RID Condition="$(IsWindows)">win</RID> |
||||||
<RID Condition="$(IsLinux)">linux</RID> |
<RID Condition="$(IsLinux)">linux</RID> |
||||||
<RID Condition="$(IsMacOSX)">osx</RID> |
<RID Condition="$(IsMacOSX)">osx</RID> |
||||||
<RID>$(RID)-$(PlatformTarget)</RID> |
<RID>$(RID)-$(PlatformTarget)</RID> |
||||||
</PropertyGroup> |
</PropertyGroup> |
||||||
|
|
||||||
<PropertyGroup Condition="'$(CPPSHARP_RELEASE)' != 'true'"> |
<PropertyGroup Condition="'$(CPPSHARP_RELEASE)' != 'true'"> |
||||||
<DebugSymbols>true</DebugSymbols> |
<DebugSymbols>true</DebugSymbols> |
||||||
<DebugType>full</DebugType> |
<DebugType>full</DebugType> |
||||||
<Optimize>false</Optimize> |
<Optimize>false</Optimize> |
||||||
</PropertyGroup> |
</PropertyGroup> |
||||||
|
|
||||||
<PropertyGroup Condition="'$(DotNetCmd)' == 'dotnet' AND $(IsWindows)"> |
<PropertyGroup Condition="'$(DotNetCmd)' == 'dotnet' AND $(IsWindows)"> |
||||||
<GeneratorFileExtension>exe</GeneratorFileExtension> |
<GeneratorFileExtension>exe</GeneratorFileExtension> |
||||||
<DotNetCmd></DotNetCmd> |
<DotNetCmd></DotNetCmd> |
||||||
</PropertyGroup> |
</PropertyGroup> |
||||||
|
|
||||||
<Target Name="prepack" DependsOnTargets="Build" Condition="'$(IsPackable)' == 'true' AND '$(Platform)' == 'x64'"> |
<Target Name="prepack" DependsOnTargets="Build" Condition="'$(IsPackable)' == 'true' AND '$(Platform)' == 'x64'"> |
||||||
<Copy SourceFiles="$(TargetDir)$(TargetFileName)" DestinationFolder="$(PackageDir)ref\$(GlobalTargetFramework)" Condition="'$(ProduceReferenceAssembly)' == 'true' AND '$(RID)' == 'win-x64'" /> |
<Copy SourceFiles="$(TargetDir)$(TargetFileName)" DestinationFolder="$(PackageDir)ref\$(GlobalTargetFramework)" Condition="'$(ProduceReferenceAssembly)' == 'true' AND '$(RID)' == 'win-x64'" /> |
||||||
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(PackageDir)runtimes\$(RID)\lib\$(GlobalTargetFramework)" /> |
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(PackageDir)runtimes\$(RID)\lib\$(GlobalTargetFramework)" /> |
||||||
</Target> |
</Target> |
||||||
</Project> |
</Project> |
||||||
Loading…
Reference in new issue