directors-assistant/directors-assistant.csproj
Adam R Grey e06650f30c
Some checks failed
gitea/directors-assistant/pipeline/head There was a failure building this commit
if your command is a bash script, dotnet gets confused if you try to run it -
so you'll have to do, for example, {"name":"grab 1 video now", "shell": "bash grab1vidnow.sh"}
but the way I did that, I have to split up and rejoin the spaces... so now when you send it args, i'm adding a space.
old and busted:
{"type": "gray_messages.directorial.execute_command", "command":"grab 1 video now", "args": " https://www.youtube.com/watch?v=OnNyPS2iaLo"}
new hotness:
{"type": "gray_messages.directorial.execute_command", "command":"grab 1 video now", "args": "https://www.youtube.com/watch?v=OnNyPS2iaLo"}
2023-11-28 13:11:11 -05:00

27 lines
967 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>directors_assistant</RootNamespace>
<RestoreSources>$(RestoreSources)</RestoreSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="greyn.franz" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<None Update="AppSettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="AppSettings.example.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>