|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks> |
5 | | - <AssemblyName>YantraJS.Core</AssemblyName> |
6 | | - <PackageId>YantraJS.Core</PackageId> |
7 | | - <PackageTags>yantra,yantrajs,javascript,c#,standard,core,framework,.net</PackageTags> |
8 | | - <Description>JavaScript Engine Core for .NET Standard</Description> |
9 | | - <PackageProjectUrl>http://yantrajs.com/</PackageProjectUrl> |
10 | | - <RepositoryUrl>https://github.com/yantrajs/yantra</RepositoryUrl> |
11 | | - <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
12 | | - <Version>1.0.1</Version> |
13 | | - <LangVersion>latest</LangVersion> |
14 | | - <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> |
15 | | - <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
16 | | - <IncludeSymbols>true</IncludeSymbols> |
17 | | - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
18 | | - <EmbedAllSources>True</EmbedAllSources> |
19 | | - <DebugType>embedded</DebugType> |
20 | | - <DebugSymbols>true</DebugSymbols> |
21 | | - </PropertyGroup> |
22 | | - |
23 | | - <PropertyGroup> |
24 | | - <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> |
25 | | - <CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath> |
26 | | - </PropertyGroup> |
27 | | - <Target Name="AddSourceGeneratedFiles" AfterTargets="CoreCompile"> |
28 | | - <ItemGroup> |
29 | | - <Compile Include="Generated\**" /> |
30 | | - </ItemGroup> |
31 | | - </Target> |
32 | | - <Target Name="RemoveSourceGeneratedFiles" BeforeTargets="CoreCompile"> |
33 | | - <ItemGroup> |
34 | | - <Compile Remove="Generated\**" /> |
35 | | - </ItemGroup> |
36 | | - </Target> |
37 | | - |
38 | | - <!-- <ItemGroup> |
39 | | - <Compile Include="..\esprima-dotnet\src\Esprima\*.cs"> |
40 | | - <Link>Esprima\%(RecursiveDir)%(FileName)%(Extension)</Link> |
41 | | - </Compile> |
42 | | - <Compile Include="..\esprima-dotnet\src\Esprima\Ast\*.cs"> |
43 | | - <Link>Esprima\Ast\%(RecursiveDir)%(FileName)%(Extension)</Link> |
44 | | - </Compile> |
45 | | - <Compile Include="..\esprima-dotnet\src\Esprima\Utils\*.cs"> |
46 | | - <Link>Esprima\Utils\%(RecursiveDir)%(FileName)%(Extension)</Link> |
47 | | - </Compile> |
48 | | - </ItemGroup> --> |
49 | | - |
50 | | - <ItemGroup> |
51 | | - <PackageReference Include="ErrorProne.NET.Structs" Version="0.3.0-beta.0"> |
52 | | - <PrivateAssets>all</PrivateAssets> |
53 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
54 | | - </PackageReference> |
55 | | - <PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4"> |
56 | | - <PrivateAssets>all</PrivateAssets> |
57 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
58 | | - </PackageReference> |
59 | | - <PackageReference Include="System.Text.Json" Version="8.0.4" /> |
60 | | - <PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0" /> |
61 | | - <PackageReference Include="System.Runtime" Version="4.3.1" /> |
62 | | - <PackageReference Include="Nerdbank.GitVersioning" Version="3.6.143"> |
63 | | - <PrivateAssets>all</PrivateAssets> |
64 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
65 | | - </PackageReference> |
66 | | - </ItemGroup> |
67 | | - |
68 | | - <ItemGroup> |
69 | | - <ProjectReference Include="..\YantraJS.ExpressionCompiler\YantraJS.ExpressionCompiler.csproj" /> |
70 | | - <ProjectReference Include="..\YantraJS.JSClassGenerator\YantraJS.JSClassGenerator.csproj" ReferenceOutputAssembly="false" OutputItemType="Analyzer" /> |
71 | | - </ItemGroup> |
72 | | - |
73 | | - <ItemGroup> |
74 | | - <Reference Include="Microsoft.Build.Tasks.v4.0"> |
75 | | - <HintPath>C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\Microsoft.Build.Tasks.v4.0.dll</HintPath> |
76 | | - </Reference> |
77 | | - </ItemGroup> |
78 | | - |
79 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks> |
| 5 | + <AssemblyName>YantraJS.Core</AssemblyName> |
| 6 | + <PackageId>YantraJS.Core</PackageId> |
| 7 | + <PackageTags>yantra,yantrajs,javascript,c#,standard,core,framework,.net</PackageTags> |
| 8 | + <Description>JavaScript Engine Core for .NET Standard</Description> |
| 9 | + <PackageProjectUrl>http://yantrajs.com/</PackageProjectUrl> |
| 10 | + <RepositoryUrl>https://github.com/yantrajs/yantra</RepositoryUrl> |
| 11 | + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| 12 | + <Version>1.0.1</Version> |
| 13 | + <LangVersion>latest</LangVersion> |
| 14 | + <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> |
| 15 | + <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
| 16 | + <IncludeSymbols>true</IncludeSymbols> |
| 17 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 18 | + <EmbedAllSources>True</EmbedAllSources> |
| 19 | + <DebugType>embedded</DebugType> |
| 20 | + <DebugSymbols>true</DebugSymbols> |
| 21 | + </PropertyGroup> |
| 22 | + |
| 23 | + <PropertyGroup> |
| 24 | + <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> |
| 25 | + <CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath> |
| 26 | + </PropertyGroup> |
| 27 | + <Target Name="AddSourceGeneratedFiles" AfterTargets="CoreCompile"> |
| 28 | + <ItemGroup> |
| 29 | + <Compile Include="Generated\**" /> |
| 30 | + </ItemGroup> |
| 31 | + </Target> |
| 32 | + <Target Name="RemoveSourceGeneratedFiles" BeforeTargets="CoreCompile"> |
| 33 | + <ItemGroup> |
| 34 | + <Compile Remove="Generated\**" /> |
| 35 | + </ItemGroup> |
| 36 | + </Target> |
| 37 | + |
| 38 | + <!-- <ItemGroup> |
| 39 | + <Compile Include="..\esprima-dotnet\src\Esprima\*.cs"> |
| 40 | + <Link>Esprima\%(RecursiveDir)%(FileName)%(Extension)</Link> |
| 41 | + </Compile> |
| 42 | + <Compile Include="..\esprima-dotnet\src\Esprima\Ast\*.cs"> |
| 43 | + <Link>Esprima\Ast\%(RecursiveDir)%(FileName)%(Extension)</Link> |
| 44 | + </Compile> |
| 45 | + <Compile Include="..\esprima-dotnet\src\Esprima\Utils\*.cs"> |
| 46 | + <Link>Esprima\Utils\%(RecursiveDir)%(FileName)%(Extension)</Link> |
| 47 | + </Compile> |
| 48 | + </ItemGroup> --> |
| 49 | + |
| 50 | + <ItemGroup> |
| 51 | + <PackageReference Include="ErrorProne.NET.Structs" Version="0.3.0-beta.0"> |
| 52 | + <PrivateAssets>all</PrivateAssets> |
| 53 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
| 54 | + </PackageReference> |
| 55 | + <PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4"> |
| 56 | + <PrivateAssets>all</PrivateAssets> |
| 57 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 58 | + </PackageReference> |
| 59 | + <PackageReference Include="System.Text.Json" Version="8.0.5" /> |
| 60 | + <PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0" /> |
| 61 | + <PackageReference Include="System.Runtime" Version="4.3.1" /> |
| 62 | + <PackageReference Include="Nerdbank.GitVersioning" Version="3.6.143"> |
| 63 | + <PrivateAssets>all</PrivateAssets> |
| 64 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
| 65 | + </PackageReference> |
| 66 | + </ItemGroup> |
| 67 | + |
| 68 | + <ItemGroup> |
| 69 | + <ProjectReference Include="..\YantraJS.ExpressionCompiler\YantraJS.ExpressionCompiler.csproj" /> |
| 70 | + <ProjectReference Include="..\YantraJS.JSClassGenerator\YantraJS.JSClassGenerator.csproj" ReferenceOutputAssembly="false" OutputItemType="Analyzer" /> |
| 71 | + </ItemGroup> |
| 72 | + |
| 73 | + <ItemGroup> |
| 74 | + <Reference Include="Microsoft.Build.Tasks.v4.0"> |
| 75 | + <HintPath>C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\Microsoft.Build.Tasks.v4.0.dll</HintPath> |
| 76 | + </Reference> |
| 77 | + </ItemGroup> |
| 78 | + |
| 79 | +</Project> |
0 commit comments