-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathClojure.Main.csproj
More file actions
43 lines (34 loc) · 1.45 KB
/
Clojure.Main.csproj
File metadata and controls
43 lines (34 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0;net8.0;net9.0;net10.0;net11.0</TargetFrameworks>
<LangVersion>14.0</LangVersion>
<StartupObject>Clojure.CljMain</StartupObject>
<PackAsTool>true</PackAsTool>
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net11.0'">
<EnablePreviewFeatures>true</EnablePreviewFeatures>
<Features>$(Features);runtime-async=on</Features>
</PropertyGroup>
<PropertyGroup>
<Title>ClojureCLR-REPL</Title>
<Description>Standard REPL for ClojureCLR.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="clojure.core.specs.alpha"/>
<PackageReference Include="clojure.spec.alpha"/>
<PackageReference Include="DynamicLanguageRuntime"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Clojure.Source\Clojure.Source.csproj" />
<ProjectReference Include="..\Clojure\Clojure.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0' OR '$(TargetFramework)' == 'net10.0' OR '$(TargetFramework)' == 'net11.0' ">
<TfmSpecificPackageFile Include ="$(OutputPath)\*.clj*.dll">
<Pack>true</Pack>
<PackagePath>tools\$(TargetFramework)\any\</PackagePath>
</TfmSpecificPackageFile>
</ItemGroup>
</Project>