summaryrefslogtreecommitdiff
path: root/PowerShell.csproj
blob: cf8b11bfb13c356517cf3e505058f269f00c0bd5 (plain)
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
<Project Sdk="Microsoft.NET.Sdk">

	<PropertyGroup>
		<TargetFramework>net8.0</TargetFramework>
		<ImplicitUsings>enable</ImplicitUsings>
		<Nullable>enable</Nullable>
		<AssemblyName>HyperBooru.PowerShell</AssemblyName>
		<RootNamespace>HyperBooru.PowerShell</RootNamespace>
		<FileVersion>$(AssemblyVersion)</FileVersion>
		<AssemblyTitle>HyperBooru.PowerShell</AssemblyTitle>
		<Authors>Jake Mannens</Authors>
		<Version>0.17-alpha</Version>
	</PropertyGroup>

	<ItemGroup>
		<PackageReference Include="ILRepack.Lib.MSBuild.Task" Version="2.0.44.2">
		  <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
		  <PrivateAssets>all</PrivateAssets>
		</PackageReference>
		<PackageReference Include="PowerShellStandard.Library" Version="5.1.1" />
	</ItemGroup>

	<ItemGroup>
		<ProjectReference Include="..\ApiClient\ApiClient.csproj" />
	</ItemGroup>

	<ItemGroup>
		<None Update="HyperBooru.format.ps1xml">
		  <CopyToOutputDirectory>Always</CopyToOutputDirectory>
		</None>
		<None Update="HyperBooru.psd1">
			<CopyToOutputDirectory>Always</CopyToOutputDirectory>
		</None>
		<None Update="License.txt">
			<CopyToOutputDirectory>Always</CopyToOutputDirectory>
		</None>
	</ItemGroup>

	<PropertyGroup Condition="'$(Configuration)' == 'Release'">
		<DebugType>None</DebugType>
		<DebugSymbols>false</DebugSymbols>
	</PropertyGroup>

	<PropertyGroup>
		<ILRepackMerge>true</ILRepackMerge>
		<ILRepackOutputFile>$(OutputPath)\HyperBooru.PowerShell.dll</ILRepackOutputFile>
	</PropertyGroup>

</Project>