-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
43 lines (39 loc) · 1.79 KB
/
Directory.Build.props
File metadata and controls
43 lines (39 loc) · 1.79 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
<Project>
<PropertyGroup>
<TargetFramework>net10.0-windows7.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Platforms>AnyCPU</Platforms>
<Authors>VideoGameRoulette, Mysterion, Squirrelies</Authors>
<Company>$(Authors)</Company>
<CopyrightYear>$([System.DateTime]::UtcNow.ToString("yyyy"))</CopyrightYear>
<Copyright>Copyright © $(CopyrightYear) $(Company)</Copyright>
<RepositoryUrl>https://github.com/SpeedrunTooling/SRTPluginManager</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>portable</DebugType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReadmeFile>README.md</PackageReadmeFile>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<PublishProtocol>FileSystem</PublishProtocol>
<OutputPath>bin\$(Configuration)\$(Platform)</OutputPath>
<PublishDir>bin\$(Configuration)\$(Platform)\$(TargetFramework)\publish\</PublishDir>
<DefineConstants>$(DefineConstants);$(Platform)</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.201">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>