-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Eliminated all shared libraries from build, completed transition to Net5
- Loading branch information
1 parent
1596a74
commit b5fb559
Showing
380 changed files
with
71,660 additions
and
14,659 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,6 @@ | ||
using System; | ||
using System.Reflection; | ||
|
||
[assembly: System.Reflection.AssemblyVersionAttribute("0.0.0.0")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("0.0.0.0")] | ||
|
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,7 +1,55 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<OutputType>Library</OutputType> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<RootNamespace>Goedel.ASN</RootNamespace> | ||
<Configurations>Debug;Release;Focus</Configurations> | ||
<Company>ThresholdSecrets.Com</Company> | ||
<SourceRevisionId>build$([System.DateTime]::UtcNow.ToString("yyyyMMddHHmmss"))</SourceRevisionId> | ||
<Product>Goedel.Tool.ASN</Product> | ||
<Description>ASN1 schema DSL.</Description> | ||
<Copyright>© 2020</Copyright> | ||
<Title>Goedel.Tool.ASN</Title> | ||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> | ||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\mmm\Libraries\Core\Goedel.ASN\Goedel.ASN.csproj" /> | ||
<ProjectReference Include="..\..\Libraries\Goedel.Tool.Core\Goedel.Tool.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Update="Asn2.cs"> | ||
<DependentUpon>Asn2.gdl</DependentUpon> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
</Compile> | ||
<Compile Update="GenerateCS.cs"> | ||
<DependentUpon>GenerateCS.script</DependentUpon> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="Asn2.gdl"> | ||
<LastGenOutput>Asn2.cs</LastGenOutput> | ||
<Generator>goedel3</Generator> | ||
</None> | ||
<None Update="GenerateCS.script"> | ||
<LastGenOutput>GenerateCS.cs</LastGenOutput> | ||
<Generator>GScript</Generator> | ||
</None> | ||
</ItemGroup> | ||
|
||
<Target Name="PreBuild" BeforeTargets="PreBuildEvent"> | ||
<Exec Command="VSPreBuild" /> | ||
</Target> | ||
|
||
<Target Name="PostBuild" AfterTargets="PostBuildEvent"> | ||
<Exec Command="cd $(ProjectDir) && VSPostBuildWindows $(TargetDir)" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
|
||
# Supplemental Makefile for Visual Studios Projects | ||
# | ||
# Visual Studio runs tools for most projects but not for shared projects. | ||
# | ||
# Prebuild items supported: | ||
# [None currently] | ||
# | ||
# PostBuild items supported: | ||
# * Copy library to locations on disk | ||
# * Build ilMerge executables | ||
# * Postprocess VSIX projects | ||
# * Copy executables | ||
|
||
|
||
.PHONY : all always clean install publish prebuild prebuildRecurse postbuild postbuildRecurse | ||
|
||
MSBuildThisFileDirectory = | ||
|
||
LinkFiles = \ | ||
Goedel.ASN.dll\ | ||
Goedel.Tool.Core.dll | ||
|
||
ToolTargets = \ | ||
Asn2.cs\ | ||
GenerateCS.cs | ||
Asn2.cs : Asn2.gdl | ||
goedel3 Asn2.gdl /cs Asn2.cs | ||
|
||
GenerateCS.cs : GenerateCS.script | ||
gscript GenerateCS.script GenerateCS.cs | ||
|
||
|
||
|
||
prebuildRecurse : | ||
|
||
|
||
postbuildRecurse : | ||
|
||
# Non shared project, nothing to do | ||
prebuild : prebuildRecurse $(ToolTargets) | ||
version version.version AssemblyVersion.cs | ||
|
||
|
||
postbuild : postbuildRecurse | ||
|
||
|
||
postbuildwindows : | ||
powershell publishtarget Goedel.Tool.ASN.dll | ||
|
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,6 +1,6 @@ | ||
using System; | ||
using System.Reflection; | ||
|
||
[assembly: System.Reflection.AssemblyVersionAttribute("3.0.0.360")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.0.0.360")] | ||
[assembly: System.Reflection.AssemblyVersionAttribute("3.0.0.361")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.0.0.361")] | ||
|
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,2 +1,2 @@ | ||
3.0.0.360 | ||
3.0.0.360 | ||
3.0.0.361 | ||
3.0.0.361 |
Oops, something went wrong.