-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor changes in nuget packaging, added common.proj file
- Loading branch information
Showing
15 changed files
with
890 additions
and
86 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Version>1.5.0</Version> | ||
<AssemblyVersion>1.5.0.0</AssemblyVersion> | ||
<FileVersion>1.5.0.0</FileVersion> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
|
||
|
||
<AssemblyName>$(MSBuildProjectName)</AssemblyName> | ||
<RootNamespace>$(MSBuildProjectName)</RootNamespace> | ||
<LangVersion>10.0</LangVersion> | ||
<NoWarn>1701;1702;1591</NoWarn> | ||
<PackageProjectUrl>https://github.com/IronyProject/Irony</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/IronyProject/Irony</RepositoryUrl> | ||
<Copyright>Irony Project</Copyright> | ||
<Authors>Roman Ivantsov</Authors> | ||
|
||
<RunAnalyzersDuringLiveAnalysis>False</RunAnalyzersDuringLiveAnalysis> | ||
<RunAnalyzersDuringBuild>False</RunAnalyzersDuringBuild> | ||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies> | ||
|
||
</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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,10 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\Common.proj" /> | ||
<Import Project="..\Packages.proj" /> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<RootNamespace>Irony</RootNamespace> | ||
<AssemblyName>Irony</AssemblyName> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>irony.snk</AssemblyOriginatorKeyFile> | ||
<AssemblyVersion>1.2.0</AssemblyVersion> | ||
<Version>1.2.0</Version> | ||
|
||
<!-- | ||
This assembly is marked SecurityTransparent, which requires verifiable IL. | ||
Setting peverify-compat ensures that the C# compiler will forgoe optimizations that would produce unverifiable IL. | ||
--> | ||
<Features>peverify-compat</Features> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<Title>Irony Parsing Framework</Title> | ||
</PropertyGroup> | ||
|
||
</Project> |
Oops, something went wrong.