-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwDevtools.csproj
More file actions
28 lines (24 loc) · 907 Bytes
/
SwDevtools.csproj
File metadata and controls
28 lines (24 loc) · 907 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<AssemblyName>SwDevtools</AssemblyName>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageOutputPath>$(MSBuildProjectDirectory)/artifacts/</PackageOutputPath>
<PackageId>SwDevtools</PackageId>
<Version>0.0.1</Version>
<Authors>itsAudio</Authors>
<Description>SwDevtools - SwiftlyS2 helper utilities (logging, etc.) for plugin authors.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SwiftlyS2.CS2" Version="*-*" ExcludeAssets="runtime"
PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Compile Remove="examples\**\*.cs" />
</ItemGroup>
</Project>