-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* don't think we need CopyLocalLockFileAssemblies=true * build Tests project against net45 and netcoreapp2.0 target frameworks * update nunit to v3.9.0 * remove obsolete thrash
- Loading branch information
1 parent
0457a23
commit 307c9e1
Showing
12 changed files
with
75 additions
and
10,578 deletions.
There are no files selected for viewing
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,33 +1,7 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netcoreapp2.0;net45</TargetFrameworks> | ||
<Authors>SKB Kontur.</Authors> | ||
<Company>SKB Kontur</Company> | ||
<Description>GrEmit is a library containing different helpers for generating code using Reflection.Emit with the main one being GroboIL - a smart wrapper over ILGenerator.</Description> | ||
<Copyright>Copyright � SKB Kontur 2017.</Copyright> | ||
<PackageProjectUrl>https://github.com/skbkontur/gremit</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/skbkontur/gremit</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>.NET</PackageTags> | ||
<AssemblyVersion>1.0.0.0</AssemblyVersion> | ||
<FileVersion>1.0.0.0</FileVersion> | ||
<Version>1.0.0</Version> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
<DebugType>full</DebugType> | ||
<DebugSymbols>true</DebugSymbols> | ||
<ApplicationIcon /> | ||
<OutputType>Exe</OutputType> | ||
<StartupObject /> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<Optimize>false</Optimize> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<IsPackable>false</IsPackable> | ||
<TargetFrameworks>netcoreapp2.0;net45</TargetFrameworks> | ||
</PropertyGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="System.Collections" Version="4.3.0" /> | ||
<PackageReference Include="System.Runtime" Version="4.3.0" /> | ||
</ItemGroup> | ||
</Project> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks> | ||
<Authors>SKB Kontur.</Authors> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<NoWarn>1701;1702;1705;1591</NoWarn> | ||
<PackageId>GrEmit</PackageId> | ||
<Version>2.2.0</Version> | ||
<AssemblyVersion>2.2.0.0</AssemblyVersion> | ||
<Authors>Igor Chevdar</Authors> | ||
<Company>SKB Kontur</Company> | ||
<Copyright>SKB Kontur 2012-2017</Copyright> | ||
<Description>GrEmit is a library containing different helpers for generating code using Reflection.Emit with the main one being GroboIL - a smart wrapper over ILGenerator.</Description> | ||
<Copyright>Copyright � SKB Kontur 2017.</Copyright> | ||
<PackageTags>.NET Reflection Emit ILGenerator</PackageTags> | ||
<PackageProjectUrl>https://github.com/skbkontur/gremit</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/skbkontur/gremit</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>.NET</PackageTags> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
<DebugType>full</DebugType> | ||
<DebugSymbols>true</DebugSymbols> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<DocumentationFile>bin\Release\$(TargetFramework)\GrEmit.xml</DocumentationFile> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)'=='net45'"> | ||
<DefineConstants>NET45</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0'"> | ||
<DefineConstants>NETSTANDARD20</DefineConstants> | ||
</PropertyGroup> | ||
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'"> | ||
<PackageReference Include="System.Collections" Version="4.3.0" /> | ||
<PackageReference Include="System.Runtime" Version="4.3.0" /> | ||
<PackageReference Include="System.IO" Version="4.3.0" /> | ||
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" /> | ||
<PackageReference Include="System.Reflection.Emit.ILGeneration" Version="4.3.0" /> | ||
<PackageReference Include="System.Reflection.Primitives" Version="4.3.0" /> | ||
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.3.0" /> | ||
</ItemGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<Optimize>false</Optimize> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
</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.