Skip to content

Commit 726ab4f

Browse files
committed
Add nuget packaging project for ClojureCLR
1 parent 01dcca6 commit 726ab4f

3 files changed

Lines changed: 60 additions & 0 deletions

File tree

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,11 @@
88
.lein-failures
99
.lein-plugins
1010
.lein-repl-history
11+
12+
#Visual Studio artifacts
13+
bin/
14+
obj/
15+
.vs/
16+
*.user
17+
*.suo
18+
*.nupkg
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
5+
</PropertyGroup>
6+
7+
<PropertyGroup>
8+
<PackageId>clojure.tools.analyzer</PackageId>
9+
<RootNamespace>clojure.tools</RootNamespace>
10+
<Title>clojure.tools.analyzer</Title>
11+
<Product>clojure.tools.analyzer</Product>
12+
<AssemblyTitle>clojure.tools.analyzer</AssemblyTitle>
13+
<Authors>ClojureCLR contributors</Authors>
14+
<Description>A port of the tools.analyzer library to ClojureCLR.</Description>
15+
<Copyright>Copyright © Rich Hickey, ClojureCLR contributors</Copyright>
16+
<PackageLicenseExpression>EPL-1.0</PackageLicenseExpression>
17+
<RepositoryUrl>https://github.com/clojure/clojure.tools.analyzer</RepositoryUrl>
18+
<Company>ClojureCLR contributors</Company>
19+
<PackageTags>Clojure;ClojureCLR</PackageTags>
20+
<Version>1.1.1</Version>
21+
</PropertyGroup>
22+
23+
<ItemGroup>
24+
<EmbeddedResource CopyToOutputDirectory="Never" Include ="..\..\clojure\clojure\tools\**\*"/>
25+
</ItemGroup>
26+
27+
</Project>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.4.33103.184
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "clojure.tools.analyzer", "clojure.tools.analyzer.csproj", "{A2F25F49-41E8-489A-8245-1A848CAFB1D6}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{A2F25F49-41E8-489A-8245-1A848CAFB1D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{A2F25F49-41E8-489A-8245-1A848CAFB1D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{A2F25F49-41E8-489A-8245-1A848CAFB1D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{A2F25F49-41E8-489A-8245-1A848CAFB1D6}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {C8D02027-FB8B-46F2-BCC1-E9B29C8744F2}
24+
EndGlobalSection
25+
EndGlobal

0 commit comments

Comments
 (0)