File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Sources/Wrappers/AngouriMath.CPP.Exporting Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >netstandard2 .0</TargetFramework >
4+ <TargetFramework >net10 .0</TargetFramework >
55 <TreatWarningsAsErrors >true</TreatWarningsAsErrors >
66 <WarningsAsErrors />
77 <EnforceCodeStyleInBuild >true</EnforceCodeStyleInBuild >
88 <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
99 </PropertyGroup >
1010
11- <Target Name =" Copy for Windows" Condition =" $([MSBuild]::IsOSPlatform('Windows'))" AfterTargets =" ComputeFilesToPublish " >
12- <Exec Command =" 
 mkdir ..\AngouriMath.CPP.Importing\out-x64
 

 xcopy $(OutDir)publish ..\AngouriMath.CPP.Importing\out-x64 /H /Y" />
11+ <Target Name =" Copy for Windows" Condition =" $([MSBuild]::IsOSPlatform('Windows'))" AfterTargets =" Publish " >
12+ <Exec Command =" 
 mkdir ..\AngouriMath.CPP.Importing\out-x64
 

 xcopy $(PublishDir) ..\AngouriMath.CPP.Importing\out-x64 /H /Y" />
1313 </Target >
1414
15- <Target Name =" Copy for Linux" Condition =" $([MSBuild]::IsOSPlatform('Linux'))" AfterTargets =" ComputeFilesToPublish " >
16- <Exec Command =" cp -a $(OutDir)publish/. ../AngouriMath.CPP.Importing/out-x64/" />
15+ <Target Name =" Copy for Linux" Condition =" $([MSBuild]::IsOSPlatform('Linux'))" AfterTargets =" Publish " >
16+ <Exec Command =" cp -R $(PublishDir) ../AngouriMath.CPP.Importing/out-x64/" />
1717 </Target >
1818
19- <Target Name =" Copy for OS X" Condition =" $([MSBuild]::IsOSPlatform('OSX'))" AfterTargets =" ComputeFilesToPublish " >
20- <Exec Command =" cp -r $(OutDir)publish/* ../AngouriMath.CPP.Importing/out-x64/" />
19+ <Target Name =" Copy for OS X" Condition =" $([MSBuild]::IsOSPlatform('OSX'))" AfterTargets =" Publish " >
20+ <Exec Command =" cp -r $(PublishDir) ../AngouriMath.CPP.Importing/out-x64/" />
2121 </Target >
2222
2323 <ItemGroup >
You can’t perform that action at this time.
0 commit comments