Skip to content

Commit b093941

Browse files
authored
Would net10.0 work?
1 parent 287d0a5 commit b093941

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Sources/Wrappers/AngouriMath.CPP.Exporting/AngouriMath.CPP.Exporting.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
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="&#xD;&#xA; mkdir ..\AngouriMath.CPP.Importing\out-x64&#xD;&#xA; &#xD;&#xA;&#xD;&#xA; 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="&#xD;&#xA; mkdir ..\AngouriMath.CPP.Importing\out-x64&#xD;&#xA; &#xD;&#xA;&#xD;&#xA; 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>

0 commit comments

Comments
 (0)