|
26 | 26 |
|
27 | 27 | <TestTargetFramework Condition=" '$(TestTargetFramework)' == '' ">net8.0</TestTargetFramework>
|
28 | 28 |
|
29 |
| - <Error Condition=" '$(TestTargetFramework)' != 'net462' AND '$(TestTargetFramework)' != 'net8.0' AND '$(TestTargetFramework)' != 'net6.0'"/> |
| 29 | + <Error Condition=" '$(TestTargetFramework)' != 'net462' AND '$(TestTargetFramework)' != 'net9.0' AND '$(TestTargetFramework)' != 'net8.0' AND '$(TestTargetFramework)' != 'net6.0'"/> |
30 | 30 |
|
31 | 31 |
|
32 | 32 | <TestLibraryFramework Condition=" '$(TestTargetFramework)' == 'net462' ">netstandard2.0</TestLibraryFramework>
|
|
247 | 247 |
|
248 | 248 |
|
249 | 249 | <Target Name="ZipAll" DependsOnTargets="PackAll;ILMerge462">
|
| 250 | + |
| 251 | + <ZipDirectory SourceDirectory="$(RootDir)Clojure.Main\bin\$(Configuration)\net9.0\publish" |
| 252 | + DestinationFile ="$(StageDir)\clojure-clr-$(ZipVersion)-$(Configuration)-net9.0.zip" |
| 253 | + Overwrite="true"/> |
250 | 254 |
|
251 | 255 | <ZipDirectory SourceDirectory="$(RootDir)Clojure.Main\bin\$(Configuration)\net8.0\publish"
|
252 | 256 | DestinationFile ="$(StageDir)\clojure-clr-$(ZipVersion)-$(Configuration)-net8.0.zip"
|
|
274 | 278 | <!-- $$$$$$$$$$$$$$$$$$$$$$$$$$ -->
|
275 | 279 |
|
276 | 280 | <!-- RJ: New build and clean targets for .Net Core 3.X and .Net 5-->
|
| 281 | + |
| 282 | + |
| 283 | + <Target Name="BuildD9"> |
| 284 | + <Exec Command="dotnet build Clojure.sln -c Debug -p:Platform="Any CPU" -f net9.0 -o clojure-clr-debug9" |
| 285 | + WorkingDirectory="$(OutputPath)" /> |
| 286 | + </Target> |
| 287 | + |
| 288 | + <Target Name="BuildR9"> |
| 289 | + <Exec Command="dotnet build Clojure.sln -c Release -p:Platform="Any CPU" -f net9.0 -o clojure-clr-release9" |
| 290 | + WorkingDirectory="$(OutputPath)" /> |
| 291 | + </Target> |
277 | 292 |
|
278 | 293 | <Target Name="BuildD8">
|
279 |
| - <Exec Command="dotnet build Clojure.sln -c Debug -p:Platform="Any CPU" -f net8.0 -o clojure-clr-debug7" |
| 294 | + <Exec Command="dotnet build Clojure.sln -c Debug -p:Platform="Any CPU" -f net8.0 -o clojure-clr-debug8" |
280 | 295 | WorkingDirectory="$(OutputPath)" />
|
281 | 296 | </Target>
|
282 | 297 |
|
283 | 298 | <Target Name="BuildR8">
|
284 |
| - <Exec Command="dotnet build Clojure.sln -c Release -p:Platform="Any CPU" -f net8.0 -o clojure-clr-release7" |
| 299 | + <Exec Command="dotnet build Clojure.sln -c Release -p:Platform="Any CPU" -f net8.0 -o clojure-clr-release8" |
285 | 300 | WorkingDirectory="$(OutputPath)" />
|
286 | 301 | </Target>
|
287 | 302 |
|
|
0 commit comments