-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClojure.MSBuild.csproj
More file actions
33 lines (28 loc) · 1.36 KB
/
Clojure.MSBuild.csproj
File metadata and controls
33 lines (28 loc) · 1.36 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Clojure.MSBuild</PackageId>
<Version>0.0.6</Version>
<Authors>Clojure CLR Contributors</Authors>
<Description>MSBuild integration for ClojureCLR. Build, test, and run Clojure on .NET with standard dotnet commands. Written entirely in ClojureCLR.</Description>
<PackageTags>clojure;clr;msbuild;repl;dotnet</PackageTags>
<IncludeBuildOutput>false</IncludeBuildOutput>
<NoWarn>NU5100;NU5128</NoWarn>
<DevelopmentDependency>true</DevelopmentDependency>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<!-- MSBuild integration (auto-imported by NuGet) -->
<Content Include="build\Clojure.MSBuild.props" PackagePath="build\" />
<Content Include="build\Clojure.MSBuild.targets" PackagePath="build\" />
<!-- ClojureCLR source (tool, web framework) -->
<Content Include="src\clojure\**\*.cljr" PackagePath="build\clojure\" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
</Project>