forked from RickStrahl/Westwind.Scripting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWestwind.Scripting.csproj
More file actions
66 lines (57 loc) · 2.78 KB
/
Copy pathWestwind.Scripting.csproj
File metadata and controls
66 lines (57 loc) · 2.78 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.7</Version>
<TargetFrameworks>net9.0;net8.0;net472;netstandard2.0</TargetFrameworks>
<Title>Westwind.Scripting</Title>
<Company>West Wind Technologies</Company>
<Copyright>© West Wind Technologies 2011-2025</Copyright>
<Product>Westwind.ScriptExecution</Product>
<LangVersion>latest</LangVersion>
<Description>
Small library to dynamically compile and execute C# source code from string input at runtime.
Features:
* Evaluate C# Expressions
* Execute code snippets with or without parameters and return values
* Execute complete methods
* Create and load classes
* C# Script Templates using Handlebars like syntax
</Description>
<Summary>Small library to dynamically compile and execute C# source code at runtime.</Summary>
<PackageIconUrl>http://www.west-wind.com/westwindToolkit/images/WestwindWebToolkit_128x128.png</PackageIconUrl>
<PackageTags>csharp scripting script roslyn compilation execution evaluate code westwind</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/RickStrahl/Westwind.Scripting</PackageProjectUrl>
<RepositoryUrl>https://github.com/RickStrahl/Westwind.Scripting</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<DebugType>embedded</DebugType>
<NoWarn>$(NoWarn);CS1591;CS1572;CS1573</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageOutputPath>./nupkg</PackageOutputPath>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.*" />
<PackageReference Include="Microsoft.CodeAnalysis.Scripting.Common" Version="4.*" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
<Reference Include="Microsoft.CSharp" />
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="" />
<None Include="LICENSE.md" Pack="true" PackagePath="" />
<None Include="../readme.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>