-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuroraScript.csproj
More file actions
129 lines (113 loc) · 4.27 KB
/
Copy pathAuroraScript.csproj
File metadata and controls
129 lines (113 loc) · 4.27 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<LangVersion>preview</LangVersion>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PlatformTarget>AnyCPU</PlatformTarget>
<Platforms>AnyCPU;x64</Platforms>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>AuroraScript.JIT</PackageId>
<Version>3.0.1</Version>
<Title>AuroraScript</Title>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/l2060/AuroraScript.JIT.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>script;scriptengine;aurora</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<ApplicationIcon>icon.ico</ApplicationIcon>
<AssemblyTitle>AuroraScript</AssemblyTitle>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageProjectUrl>https://github.com/l2060/AuroraScript.JIT.git</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>False</Optimize>
<DebugType>portable</DebugType>
<DefineConstants>$(DefineConstants);PERFORMANCE_COUNTER</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Optimize>False</Optimize>
<DebugType>portable</DebugType>
<DefineConstants>$(DefineConstants);PERFORMANCE_COUNTER</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Optimize>True</Optimize>
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Optimize>True</Optimize>
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net10.0|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|x64'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0|x64'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net10.0|x64'">
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<Content Include="icon.ico" />
<InternalsVisibleTo Include="AuroraScript.LanguageServices" />
<InternalsVisibleTo Include="AuroraScript.LanguageServices.Tests" />
</ItemGroup>
<ItemGroup>
<None Include="..\icon.png">
<Pack>True</Pack>
<Visible>False</Visible>
<PackagePath>\</PackagePath>
</None>
<None Include="..\LICENSE">
<Pack>True</Pack>
<Visible>False</Visible>
<PackagePath>\</PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\documents\README.md">
<Pack>True</Pack>
<PackagePath>documents\</PackagePath>
</None>
<None Include="..\documents\llms.txt">
<Pack>True</Pack>
<Visible>False</Visible>
<PackagePath>documents\</PackagePath>
</None>
<None Include="..\documents\docs\**\*.*">
<Pack>True</Pack>
<Visible>False</Visible>
<PackagePath>documents\docs\</PackagePath>
</None>
<None Include="..\documents\schema\**\*.*">
<Pack>True</Pack>
<Visible>False</Visible>
<PackagePath>documents\schema\</PackagePath>
</None>
<None Include="..\documents\examples\**\*.*">
<Pack>True</Pack>
<Visible>False</Visible>
<PackagePath>documents\examples\</PackagePath>
</None>
</ItemGroup>
</Project>