-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathWaher.Utility.Asn1ToCSharp.csproj
More file actions
59 lines (53 loc) · 2.92 KB
/
Waher.Utility.Asn1ToCSharp.csproj
File metadata and controls
59 lines (53 loc) · 2.92 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<StartupObject>Waher.Utility.Asn1ToCSharp.Program</StartupObject>
<Authors>Peter Waher</Authors>
<Company>Waher Data AB</Company>
<Product>Waher.IoTGateway</Product>
<Description>Command-line tool that creates C# files from definitions made in ASN.1 files.</Description>
<Copyright>Copyright © Waher Data AB 2019-2026. All rights reserved.</Copyright>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/PeterWaher/IoTGateway/tree/master/Utilities/Waher.Utility.Asn1ToCSharp</PackageProjectUrl>
<PackageIconUrl></PackageIconUrl>
<RepositoryUrl>https://github.com/PeterWaher/IoTGateway</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<NeutralLanguage>English</NeutralLanguage>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<PackageIcon>Icon_64x64.png</PackageIcon>
<RuntimeFrameworkVersion>8.0</RuntimeFrameworkVersion>
<PlatformTarget>AnyCPU</PlatformTarget>
<RuntimeIdentifiers>win-x86;win-x64;win-arm64;osx-x64;osx-arm64;linux-x64;linux-arm64</RuntimeIdentifiers>
<RuntimeIdentifier Condition="'$(OS)' == 'Windows_NT'">win-x86</RuntimeIdentifier>
<RuntimeIdentifier Condition="'$(OS)' == 'Unix'">osx-arm64</RuntimeIdentifier>
<RuntimeIdentifier Condition="'$(OS)' == 'Linux'">linux-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\Images\Icon_64x64.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Content\Waher.Content.Asn1\Waher.Content.Asn1.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Console\Waher.Runtime.Console.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if not exist "$(ProjectDir)obj\$(ConfigurationName)\net8.0\win-x86" md "$(ProjectDir)obj\$(ConfigurationName)\net8.0\win-x86"" Condition="'$(OS)'=='Windows_NT'" />
<Exec Command="copy "$(TargetPath)" "$(ProjectDir)obj\$(ConfigurationName)\net8.0\win-x86"" Condition="'$(OS)'=='Windows_NT'" />
<Exec Command="mkdir -p "$(ProjectDir)obj/$(ConfigurationName)/net8.0/osx-arm64"" Condition="'$(OS)'=='Unix'" />
<Exec Command="cp "$(TargetPath)" "$(ProjectDir)obj/$(ConfigurationName)/net8.0/osx-arm64"" Condition="'$(OS)'=='Unix'" />
</Target>
</Project>