-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathMiniscript.csproj
49 lines (46 loc) · 2.13 KB
/
Miniscript.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ProjectGuid>{C3806B8F-9702-4B39-B6D9-9ECBC298565F}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Miniscript</RootNamespace>
<AssemblyName>Miniscript</AssemblyName>
<TargetFrameworks>net6.0</TargetFrameworks>
<PackageId>org.miniscript.MiniScript</PackageId>
<VersionPrefix>1.6.2</VersionPrefix>
<Authors>Joe Strout</Authors>
<Title>MiniScript</Title>
<Description>C# implementation of the MiniScript scripting language</Description>
<Copyright>Copyright © $([System.DateTime]::UtcNow.Year) Joe Strout ($([System.DateTime]::UtcNow.ToString("s")))</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://miniscript.org/</PackageProjectUrl>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>miniscript;programming language</PackageTags>
<PackageReleaseNotes>Please visit https://github.com/JoeStrout/miniscript/blob/master/MiniScript-Release-Notes.txt to read the release notes.</PackageReleaseNotes>
<RepositoryUrl>https://github.com/JoeStrout/miniscript</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<None Include="../Icon.png" Pack="true" PackagePath="/"/>
<None Include="../README.md" Pack="true" PackagePath="/"/>
</ItemGroup>
</Project>