-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquic#.Engine.CodeDom.nuspec
More file actions
22 lines (21 loc) · 1015 Bytes
/
quic#.Engine.CodeDom.nuspec
File metadata and controls
22 lines (21 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>quicsharp.Engine.CodeDom</id>
<version>1.1.0</version>
<title>quic# Scripting Engine with CodeDom</title>
<authors>Andreas Wäscher</authors>
<owners>Andreas Wäscher</owners>
<projectUrl>https://github.com/awaescher/quicsharp</projectUrl>
<iconUrl>https://raw.githubusercontent.com/awaescher/quicsharp/master/app128.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A simple C# scripting engine without dependencies (beyond .NET 3.5).
Usage:
var executor = new ScriptExecutor(... any ScriptLogger ...);
executor.Execute(... source code ...);</description>
<tags>quic# C# Scripting</tags>
</metadata>
<files>
<file src="quicsharp.Engine\bin\Release\quicsharp.Engine.dll" target="lib\net35\quicsharp.Engine.dll" />
</files>
</package>