-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathDotnet.Script.csproj
More file actions
45 lines (45 loc) · 2.33 KB
/
Copy pathDotnet.Script.csproj
File metadata and controls
45 lines (45 loc) · 2.33 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Dotnet CLI tool allowing you to run C# (CSX) scripts.</Description>
<VersionPrefix>2.0.1</VersionPrefix>
<Authors>filipw</Authors>
<PackageId>Dotnet.Script</PackageId>
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
<DebugType>portable</DebugType>
<AssemblyName>dotnet-script</AssemblyName>
<OutputType>Exe</OutputType>
<PackageTags>dotnet;cli;script;csx;csharp;roslyn</PackageTags>
<PackageIconUrl>https://avatars.githubusercontent.com/u/113979420</PackageIconUrl>
<PackageProjectUrl>https://github.com/dotnet-script/dotnet-script</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/dotnet-script/dotnet-script.git</RepositoryUrl>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<PackAsTool>false</PackAsTool>
<IsPackable>true</IsPackable>
<LangVersion>latest</LangVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../dotnet-script.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.0.0-2.final" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.0" Condition="'$(TargetFramework)' == 'net10.0'" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.0" Condition="'$(TargetFramework)' == 'net9.0'" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" Condition="'$(TargetFramework)' == 'net8.0'" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Dotnet.Script.Core\Dotnet.Script.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="dotnet-script.cmd">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="dotnet-script.sh">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>