|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
| 4 | + <Description>Spice#.BSIM is a library for Spice# that contains the BSIM models.</Description> |
4 | 5 | <UseGitInfo>true</UseGitInfo> |
5 | 6 | <GitTagRegex>v*</GitTagRegex> |
6 | | - <TargetFramework>netstandard2.0</TargetFramework> |
7 | | - <Title>Spice#.BSIM</Title> |
8 | | - <Authors>Sven Boulanger</Authors> |
9 | | - <PackageProjectUrl>https://github.com/SpiceSharp/SpiceSharpBSIM</PackageProjectUrl> |
10 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
11 | | - <RepositoryUrl>https://github.com/SpiceSharp/SpiceSharpBSIM</RepositoryUrl> |
12 | | - <Description>BSIM models for Spice#.</Description> |
13 | | - <PackageIcon>logo_full.png</PackageIcon> |
14 | | - <RepositoryType>git</RepositoryType> |
15 | | - <PackageTags>circuit electronics netlist spice simulator simulation ode solver design</PackageTags> |
16 | | - <PackageReleaseNotes>Refer to the GitHub release for release notes.</PackageReleaseNotes> |
17 | | - <NeutralLanguage>en</NeutralLanguage> |
18 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
19 | 7 | </PropertyGroup> |
20 | | - |
21 | | - <PropertyGroup Condition="'$(UseGitInfo)' == 'true'"> |
22 | | - <GitSkipCache>true</GitSkipCache> |
23 | | - <GitBaseVersionRegex>^(?:\w+-)?v?(?<MAJOR>\d+)\.(?<MINOR>\d+)\.(?<PATCH>\d+)$</GitBaseVersionRegex> |
24 | | - </PropertyGroup> |
25 | | - <ItemGroup Condition="'$(UseGitInfo)' == 'true'"> |
26 | | - <PackageReference Include="GitInfo" Version="3.3.5"> |
27 | | - <PrivateAssets>all</PrivateAssets> |
28 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
29 | | - </PackageReference> |
30 | | - </ItemGroup> |
31 | | - |
32 | | - <ItemGroup> |
33 | | - <Compile Remove="Components\Semiconductors\BSIM\BSIM3v24\**" /> |
34 | | - <Compile Remove="Properties\**" /> |
35 | | - <EmbeddedResource Remove="Components\Semiconductors\BSIM\BSIM3v24\**" /> |
36 | | - <EmbeddedResource Remove="Properties\**" /> |
37 | | - <None Remove="Components\Semiconductors\BSIM\BSIM3v24\**" /> |
38 | | - <None Remove="Properties\**" /> |
39 | | - </ItemGroup> |
40 | | - |
41 | | - <ItemGroup> |
42 | | - <Compile Remove="Components\Semiconductors\BSIM\BSIM1Behaviors\TransientBehavior.cs" /> |
43 | | - <Compile Remove="Components\Semiconductors\BSIM\BSIM2Behaviors\TransientBehavior.cs" /> |
44 | | - <Compile Remove="Components\Semiconductors\BSIM\BSIM3Behaviors\TransientBehavior.cs" /> |
45 | | - </ItemGroup> |
46 | | - |
47 | | - <ItemGroup> |
48 | | - <None Include="..\README.md"> |
49 | | - <Pack>True</Pack> |
50 | | - <PackagePath>\</PackagePath> |
51 | | - </None> |
52 | | - </ItemGroup> |
53 | | - |
54 | | - <ItemGroup> |
55 | | - <PackageReference Include="SpiceSharp" Version="3.2.0" /> |
56 | | - <PackageReference Include="SpiceSharpGenerator" Version="1.0.7"> |
57 | | - <PrivateAssets>all</PrivateAssets> |
58 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
59 | | - </PackageReference> |
60 | | - </ItemGroup> |
61 | | - |
62 | | - <ItemGroup> |
63 | | - <None Update="logo_full.png"> |
64 | | - <Pack>True</Pack> |
65 | | - <PackagePath>\</PackagePath> |
66 | | - </None> |
67 | | - </ItemGroup> |
68 | | - |
69 | 8 | </Project> |
0 commit comments