Skip to content

Commit 87557d7

Browse files
committed
CLJCLR-195: Support for runtime async/await interop (.NET 11 preview) -- this commit is the second one, just filling in some missing .csproj properties.
1 parent fc762b1 commit 87557d7

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

Clojure/Clojure.Compile/Clojure.Compile.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<StartupObject>BootstrapCompile.Compile</StartupObject>
88
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
99
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
10+
<EnablePreviewFeatures>True</EnablePreviewFeatures>
1011
</PropertyGroup>
1112

1213
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

Clojure/Clojure.Main/Clojure.Main.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<PackAsTool>true</PackAsTool>
99
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
1010
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
11+
<EnablePreviewFeatures>True</EnablePreviewFeatures>
1112
</PropertyGroup>
1213

1314
<PropertyGroup>

Clojure/Clojure.Tests.Support/Clojure.Tests.Support.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFrameworks>net6.0;net8.0;net9.0;net10.0;net11.0;net462;net481</TargetFrameworks>
55
<LangVersion>14.0</LangVersion>
66
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
7+
<EnablePreviewFeatures>True</EnablePreviewFeatures>
78
</PropertyGroup>
89

910
<ItemGroup>

Clojure/Csharp.Tests/Csharp.Tests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<IsTestProject>true</IsTestProject>
88
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
99
<NoWarn>CS8002</NoWarn>
10+
<EnablePreviewFeatures>True</EnablePreviewFeatures>
1011
</PropertyGroup>
1112

1213
<PropertyGroup Condition="'$(TargetFramework)' == 'net11.0'">

0 commit comments

Comments
 (0)