-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSpiceSharpParser.IntegrationTests.csproj
More file actions
120 lines (113 loc) · 4.97 KB
/
SpiceSharpParser.IntegrationTests.csproj
File metadata and controls
120 lines (113 loc) · 4.97 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ProjectGuid>{57920E91-873B-4E66-B0EC-4CAC45007AA9}</ProjectGuid>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE</DefineConstants>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<LangVersion>8.0</LangVersion>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="6.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="SpiceSharp" Version="3.2.3" />
<PackageReference Include="SpiceSharpBehavioral" Version="3.2.0" />
<PackageReference Include="SpiceSharpBSIM" Version="3.2.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.abstractions" Version="2.0.3" />
<PackageReference Include="xunit.runner.console" Version="2.9.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SpiceSharpParser\SpiceSharpParser.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Examples\Circuits\band-pass_2.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\band-pass_1.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\example02.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\example01_stringwriter.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\example01_without_params.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\example01.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\example03.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\Example12.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\Example11.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\Example10.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\Example09.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\Example08.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\Example07.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\Example06.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\Example05.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\Example04.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\Example04_nested.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\Example04_reversed.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\MosfetExample2.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Examples\Circuits\MosfetExample.cir">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\pwl_reference.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\pwl_comma.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\pwl_semicolon.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Resources\pwl_space.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>