23 lines
597 B
TypeScript
23 lines
597 B
TypeScript
import { defineConfig, defineWingetPackage } from 'dsc-ts';
|
|
|
|
const machineConfig = defineConfig({
|
|
$schema: 'https://aka.ms/dsc/schemas/v3/config/document.json',
|
|
resources: [
|
|
// {
|
|
// name: 'example-registry-key',
|
|
// type: 'Microsoft.Windows/Registry',
|
|
// properties: {
|
|
// keyPath: 'HKCU\\Software\\WinosConfig',
|
|
// valueName: 'Version',
|
|
// valueData: {
|
|
// String: pkg.version,
|
|
// },
|
|
// _exist: true,
|
|
// },
|
|
// },
|
|
defineWingetPackage({ id: 'BurntSushi.ripgrep.MSVC' }),
|
|
],
|
|
});
|
|
|
|
export default machineConfig;
|