-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathWaher.Content.Asn1.Test.csproj
More file actions
94 lines (87 loc) · 4.05 KB
/
Waher.Content.Asn1.Test.csproj
File metadata and controls
94 lines (87 loc) · 4.05 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Remove="Examples\IEEE1451\P21451-N1-T1-MIB.asn1" />
<None Remove="Examples\IEEE1451\P21451-N1-T2-MIB.asn1" />
<None Remove="Examples\IEEE1451\P21451-N1-T3-MIB.asn1" />
<None Remove="Examples\MyShopPurchaseOrders.asn1" />
<None Remove="Examples\RFC1157-SNMP.asn1" />
<None Remove="Examples\SNMPv1\RFC1155-SMI.asn1" />
<None Remove="Examples\SNMPv1\RFC1158-MIB.asn1" />
<None Remove="Examples\SNMPv1\RFC1212.asn1" />
<None Remove="Examples\SNMPv1\RFC1213-MIB.asn1" />
<None Remove="Examples\SNMPv1\RFC1215.asn1" />
<None Remove="Examples\SNMPv2\COMMUNITY-BASED-SNMPv2.asn1" />
<None Remove="Examples\SNMPv2\SNMPv2-CONF.asn1" />
<None Remove="Examples\SNMPv2\SNMPv2-PDU.asn1" />
<None Remove="Examples\SNMPv2\SNMPv2-SMI.asn1" />
<None Remove="Examples\SNMPv2\SNMPv2-TC.asn1" />
<None Remove="Examples\World-Schema.asn1" />
</ItemGroup>
<ItemGroup>
<Content Include="Examples\IEEE1451\P21451-N1-T1-MIB.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\IEEE1451\P21451-N1-T2-MIB.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\IEEE1451\P21451-N1-T3-MIB.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\SNMPv1\RFC1155-SMI.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\SNMPv1\RFC1157-SNMP.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\SNMPv1\RFC1158-MIB.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\SNMPv1\RFC1212.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\SNMPv1\RFC1213-MIB.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\SNMPv1\RFC1215.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\SNMPv2\COMMUNITY-BASED-SNMPv2.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\SNMPv2\SNMPv2-CONF.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\SNMPv2\SNMPv2-PDU.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\SNMPv2\SNMPv2-SMI.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\SNMPv2\SNMPv2-TC.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\World-Schema.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Examples\MyShopPurchaseOrders.asn1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.11.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.3" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Console\Waher.Runtime.Console.csproj" />
<ProjectReference Include="..\Waher.Content.Asn1\Waher.Content.Asn1.csproj" />
</ItemGroup>
</Project>