-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
379 changed files
with
7,644 additions
and
1,062 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,48 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net45</TargetFramework> | ||
<PropertyGroup> | ||
<TargetFramework>net45</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<LangVersion>7.3</LangVersion> | ||
<DebugType>portable</DebugType> | ||
<DebugSymbols>true</DebugSymbols> | ||
<Platforms>AnyCPU</Platforms> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> | ||
<GenerateDocumentationFile>false</GenerateDocumentationFile> | ||
|
||
<OutputType>Exe</OutputType> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<RestoreProjectStyle>PackageReference</RestoreProjectStyle> | ||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> | ||
<GenerateDocumentationFile>false</GenerateDocumentationFile> | ||
<AssemblyName>ArtifactCollector</AssemblyName> | ||
<RootNamespace>IL2C.ArtifactCollector</RootNamespace> | ||
<AssemblyTitle>A translator implementation of .NET intermediate language to C language.</AssemblyTitle> | ||
<Product>IL2C</Product> | ||
<Trademark>IL2C</Trademark> | ||
<Copyright>Copyright (c) 2017-2019 Kouji Matsui</Copyright> | ||
<Description>A translator implementation of .NET intermediate language to C language.</Description> | ||
<Company>Kouji Matsui (@kozy_kekyo)</Company> | ||
<Authors>Kouji Matsui (@kozy_kekyo)</Authors> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/kekyo/IL2C.git</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/kekyo/IL2C.git</RepositoryUrl> | ||
<PackageTags>il2c;cil;msil;translate;transpile;aot;ecma335;c;c++;win32;uefi;wdm;multi-platform;systems-programming</PackageTags> | ||
<LangVersion>7.3</LangVersion> | ||
<DebugType>portable</DebugType> | ||
<DebugSymbols>true</DebugSymbols> | ||
<Platforms>AnyCPU</Platforms> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Remove="Arduino.properties" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="Arduino.properties" /> | ||
</ItemGroup> | ||
<Target Name="CopyArtifactCollector" AfterTargets="Build"> | ||
<Copy SourceFiles="$(ProjectDir)\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).exe" DestinationFolder="$(ProjectDir)" /> | ||
</Target> | ||
<AssemblyName>ArtifactCollector</AssemblyName> | ||
<RootNamespace>IL2C.ArtifactCollector</RootNamespace> | ||
<AssemblyTitle>A translator implementation of .NET intermediate language to C language.</AssemblyTitle> | ||
|
||
<RestoreProjectStyle>PackageReference</RestoreProjectStyle> | ||
|
||
<Product>IL2C</Product> | ||
<Trademark>IL2C</Trademark> | ||
<Copyright>Copyright (c) 2017-2019 Kouji Matsui</Copyright> | ||
<Description>A translator implementation of .NET intermediate language to C language.</Description> | ||
<Company>Kouji Matsui (@kozy_kekyo)</Company> | ||
<Authors>Kouji Matsui (@kozy_kekyo)</Authors> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/kekyo/IL2C.git</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/kekyo/IL2C.git</RepositoryUrl> | ||
<PackageTags>il2c;cil;msil;translate;transpile;aot;ecma335;c;c++;win32;uefi;wdm;multi-platform;systems-programming</PackageTags> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CenterCLR.RelaxVersioner" Version="1.0.10" PrivateAssets="All" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="Arduino.properties" /> | ||
<EmbeddedResource Include="Arduino.properties" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="System.IO.Compression" /> | ||
</ItemGroup> | ||
|
||
<Target Name="CopyArtifactCollector" AfterTargets="Build"> | ||
<Copy SourceFiles="$(ProjectDir)\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).exe" DestinationFolder="$(ProjectDir)" /> | ||
</Target> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.