-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCSharpToJavaScript.csproj
More file actions
44 lines (38 loc) · 1.42 KB
/
CSharpToJavaScript.csproj
File metadata and controls
44 lines (38 loc) · 1.42 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<VersionPrefix>0.1.10</VersionPrefix>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Authors>TiLied</Authors>
<Description>A library for translating/converting cs into js, using Roslyn.</Description>
<PackageProjectUrl>https://tilied.github.io/CSTOJS_Pages/</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/TiLied/CSharpToJavaScript/</RepositoryUrl>
<PackageTags>csharp, c#, translating, javascript, js, converting, translation</PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
<Title>CSharp to JavaScript</Title>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>CSTOJS_128.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include=".\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include=".\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="CSharpToJavaScript\Utils\CSTOJS_128.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.0.0" />
</ItemGroup>
</Project>