EVCB_OCPP.Packet.csproj 1.1 KB

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7</TargetFramework>
  4. <OutputType>Library</OutputType>
  5. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  6. </PropertyGroup>
  7. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  8. <OutputPath>..\bin\Debug\</OutputPath>
  9. </PropertyGroup>
  10. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  11. <OutputPath>..\bin\Release\</OutputPath>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
  15. <PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
  16. <PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
  17. <PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.4.355802">
  18. <PrivateAssets>all</PrivateAssets>
  19. </PackageReference>
  20. </ItemGroup>
  21. <ItemGroup>
  22. <PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
  23. </ItemGroup>
  24. <PropertyGroup>
  25. <PreBuildEvent>GitVersion.exe $(SolutionDir) /updateassemblyinfo</PreBuildEvent>
  26. </PropertyGroup>
  27. </Project>